Skip to content

Commit

Permalink
generic-ipi: fix linux-next tree build failure
Browse files Browse the repository at this point in the history
Today's linux-next build (powerpc ppc64_defconfig) failed like this:

arch/powerpc/mm/tlb_64.c: In function 'pgtable_free_now':
arch/powerpc/mm/tlb_64.c:66: error: too many arguments to function 'smp_call_function'
arch/powerpc/kernel/machine_kexec_64.c: In function 'kexec_prepare_cpus':
arch/powerpc/kernel/machine_kexec_64.c:175: error: too many arguments to function 'smp_call_function'

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-by: Jens Axboe <jens.axboe@oracle.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: <linuxppc-dev@ozlabs.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Stephen Rothwell authored and Ingo Molnar committed Jul 3, 2008
1 parent 8b604d5 commit 392096e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/powerpc/kernel/machine_kexec_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ static void kexec_prepare_cpus(void)
{
int my_cpu, i, notified=-1;

smp_call_function(kexec_smp_down, NULL, 0, /* wait */0);
smp_call_function(kexec_smp_down, NULL, /* wait */0);
my_cpu = get_cpu();

/* check the others cpus are now down (via paca hw cpu id == -1) */
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/mm/tlb_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ static void pgtable_free_now(pgtable_free_t pgf)
{
pte_freelist_forced_free++;

smp_call_function(pte_free_smp_sync, NULL, 0, 1);
smp_call_function(pte_free_smp_sync, NULL, 1);

pgtable_free(pgf);
}
Expand Down

0 comments on commit 392096e

Please sign in to comment.