-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 125710 b: refs/heads/master c: 0999769 h: refs/heads/master v: v3
- Loading branch information
Rusty Russell
committed
Jan 3, 2009
1 parent
845f1a6
commit e4a712e
Showing
69 changed files
with
1,059 additions
and
1,680 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 7eb19553369c46cc1fa64caf120cbcab1b597f7c | ||
refs/heads/master: 0999769e6cad9b0e5abb7c513c0c3f16821f0884 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
#ifndef __ASM_MACH_IPI_H | ||
#define __ASM_MACH_IPI_H | ||
|
||
void send_IPI_mask_sequence(const struct cpumask *mask, int vector); | ||
void send_IPI_mask_allbutself(const struct cpumask *mask, int vector); | ||
void send_IPI_mask_sequence(cpumask_t mask, int vector); | ||
|
||
static inline void send_IPI_mask(const struct cpumask *mask, int vector) | ||
static inline void send_IPI_mask(cpumask_t mask, int vector) | ||
{ | ||
send_IPI_mask_sequence(mask, vector); | ||
} | ||
|
||
static inline void send_IPI_allbutself(int vector) | ||
{ | ||
send_IPI_mask_allbutself(cpu_online_mask, vector); | ||
cpumask_t mask = cpu_online_map; | ||
cpu_clear(smp_processor_id(), mask); | ||
|
||
if (!cpus_empty(mask)) | ||
send_IPI_mask(mask, vector); | ||
} | ||
|
||
static inline void send_IPI_all(int vector) | ||
{ | ||
send_IPI_mask(cpu_online_mask, vector); | ||
send_IPI_mask(cpu_online_map, vector); | ||
} | ||
|
||
#endif /* __ASM_MACH_IPI_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.