[PATCH 2/2] tools/lib/lockdep: add empty declaration for early_param

2017-12-12 Thread alexander . levin
Commit d141babe4244 ("locking/lockdep: Add a boot parameter allowing unwind in cross-release and disable it by default") has added a boot time param to allow recording full stack traces in cross-release. However, the commit used early_param() which wasn't wrapped in the userspace headers, causing

Re: [PATCH 2/2] tools/lib/lockdep: add empty declaration for early_param

2017-12-11 Thread Ingo Molnar
* alexander.le...@verizon.com wrote: > On Fri, Dec 08, 2017 at 07:20:10AM +0100, Ingo Molnar wrote: > > > >* Ingo Molnar wrote: > > > >> > >> * alexander.le...@verizon.com wrote: > >> > >> > Fixes a compilation error: > >> > > >> > CC lockdep.o > >> > In file included from lockdep.c:28

Re: [PATCH 2/2] tools/lib/lockdep: add empty declaration for early_param

2017-12-08 Thread alexander . levin
On Fri, Dec 08, 2017 at 07:20:10AM +0100, Ingo Molnar wrote: > >* Ingo Molnar wrote: > >> >> * alexander.le...@verizon.com wrote: >> >> > Fixes a compilation error: >> > >> > CC lockdep.o >> > In file included from lockdep.c:28:0: >> > ../../../kernel/locking/lockdep.c:89:13: error: expec

Re: [PATCH 2/2] tools/lib/lockdep: add empty declaration for early_param

2017-12-07 Thread Ingo Molnar
* Ingo Molnar wrote: > > * alexander.le...@verizon.com wrote: > > > Fixes a compilation error: > > > > CC lockdep.o > > In file included from lockdep.c:28:0: > > ../../../kernel/locking/lockdep.c:89:13: error: expected declaration > > specifiers or ‘...’ before string constant > >

Re: [PATCH 2/2] tools/lib/lockdep: add empty declaration for early_param

2017-12-07 Thread Ingo Molnar
* alexander.le...@verizon.com wrote: > Fixes a compilation error: > > CC lockdep.o > In file included from lockdep.c:28:0: > ../../../kernel/locking/lockdep.c:89:13: error: expected declaration > specifiers or ‘...’ before string constant > early_param("crossrelease_fullstack", allow_

[PATCH 2/2] tools/lib/lockdep: add empty declaration for early_param

2017-12-07 Thread alexander . levin
Fixes a compilation error: CC lockdep.o In file included from lockdep.c:28:0: ../../../kernel/locking/lockdep.c:89:13: error: expected declaration specifiers or ‘...’ before string constant early_param("crossrelease_fullstack", allow_crossrelease_fullstack); ^~~~