aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/fib6_rules.c
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2010-04-26 16:02:04 +0200
committerPatrick McHardy <kaber@trash.net>2010-04-26 16:02:04 +0200
commit3d0c9c4eb2dbdcc461be4084abd87a9a9e70f713 (patch)
tree3a71a67a1f40afd7afbe0389259eb27d23fbfa36 /net/ipv6/fib6_rules.c
parent8c52d509e84bbf26cffb8b6e75b399689af67885 (diff)
downloadkernel_samsung_smdk4412-3d0c9c4eb2dbdcc461be4084abd87a9a9e70f713.zip
kernel_samsung_smdk4412-3d0c9c4eb2dbdcc461be4084abd87a9a9e70f713.tar.gz
kernel_samsung_smdk4412-3d0c9c4eb2dbdcc461be4084abd87a9a9e70f713.tar.bz2
net: fib_rules: mark arguments to fib_rules_register const and __net_initdata
fib_rules_register() duplicates the template passed to it without modification, mark the argument as const. Additionally the templates are only needed when instantiating a new namespace, so mark them as __net_initdata, which means they can be discarded when CONFIG_NET_NS=n. Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/ipv6/fib6_rules.c')
-rw-r--r--net/ipv6/fib6_rules.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/fib6_rules.c b/net/ipv6/fib6_rules.c
index 8124f16..35f6949 100644
--- a/net/ipv6/fib6_rules.c
+++ b/net/ipv6/fib6_rules.c
@@ -237,7 +237,7 @@ static size_t fib6_rule_nlmsg_payload(struct fib_rule *rule)
+ nla_total_size(16); /* src */
}
-static struct fib_rules_ops fib6_rules_ops_template = {
+static const struct fib_rules_ops __net_initdata fib6_rules_ops_template = {
.family = FIB_RULES_IPV6,
.rule_size = sizeof(struct fib6_rule),
.addr_size = sizeof(struct in6_addr),