Commit db71789c authored by David S. Miller's avatar David S. Miller

xfrm6: Fix xfrm6_policy.c build when SYSCTL disabled.

Same as how Randy Dunlap fixed the ipv4 side of things.
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f816700a
...@@ -306,6 +306,7 @@ static void xfrm6_policy_fini(void) ...@@ -306,6 +306,7 @@ static void xfrm6_policy_fini(void)
xfrm_policy_unregister_afinfo(&xfrm6_policy_afinfo); xfrm_policy_unregister_afinfo(&xfrm6_policy_afinfo);
} }
#ifdef CONFIG_SYSCTL
static struct ctl_table xfrm6_policy_table[] = { static struct ctl_table xfrm6_policy_table[] = {
{ {
.ctl_name = CTL_UNNUMBERED, .ctl_name = CTL_UNNUMBERED,
...@@ -319,6 +320,7 @@ static struct ctl_table xfrm6_policy_table[] = { ...@@ -319,6 +320,7 @@ static struct ctl_table xfrm6_policy_table[] = {
}; };
static struct ctl_table_header *sysctl_hdr; static struct ctl_table_header *sysctl_hdr;
#endif
int __init xfrm6_init(void) int __init xfrm6_init(void)
{ {
...@@ -345,9 +347,10 @@ int __init xfrm6_init(void) ...@@ -345,9 +347,10 @@ int __init xfrm6_init(void)
*/ */
gc_thresh = FIB6_TABLE_HASHSZ * 8; gc_thresh = FIB6_TABLE_HASHSZ * 8;
xfrm6_dst_ops.gc_thresh = (gc_thresh < 1024) ? 1024 : gc_thresh; xfrm6_dst_ops.gc_thresh = (gc_thresh < 1024) ? 1024 : gc_thresh;
#ifdef CONFIG_SYSCTL
sysctl_hdr = register_net_sysctl_table(&init_net, net_ipv6_ctl_path, sysctl_hdr = register_net_sysctl_table(&init_net, net_ipv6_ctl_path,
xfrm6_policy_table); xfrm6_policy_table);
#endif
out: out:
return ret; return ret;
out_policy: out_policy:
...@@ -357,8 +360,10 @@ int __init xfrm6_init(void) ...@@ -357,8 +360,10 @@ int __init xfrm6_init(void)
void xfrm6_fini(void) void xfrm6_fini(void)
{ {
#ifdef CONFIG_SYSCTL
if (sysctl_hdr) if (sysctl_hdr)
unregister_net_sysctl_table(sysctl_hdr); unregister_net_sysctl_table(sysctl_hdr);
#endif
//xfrm6_input_fini(); //xfrm6_input_fini();
xfrm6_policy_fini(); xfrm6_policy_fini();
xfrm6_state_fini(); xfrm6_state_fini();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment