OSDN Git Service

net/x25: use designated initializers
authorKees Cook <keescook@chromium.org>
Sat, 17 Dec 2016 01:03:39 +0000 (17:03 -0800)
committerDavid S. Miller <davem@davemloft.net>
Sat, 17 Dec 2016 16:56:57 +0000 (11:56 -0500)
Prepare to mark sensitive kernel structures for randomization by making
sure they're using designated initializers. These were identified during
allyesconfig builds of x86, arm, and arm64, with most initializer fixes
extracted from grsecurity.

Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/x25/sysctl_net_x25.c

index 4323952..a06dfe1 100644 (file)
@@ -70,7 +70,7 @@ static struct ctl_table x25_table[] = {
                .mode =         0644,
                .proc_handler = proc_dointvec,
        },
-       { 0, },
+       { },
 };
 
 void __init x25_register_sysctl(void)