Re: [PATCH] Fix parse_args cycle limit check.

2017-12-18 Thread Randy Dunlap
On 12/18/2017 09:34 AM, Michal Suchánek wrote: > On Fri, 15 Dec 2017 15:49:09 -0800 > Randy Dunlap wrote: > >> On 12/15/2017 01:41 PM, Michal Suchanek wrote: >>> Actually args are supposed to be renamed to next so both and args >>> hold the previous argument so both can be passed to the callback.

Re: [PATCH] Fix parse_args cycle limit check.

2017-12-18 Thread Michal Suchánek
On Fri, 15 Dec 2017 15:49:09 -0800 Randy Dunlap wrote: > On 12/15/2017 01:41 PM, Michal Suchanek wrote: > > Actually args are supposed to be renamed to next so both and args > > hold the previous argument so both can be passed to the callback. > > This additionla patch > >

Re: [PATCH] Fix parse_args cycle limit check.

2017-12-15 Thread Randy Dunlap
On 12/15/2017 01:41 PM, Michal Suchanek wrote: > Actually args are supposed to be renamed to next so both and args hold the > previous argument so both can be passed to the callback. This additionla patch additional > should fix up t

[PATCH] Fix parse_args cycle limit check.

2017-12-15 Thread Michal Suchanek
Actually args are supposed to be renamed to next so both and args hold the previous argument so both can be passed to the callback. This additionla patch should fix up the rename. --- kernel/params.c | 14 -- 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/kernel/params.