* [PATCH] powerpc: fix compile fail in hugetlb cmdline parsing
@ 2012-05-07 14:32 Paul Gortmaker
2012-05-08 4:23 ` Rusty Russell
0 siblings, 1 reply; 4+ messages in thread
From: Paul Gortmaker @ 2012-05-07 14:32 UTC (permalink / raw)
To: linuxppc-dev
Cc: Jim Cromie, Greg Kroah-Hartman, Jason Baron, Rusty Russell,
Paul Gortmaker, linux-next
Commit 9fb48c744ba6a4bf58b666f4e6fdac3008ea1bd4
"params: add 3rd arg to option handler callback signature"
added an extra arg to the function, but didn't catch all the use
cases needing it, causing this compile fail in mpc85xx_defconfig:
arch/powerpc/mm/hugetlbpage.c:316:4: error: passing argument 7 of
'parse_args' from incompatible pointer type [-Werror]
include/linux/moduleparam.h:317:12: note: expected
'int (*)(char *, char *, const char *)' but argument is of type
'int (*)(char *, char *)'
This function has no need to printk out the "doing" value, so
just add the arg as an "unused".
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Jim Cromie <jim.cromie@gmail.com>
Cc: Jason Baron <jbaron@redhat.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Becky Bruce <beckyb@kernel.crashing.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
diff --git a/arch/powerpc/mm/hugetlbpage.c b/arch/powerpc/mm/hugetlbpage.c
index fb05b12..1a6de0a 100644
--- a/arch/powerpc/mm/hugetlbpage.c
+++ b/arch/powerpc/mm/hugetlbpage.c
@@ -271,7 +271,8 @@ int alloc_bootmem_huge_page(struct hstate *hstate)
unsigned long gpage_npages[MMU_PAGE_COUNT];
-static int __init do_gpage_early_setup(char *param, char *val)
+static int __init do_gpage_early_setup(char *param, char *val,
+ const char *unused)
{
static phys_addr_t size;
unsigned long npages;
--
1.7.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] powerpc: fix compile fail in hugetlb cmdline parsing
2012-05-07 14:32 [PATCH] powerpc: fix compile fail in hugetlb cmdline parsing Paul Gortmaker
@ 2012-05-08 4:23 ` Rusty Russell
2012-05-09 3:04 ` Benjamin Herrenschmidt
0 siblings, 1 reply; 4+ messages in thread
From: Rusty Russell @ 2012-05-08 4:23 UTC (permalink / raw)
To: Paul Gortmaker, linuxppc-dev
Cc: Jim Cromie, Greg Kroah-Hartman, Jason Baron, Paul Gortmaker,
linux-next
On Mon, 7 May 2012 10:32:22 -0400, Paul Gortmaker <paul.gortmaker@windriver.com> wrote:
> Commit 9fb48c744ba6a4bf58b666f4e6fdac3008ea1bd4
>
> "params: add 3rd arg to option handler callback signature"
>
> added an extra arg to the function, but didn't catch all the use
> cases needing it, causing this compile fail in mpc85xx_defconfig:
>
> arch/powerpc/mm/hugetlbpage.c:316:4: error: passing argument 7 of
> 'parse_args' from incompatible pointer type [-Werror]
>
> include/linux/moduleparam.h:317:12: note: expected
> 'int (*)(char *, char *, const char *)' but argument is of type
> 'int (*)(char *, char *)'
>
> This function has no need to printk out the "doing" value, so
> just add the arg as an "unused".
>
> Cc: Rusty Russell <rusty@rustcorp.com.au>
> Cc: Jim Cromie <jim.cromie@gmail.com>
> Cc: Jason Baron <jbaron@redhat.com>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: Becky Bruce <beckyb@kernel.crashing.org>
> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Acked-by: Rusty Russell <rusty@rustcorp.com.au>
Thanks,
Rusty.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] powerpc: fix compile fail in hugetlb cmdline parsing
2012-05-08 4:23 ` Rusty Russell
@ 2012-05-09 3:04 ` Benjamin Herrenschmidt
2012-05-09 4:03 ` Stephen Rothwell
0 siblings, 1 reply; 4+ messages in thread
From: Benjamin Herrenschmidt @ 2012-05-09 3:04 UTC (permalink / raw)
To: Rusty Russell
Cc: Jim Cromie, Greg Kroah-Hartman, Jason Baron, Paul Gortmaker,
linux-next, linuxppc-dev
On Tue, 2012-05-08 at 13:53 +0930, Rusty Russell wrote:
> On Mon, 7 May 2012 10:32:22 -0400, Paul Gortmaker <paul.gortmaker@windriver.com> wrote:
> > Commit 9fb48c744ba6a4bf58b666f4e6fdac3008ea1bd4
> >
> > "params: add 3rd arg to option handler callback signature"
> >
> > added an extra arg to the function, but didn't catch all the use
> > cases needing it, causing this compile fail in mpc85xx_defconfig:
> >
> > arch/powerpc/mm/hugetlbpage.c:316:4: error: passing argument 7 of
> > 'parse_args' from incompatible pointer type [-Werror]
> >
> > include/linux/moduleparam.h:317:12: note: expected
> > 'int (*)(char *, char *, const char *)' but argument is of type
> > 'int (*)(char *, char *)'
> >
> > This function has no need to printk out the "doing" value, so
> > just add the arg as an "unused".
> >
> > Cc: Rusty Russell <rusty@rustcorp.com.au>
> > Cc: Jim Cromie <jim.cromie@gmail.com>
> > Cc: Jason Baron <jbaron@redhat.com>
> > Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > Cc: Becky Bruce <beckyb@kernel.crashing.org>
> > Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> > Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
>
> Acked-by: Rusty Russell <rusty@rustcorp.com.au>
This is for -next right ? IE. I don't seem to have the faulty commit
in my tree so I can't carry the fix for now.... or am I missing
something ?
Cheers,
Ben.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] powerpc: fix compile fail in hugetlb cmdline parsing
2012-05-09 3:04 ` Benjamin Herrenschmidt
@ 2012-05-09 4:03 ` Stephen Rothwell
0 siblings, 0 replies; 4+ messages in thread
From: Stephen Rothwell @ 2012-05-09 4:03 UTC (permalink / raw)
To: Benjamin Herrenschmidt
Cc: Jim Cromie, Greg Kroah-Hartman, Jason Baron, Rusty Russell,
Paul Gortmaker, linux-next, linuxppc-dev
[-- Attachment #1: Type: text/plain, Size: 1749 bytes --]
Hi Ben,
On Wed, 09 May 2012 13:04:18 +1000 Benjamin Herrenschmidt <benh@kernel.crashing.org> wrote:
>
> On Tue, 2012-05-08 at 13:53 +0930, Rusty Russell wrote:
> > On Mon, 7 May 2012 10:32:22 -0400, Paul Gortmaker <paul.gortmaker@windriver.com> wrote:
> > > Commit 9fb48c744ba6a4bf58b666f4e6fdac3008ea1bd4
> > >
> > > "params: add 3rd arg to option handler callback signature"
> > >
> > > added an extra arg to the function, but didn't catch all the use
> > > cases needing it, causing this compile fail in mpc85xx_defconfig:
> > >
> > > arch/powerpc/mm/hugetlbpage.c:316:4: error: passing argument 7 of
> > > 'parse_args' from incompatible pointer type [-Werror]
> > >
> > > include/linux/moduleparam.h:317:12: note: expected
> > > 'int (*)(char *, char *, const char *)' but argument is of type
> > > 'int (*)(char *, char *)'
> > >
> > > This function has no need to printk out the "doing" value, so
> > > just add the arg as an "unused".
> > >
> > > Cc: Rusty Russell <rusty@rustcorp.com.au>
> > > Cc: Jim Cromie <jim.cromie@gmail.com>
> > > Cc: Jason Baron <jbaron@redhat.com>
> > > Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > > Cc: Becky Bruce <beckyb@kernel.crashing.org>
> > > Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> > > Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> >
> > Acked-by: Rusty Russell <rusty@rustcorp.com.au>
>
> This is for -next right ? IE. I don't seem to have the faulty commit
> in my tree so I can't carry the fix for now.... or am I missing
> something ?
This patch has been added to the driver-core tree which contains the
faulty commit ...
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-05-09 4:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-07 14:32 [PATCH] powerpc: fix compile fail in hugetlb cmdline parsing Paul Gortmaker
2012-05-08 4:23 ` Rusty Russell
2012-05-09 3:04 ` Benjamin Herrenschmidt
2012-05-09 4:03 ` Stephen Rothwell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).