Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 139093
b: refs/heads/master
c: f46df02
h: refs/heads/master
i:
  139091: 54c7755
v: v3
  • Loading branch information
Rusty Russell committed Mar 16, 2009
1 parent ff8ffe5 commit 1c41d2d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fd8e18e9f486bcbdd8e0d817e6aa8622a5034540
refs/heads/master: f46df02a5799460e74bcb5a3875d4245978f3bd2
3 changes: 2 additions & 1 deletion trunk/arch/sparc/include/asm/smp_64.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ extern cpumask_t cpu_core_map[NR_CPUS];
extern int sparc64_multi_core;

extern void arch_send_call_function_single_ipi(int cpu);
extern void arch_send_call_function_ipi(cpumask_t mask);
extern void arch_send_call_function_ipi_mask(const struct cpumask *mask);
#define arch_send_call_function_ipi_mask arch_send_call_function_ipi_mask

/*
* General functions that each host system must provide.
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/sparc/kernel/smp_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -808,9 +808,9 @@ static void smp_start_sync_tick_client(int cpu)

extern unsigned long xcall_call_function;

void arch_send_call_function_ipi(cpumask_t mask)
void arch_send_call_function_ipi_mask(const struct cpumask *mask)
{
xcall_deliver((u64) &xcall_call_function, 0, 0, &mask);
xcall_deliver((u64) &xcall_call_function, 0, 0, mask);
}

extern unsigned long xcall_call_function_single;
Expand Down

0 comments on commit 1c41d2d

Please sign in to comment.