Lines Matching defs:net
4 #include <net/net_namespace.h>
5 #include <net/xfrm.h>
7 static void __net_init __xfrm_sysctl_init(struct net *net)
9 net->xfrm.sysctl_aevent_etime = XFRM_AE_ETIME;
10 net->xfrm.sysctl_aevent_rseqth = XFRM_AE_SEQT_SIZE;
11 net->xfrm.sysctl_larval_drop = 1;
12 net->xfrm.sysctl_acq_expires = 30;
44 int __net_init xfrm_sysctl_init(struct net *net)
48 __xfrm_sysctl_init(net);
53 table[0].data = &net->xfrm.sysctl_aevent_etime;
54 table[1].data = &net->xfrm.sysctl_aevent_rseqth;
55 table[2].data = &net->xfrm.sysctl_larval_drop;
56 table[3].data = &net->xfrm.sysctl_acq_expires;
59 if (net->user_ns != &init_user_ns)
62 net->xfrm.sysctl_hdr = register_net_sysctl(net, "net/core", table);
63 if (!net->xfrm.sysctl_hdr)
73 void __net_exit xfrm_sysctl_fini(struct net *net)
77 table = net->xfrm.sysctl_hdr->ctl_table_arg;
78 unregister_net_sysctl_table(net->xfrm.sysctl_hdr);
82 int __net_init xfrm_sysctl_init(struct net *net)
84 __xfrm_sysctl_init(net);