Re: [ 11/83] module: fix out-by-one error in kallsyms

2012-12-02 Thread Rusty Russell
satoru takeuchi writes: > Hi, Hi! >> --- a/kernel/module.c >> +++ b/kernel/module.c >> @@ -2273,12 +2273,17 @@ static void layout_symtab(struct module >> src = (void *)info->hdr + symsect->sh_offset; >> nsrc = symsect->sh_size / sizeof(*src); >> >> + /* strtab always

Re: [ 11/83] module: fix out-by-one error in kallsyms

2012-12-02 Thread Rusty Russell
satoru takeuchi satoru.takeu...@gmail.com writes: Hi, Hi! --- a/kernel/module.c +++ b/kernel/module.c @@ -2273,12 +2273,17 @@ static void layout_symtab(struct module src = (void *)info-hdr + symsect-sh_offset; nsrc = symsect-sh_size / sizeof(*src); + /* strtab

Re: [ 11/83] module: fix out-by-one error in kallsyms

2012-11-26 Thread Greg Kroah-Hartman
On Fri, Nov 23, 2012 at 07:35:36PM +0900, satoru takeuchi wrote: > Hi, > > 2012/11/22 Greg Kroah-Hartman : > > 3.6-stable review patch. If anyone has any objections, please let me know. > > > > -- > > > > From: Rusty Russell > > > > commit

Re: [ 11/83] module: fix out-by-one error in kallsyms

2012-11-26 Thread Greg Kroah-Hartman
On Fri, Nov 23, 2012 at 07:35:36PM +0900, satoru takeuchi wrote: Hi, 2012/11/22 Greg Kroah-Hartman gre...@linuxfoundation.org: 3.6-stable review patch. If anyone has any objections, please let me know. -- From: Rusty Russell ru...@rustcorp.com.au commit

Re: [ 11/83] module: fix out-by-one error in kallsyms

2012-11-23 Thread satoru takeuchi
Hi, 2012/11/22 Greg Kroah-Hartman : > 3.6-stable review patch. If anyone has any objections, please let me know. > > -- > > From: Rusty Russell > > commit 59ef28b1f14899b10d6b2682c7057ca00a9a3f47 upstream. > > Masaki found and patched a kallsyms issue: the last symbol in a >

Re: [ 11/83] module: fix out-by-one error in kallsyms

2012-11-23 Thread satoru takeuchi
Hi, 2012/11/22 Greg Kroah-Hartman gre...@linuxfoundation.org: 3.6-stable review patch. If anyone has any objections, please let me know. -- From: Rusty Russell ru...@rustcorp.com.au commit 59ef28b1f14899b10d6b2682c7057ca00a9a3f47 upstream. Masaki found and patched a

[ 11/83] module: fix out-by-one error in kallsyms

2012-11-22 Thread Greg Kroah-Hartman
3.6-stable review patch. If anyone has any objections, please let me know. -- From: Rusty Russell commit 59ef28b1f14899b10d6b2682c7057ca00a9a3f47 upstream. Masaki found and patched a kallsyms issue: the last symbol in a module's symtab wasn't transferred. This is because we

[ 11/83] module: fix out-by-one error in kallsyms

2012-11-22 Thread Greg Kroah-Hartman
3.6-stable review patch. If anyone has any objections, please let me know. -- From: Rusty Russell ru...@rustcorp.com.au commit 59ef28b1f14899b10d6b2682c7057ca00a9a3f47 upstream. Masaki found and patched a kallsyms issue: the last symbol in a module's symtab wasn't transferred.