From: Arvind Yadav Date: Mon, 10 Jul 2017 22:51:14 +0000 (-0700) Subject: kernel/ksysfs.c: constify attribute_group structures. X-Git-Tag: v4.14-rc1~501^2~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9dcdcea11491f6eee65bd1b352293ca01e4b7997;p=platform%2Fkernel%2Flinux-rpi.git kernel/ksysfs.c: constify attribute_group structures. attribute_groups are not supposed to change at runtime. All functions working with attribute_groups provided by work with const attribute_group. So mark the non-const structs as const. File size before: text data bss dec hex filename 1120 544 16 1680 690 kernel/ksysfs.o File size After adding 'const': text data bss dec hex filename 1160 480 16 1656 678 kernel/ksysfs.o Link: http://lkml.kernel.org/r/aa224b3cc923fdbb3edd0c41b2c639c85408c9e8.1498737347.git.arvind.yadav.cs@gmail.com Signed-off-by: Arvind Yadav Acked-by: Kees Cook Cc: Russell King Cc: Dave Young Cc: Hari Bathini Cc: Petr Tesarik Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/ksysfs.c b/kernel/ksysfs.c index 23cd706..df1a9aa 100644 --- a/kernel/ksysfs.c +++ b/kernel/ksysfs.c @@ -234,7 +234,7 @@ static struct attribute * kernel_attrs[] = { NULL }; -static struct attribute_group kernel_attr_group = { +static const struct attribute_group kernel_attr_group = { .attrs = kernel_attrs, };