diff --git a/luci-app-mptcp/htdocs/luci-static/resources/view/mptcp/mptcp.js b/luci-app-mptcp/htdocs/luci-static/resources/view/mptcp/mptcp.js
index 9ad55e0da..80a7a5fcc 100644
--- a/luci-app-mptcp/htdocs/luci-static/resources/view/mptcp/mptcp.js
+++ b/luci-app-mptcp/htdocs/luci-static/resources/view/mptcp/mptcp.js
@@ -57,7 +57,13 @@ return L.view.extend({
o.value("netlink", _("Netlink"));
}
- o = s.option(form.ListValue, "mptcp_scheduler", _("Multipath TCP scheduler"));
+ o = s.option(form.ListValue, "mptcp_scheduler", _("Multipath TCP scheduler"), _('BPF schedulers (not available on all platforms):') + '
' +
+ _('bpf_burst => same as the default scheduler') + '
' +
+ _('bpf_red => sends all packets redundantly on all available subflows') + '
' +
+ _('bpf_first => always picks the first subflow to send data') + '
' +
+ _('bpf_rr => always picks the next available subflow to send data (round-robin)')
+
+ );
o.value("default", _("default"));
if (parseFloat(boardinfo.kernel.substring(0,4)) < 6) {
o.value("roundrobin", "round-robin");