diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2015-01-29 12:15:03 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-01-30 17:58:39 -0800 |
commit | 207895fd388c7c4c48bc33055cd726d9e750298c (patch) | |
tree | 560b36ca51ce4d654822e75e8c883d6e534e5992 /net/ipv4/devinet.c | |
parent | 055470d2a7ad47dfb479308d713993173f1c6876 (diff) | |
download | op-kernel-dev-207895fd388c7c4c48bc33055cd726d9e750298c.zip op-kernel-dev-207895fd388c7c4c48bc33055cd726d9e750298c.tar.gz |
net: mark some potential candidates __read_mostly
They are all either written once or extremly rarely (e.g. from init
code), so we can move them to the .data..read_mostly section.
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/devinet.c')
-rw-r--r-- | net/ipv4/devinet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/devinet.c b/net/ipv4/devinet.c index 59ebe16..f0b4a31d 100644 --- a/net/ipv4/devinet.c +++ b/net/ipv4/devinet.c @@ -2322,7 +2322,7 @@ static __net_initdata struct pernet_operations devinet_ops = { .exit = devinet_exit_net, }; -static struct rtnl_af_ops inet_af_ops = { +static struct rtnl_af_ops inet_af_ops __read_mostly = { .family = AF_INET, .fill_link_af = inet_fill_link_af, .get_link_af_size = inet_get_link_af_size, |