Commit ac62554b authored by Tang Yizhou's avatar Tang Yizhou Committed by Linus Torvalds

mm/memory_hotplug: add static qualifier for online_policy_to_str()

online_policy_to_str is only used in memory_hotplug.c and should be
defined as static.

Link: https://lkml.kernel.org/r/20210913024534.26161-1-tangyizhou@huawei.comSigned-off-by: default avatarTang Yizhou <tangyizhou@huawei.com>
Reviewed-by: default avatarMuchun Song <songmuchun@bytedance.com>
Reviewed-by: default avatarDavid Hildenbrand <david@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 39b2e5ca
...@@ -57,7 +57,7 @@ enum { ...@@ -57,7 +57,7 @@ enum {
ONLINE_POLICY_AUTO_MOVABLE, ONLINE_POLICY_AUTO_MOVABLE,
}; };
const char *online_policy_to_str[] = { static const char * const online_policy_to_str[] = {
[ONLINE_POLICY_CONTIG_ZONES] = "contig-zones", [ONLINE_POLICY_CONTIG_ZONES] = "contig-zones",
[ONLINE_POLICY_AUTO_MOVABLE] = "auto-movable", [ONLINE_POLICY_AUTO_MOVABLE] = "auto-movable",
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment