Merge "cpumask: Correctly report CPU as not isolated in UP case"
This commit is contained in:
commit
fde6f86c4f
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ extern const struct cpumask *const cpu_isolated_mask;
|
|||
#define cpu_possible(cpu) ((cpu) == 0)
|
||||
#define cpu_present(cpu) ((cpu) == 0)
|
||||
#define cpu_active(cpu) ((cpu) == 0)
|
||||
#define cpu_isolated(cpu) ((cpu) == 0)
|
||||
#define cpu_isolated(cpu) ((cpu) != 0)
|
||||
#endif
|
||||
|
||||
/* verify cpu argument to cpumask_* operators */
|
||||
|
|
Loading…
Add table
Reference in a new issue