net: '&' redux
I want to compile out proc_* and sysctl_* handlers totally and stub them to NULL depending on config options, however usage of & will prevent this, since taking adress of NULL pointer will break compilation. So, drop & in front of every ->proc_handler and every ->strategy handler, it was never needed in fact. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
6cf3f41e6c
commit
6d9f239a1e
@@ -1545,7 +1545,7 @@ static struct ctl_table vs_vars[] = {
|
||||
.data = &sysctl_ip_vs_amemthresh,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec,
|
||||
.proc_handler = proc_dointvec,
|
||||
},
|
||||
#ifdef CONFIG_IP_VS_DEBUG
|
||||
{
|
||||
@@ -1553,7 +1553,7 @@ static struct ctl_table vs_vars[] = {
|
||||
.data = &sysctl_ip_vs_debug_level,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec,
|
||||
.proc_handler = proc_dointvec,
|
||||
},
|
||||
#endif
|
||||
{
|
||||
@@ -1561,28 +1561,28 @@ static struct ctl_table vs_vars[] = {
|
||||
.data = &sysctl_ip_vs_am_droprate,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec,
|
||||
.proc_handler = proc_dointvec,
|
||||
},
|
||||
{
|
||||
.procname = "drop_entry",
|
||||
.data = &sysctl_ip_vs_drop_entry,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_do_defense_mode,
|
||||
.proc_handler = proc_do_defense_mode,
|
||||
},
|
||||
{
|
||||
.procname = "drop_packet",
|
||||
.data = &sysctl_ip_vs_drop_packet,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_do_defense_mode,
|
||||
.proc_handler = proc_do_defense_mode,
|
||||
},
|
||||
{
|
||||
.procname = "secure_tcp",
|
||||
.data = &sysctl_ip_vs_secure_tcp,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_do_defense_mode,
|
||||
.proc_handler = proc_do_defense_mode,
|
||||
},
|
||||
#if 0
|
||||
{
|
||||
@@ -1590,84 +1590,84 @@ static struct ctl_table vs_vars[] = {
|
||||
.data = &vs_timeout_table_dos.timeout[IP_VS_S_ESTABLISHED],
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
{
|
||||
.procname = "timeout_synsent",
|
||||
.data = &vs_timeout_table_dos.timeout[IP_VS_S_SYN_SENT],
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
{
|
||||
.procname = "timeout_synrecv",
|
||||
.data = &vs_timeout_table_dos.timeout[IP_VS_S_SYN_RECV],
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
{
|
||||
.procname = "timeout_finwait",
|
||||
.data = &vs_timeout_table_dos.timeout[IP_VS_S_FIN_WAIT],
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
{
|
||||
.procname = "timeout_timewait",
|
||||
.data = &vs_timeout_table_dos.timeout[IP_VS_S_TIME_WAIT],
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
{
|
||||
.procname = "timeout_close",
|
||||
.data = &vs_timeout_table_dos.timeout[IP_VS_S_CLOSE],
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
{
|
||||
.procname = "timeout_closewait",
|
||||
.data = &vs_timeout_table_dos.timeout[IP_VS_S_CLOSE_WAIT],
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
{
|
||||
.procname = "timeout_lastack",
|
||||
.data = &vs_timeout_table_dos.timeout[IP_VS_S_LAST_ACK],
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
{
|
||||
.procname = "timeout_listen",
|
||||
.data = &vs_timeout_table_dos.timeout[IP_VS_S_LISTEN],
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
{
|
||||
.procname = "timeout_synack",
|
||||
.data = &vs_timeout_table_dos.timeout[IP_VS_S_SYNACK],
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
{
|
||||
.procname = "timeout_udp",
|
||||
.data = &vs_timeout_table_dos.timeout[IP_VS_S_UDP],
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
{
|
||||
.procname = "timeout_icmp",
|
||||
.data = &vs_timeout_table_dos.timeout[IP_VS_S_ICMP],
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
#endif
|
||||
{
|
||||
@@ -1675,35 +1675,35 @@ static struct ctl_table vs_vars[] = {
|
||||
.data = &sysctl_ip_vs_cache_bypass,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec,
|
||||
.proc_handler = proc_dointvec,
|
||||
},
|
||||
{
|
||||
.procname = "expire_nodest_conn",
|
||||
.data = &sysctl_ip_vs_expire_nodest_conn,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec,
|
||||
.proc_handler = proc_dointvec,
|
||||
},
|
||||
{
|
||||
.procname = "expire_quiescent_template",
|
||||
.data = &sysctl_ip_vs_expire_quiescent_template,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec,
|
||||
.proc_handler = proc_dointvec,
|
||||
},
|
||||
{
|
||||
.procname = "sync_threshold",
|
||||
.data = &sysctl_ip_vs_sync_threshold,
|
||||
.maxlen = sizeof(sysctl_ip_vs_sync_threshold),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_do_sync_threshold,
|
||||
.proc_handler = proc_do_sync_threshold,
|
||||
},
|
||||
{
|
||||
.procname = "nat_icmp_send",
|
||||
.data = &sysctl_ip_vs_nat_icmp_send,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec,
|
||||
.proc_handler = proc_dointvec,
|
||||
},
|
||||
{ .ctl_name = 0 }
|
||||
};
|
||||
|
@@ -116,7 +116,7 @@ static ctl_table vs_vars_table[] = {
|
||||
.data = &sysctl_ip_vs_lblc_expiration,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
{ .ctl_name = 0 }
|
||||
};
|
||||
|
@@ -295,7 +295,7 @@ static ctl_table vs_vars_table[] = {
|
||||
.data = &sysctl_ip_vs_lblcr_expiration,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_jiffies,
|
||||
.proc_handler = proc_dointvec_jiffies,
|
||||
},
|
||||
{ .ctl_name = 0 }
|
||||
};
|
||||
|
Reference in New Issue
Block a user