diff options
author | Alexander Kuleshov <kuleshovmail@gmail.com> | 2015-11-06 03:50:14 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-06 04:34:48 +0100 |
commit | b4e289a6a659c5c2c056a67fa4f31f3dd8317537 (patch) | |
tree | 27b1a41821a0a897ac377e16d2edc3d36fe08610 /mm/hugetlb.c | |
parent | mm/maccess.c: actually return -EFAULT from strncpy_from_unsafe (diff) | |
download | linux-b4e289a6a659c5c2c056a67fa4f31f3dd8317537.tar.xz linux-b4e289a6a659c5c2c056a67fa4f31f3dd8317537.zip |
mm/hugetlb: make node_hstates array static
There are no users of the node_hstates array outside of the
mm/hugetlb.c. So let's make it static.
Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/hugetlb.c')
-rw-r--r-- | mm/hugetlb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/hugetlb.c b/mm/hugetlb.c index abfbe8ca3323..4fc590a1257d 100644 --- a/mm/hugetlb.c +++ b/mm/hugetlb.c @@ -2376,7 +2376,7 @@ struct node_hstate { struct kobject *hugepages_kobj; struct kobject *hstate_kobjs[HUGE_MAX_HSTATE]; }; -struct node_hstate node_hstates[MAX_NUMNODES]; +static struct node_hstate node_hstates[MAX_NUMNODES]; /* * A subset of global hstate attributes for node devices |