Re: [Patch] fix packet loss and massive ping spikes with PPP multi-link
From: Alan Cox <hidden>
Date: 2010-03-26 17:00:36
Also in:
lkml
From: Alan Cox <hidden>
Date: 2010-03-26 17:00:36
Also in:
lkml
On Fri, 26 Mar 2010 22:00:23 +0500 "Alexander E. Patrakov" [off-list ref] wrote:
26.03.2010 21:02, Alan Cox wrote:quoted
You can then do this static int ml_explode = 1; module_param(ml_explode, int, 0600); MODULE_PARM_DESC(ml_expode, "Set this to zero to disabling multilink \ fragmentation when talking to cisco devices"); which will let you load the module with the option ml_explode = 0 if you want that property. Making it runtime per link selectable would be nicer but thats a bit more work.Doesn't it work already via echoing values to /sys/module/ppp/generic/parameters/ml_explode in the above code?
Thats runtime (and why I set 0600 in the permissions for the example) but not per link. Alan