Merge "cpumask: Correctly report CPU as not isolated in UP case"

This commit is contained in:
Linux Build Service Account 2017-01-21 05:01:27 -08:00 committed by Gerrit - the friendly Code Review server
commit fde6f86c4f

View file

@ -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 */