diff options
author | Kees Cook <keescook@chromium.org> | 2016-12-16 16:58:43 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-12-17 11:56:57 -0500 |
commit | 99a5e178bde4b0fa1f25ca8d9caee0cb5e329e7c (patch) | |
tree | 2cb20dab076d0d417f6deb10974804107388907b /net/atm/lec.c | |
parent | 4794195058b916cabcfaf9f4dfc699e6f48784f7 (diff) | |
download | linux-99a5e178bde4b0fa1f25ca8d9caee0cb5e329e7c.tar.bz2 |
ATM: use designated initializers
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>
Diffstat (limited to 'net/atm/lec.c')
-rw-r--r-- | net/atm/lec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/atm/lec.c b/net/atm/lec.c index 779b3fa6052d..019557d0a11d 100644 --- a/net/atm/lec.c +++ b/net/atm/lec.c @@ -111,9 +111,9 @@ static inline void lec_arp_put(struct lec_arp_table *entry) } static struct lane2_ops lane2_ops = { - lane2_resolve, /* resolve, spec 3.1.3 */ - lane2_associate_req, /* associate_req, spec 3.1.4 */ - NULL /* associate indicator, spec 3.1.5 */ + .resolve = lane2_resolve, /* spec 3.1.3 */ + .associate_req = lane2_associate_req, /* spec 3.1.4 */ + .associate_indicator = NULL /* spec 3.1.5 */ }; static unsigned char bus_mac[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; |