Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 165625
b: refs/heads/master
c: 630cd04
h: refs/heads/master
i:
  165623: a510be4
v: v3
  • Loading branch information
Rusty Russell committed Sep 24, 2009
1 parent 0d69799 commit c1108f1
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: f063ea02fba5782099b6730d5733ee44638df8f9
refs/heads/master: 630cd0460724e286d3c5cb2c33930b0ae9cd6645
3 changes: 2 additions & 1 deletion trunk/arch/s390/include/asm/smp.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ extern struct mutex smp_cpu_state_mutex;
extern int smp_cpu_polarization[];

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

#endif

Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/s390/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,11 @@ static void smp_ext_bitcall(int cpu, ec_bit_sig sig)
udelay(10);
}

void arch_send_call_function_ipi(cpumask_t mask)
void arch_send_call_function_ipi_mask(const struct cpumask *mask)
{
int cpu;

for_each_cpu_mask(cpu, mask)
for_each_cpu(cpu, mask)
smp_ext_bitcall(cpu, ec_call_function);
}

Expand Down

0 comments on commit c1108f1

Please sign in to comment.