diff options
author | Kent Overstreet <kmo@daterainc.com> | 2013-08-28 12:52:53 -0700 |
---|---|---|
committer | Kent Overstreet <kmo@daterainc.com> | 2013-08-28 12:53:12 -0700 |
commit | e2825e895f2296b3d558c71eeb5a926559d3dce3 (patch) | |
tree | ef1e2d0df2fbcc29aaa114a518a8f892f98ddb6b /include/linux/idr.h | |
parent | d16608c7806af7ede85a6ac6433e204bbd4fa4bc (diff) |
percpu ida: Switch to cpumask_t, add some commentspercpu-ida
Signed-off-by: Kent Overstreet <kmo@daterainc.com>
Diffstat (limited to 'include/linux/idr.h')
-rw-r--r-- | include/linux/idr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/idr.h b/include/linux/idr.h index f0db12bfab7d..cdf39bebb814 100644 --- a/include/linux/idr.h +++ b/include/linux/idr.h @@ -267,7 +267,7 @@ struct percpu_ida { * will just keep looking - but the bitmap _must_ be set whenever a * percpu freelist does have tags. */ - unsigned long *cpus_have_tags; + cpumask_t cpus_have_tags; struct { spinlock_t lock; |