Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 53899
b: refs/heads/master
c: 45ae5e9
h: refs/heads/master
i:
  53897: 62d00e5
  53895: 1ac93ce
v: v3
  • Loading branch information
Fernando Luis [** ISO-8859-1 charset **] V�zquezCao authored and Andi Kleen committed May 2, 2007
1 parent ea025c2 commit ea58ab1
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 30 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: 3144c332fa2ee4c4b9804aae5fe31098f04bffd9
refs/heads/master: 45ae5e968ea01d8326833ca2863cec5183ce1930
47 changes: 18 additions & 29 deletions trunk/arch/i386/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -165,16 +165,13 @@ void fastcall send_IPI_self(int vector)
}

/*
* This is only used on smaller machines.
* This is used to send an IPI with no shorthand notation (the destination is
* specified in bits 56 to 63 of the ICR).
*/
void send_IPI_mask_bitmask(cpumask_t cpumask, int vector)
static inline void __send_IPI_dest_field(unsigned long mask, int vector)
{
unsigned long mask = cpus_addr(cpumask)[0];
unsigned long cfg;
unsigned long flags;

local_irq_save(flags);
WARN_ON(mask & ~cpus_addr(cpu_online_map)[0]);
/*
* Wait for idle.
*/
Expand All @@ -195,13 +192,25 @@ void send_IPI_mask_bitmask(cpumask_t cpumask, int vector)
* Send the IPI. The write to APIC_ICR fires this off.
*/
apic_write_around(APIC_ICR, cfg);
}

/*
* This is only used on smaller machines.
*/
void send_IPI_mask_bitmask(cpumask_t cpumask, int vector)
{
unsigned long mask = cpus_addr(cpumask)[0];
unsigned long flags;

local_irq_save(flags);
WARN_ON(mask & ~cpus_addr(cpu_online_map)[0]);
__send_IPI_dest_field(mask, vector);
local_irq_restore(flags);
}

void send_IPI_mask_sequence(cpumask_t mask, int vector)
{
unsigned long cfg, flags;
unsigned long flags;
unsigned int query_cpu;

/*
Expand All @@ -211,30 +220,10 @@ void send_IPI_mask_sequence(cpumask_t mask, int vector)
*/

local_irq_save(flags);

for (query_cpu = 0; query_cpu < NR_CPUS; ++query_cpu) {
if (cpu_isset(query_cpu, mask)) {

/*
* Wait for idle.
*/
apic_wait_icr_idle();

/*
* prepare target chip field
*/
cfg = __prepare_ICR2(cpu_to_logical_apicid(query_cpu));
apic_write_around(APIC_ICR2, cfg);

/*
* program the ICR
*/
cfg = __prepare_ICR(0, vector);

/*
* Send the IPI. The write to APIC_ICR fires this off.
*/
apic_write_around(APIC_ICR, cfg);
__send_IPI_dest_field(cpu_to_logical_apicid(query_cpu),
vector);
}
}
local_irq_restore(flags);
Expand Down

0 comments on commit ea58ab1

Please sign in to comment.