diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2017-01-21 05:01:27 -0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-01-21 05:01:26 -0800 |
| commit | fde6f86c4f1a28ae3f3e38c8f35ae83d60ebe4dd (patch) | |
| tree | f293f990665f38690b97ccee30b428f803cc59a4 /include/linux | |
| parent | a991f5b51e0d95860294ab3acc4ce42f4e73386f (diff) | |
| parent | 8109f028efbe2de023af6c57699a3583c15774dd (diff) | |
Merge "cpumask: Correctly report CPU as not isolated in UP case"
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/cpumask.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index 0eab4811ee92..d81d6a2db342 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h @@ -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 */ |
