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
@ -31,8 +31,8 @@ static ctl_table rose_table[] = {
|
||||
.data = &sysctl_rose_restart_request_timeout,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_minmax,
|
||||
.strategy = &sysctl_intvec,
|
||||
.proc_handler = proc_dointvec_minmax,
|
||||
.strategy = sysctl_intvec,
|
||||
.extra1 = &min_timer,
|
||||
.extra2 = &max_timer
|
||||
},
|
||||
@ -42,8 +42,8 @@ static ctl_table rose_table[] = {
|
||||
.data = &sysctl_rose_call_request_timeout,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_minmax,
|
||||
.strategy = &sysctl_intvec,
|
||||
.proc_handler = proc_dointvec_minmax,
|
||||
.strategy = sysctl_intvec,
|
||||
.extra1 = &min_timer,
|
||||
.extra2 = &max_timer
|
||||
},
|
||||
@ -53,8 +53,8 @@ static ctl_table rose_table[] = {
|
||||
.data = &sysctl_rose_reset_request_timeout,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_minmax,
|
||||
.strategy = &sysctl_intvec,
|
||||
.proc_handler = proc_dointvec_minmax,
|
||||
.strategy = sysctl_intvec,
|
||||
.extra1 = &min_timer,
|
||||
.extra2 = &max_timer
|
||||
},
|
||||
@ -64,8 +64,8 @@ static ctl_table rose_table[] = {
|
||||
.data = &sysctl_rose_clear_request_timeout,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_minmax,
|
||||
.strategy = &sysctl_intvec,
|
||||
.proc_handler = proc_dointvec_minmax,
|
||||
.strategy = sysctl_intvec,
|
||||
.extra1 = &min_timer,
|
||||
.extra2 = &max_timer
|
||||
},
|
||||
@ -75,8 +75,8 @@ static ctl_table rose_table[] = {
|
||||
.data = &sysctl_rose_no_activity_timeout,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_minmax,
|
||||
.strategy = &sysctl_intvec,
|
||||
.proc_handler = proc_dointvec_minmax,
|
||||
.strategy = sysctl_intvec,
|
||||
.extra1 = &min_idle,
|
||||
.extra2 = &max_idle
|
||||
},
|
||||
@ -86,8 +86,8 @@ static ctl_table rose_table[] = {
|
||||
.data = &sysctl_rose_ack_hold_back_timeout,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_minmax,
|
||||
.strategy = &sysctl_intvec,
|
||||
.proc_handler = proc_dointvec_minmax,
|
||||
.strategy = sysctl_intvec,
|
||||
.extra1 = &min_timer,
|
||||
.extra2 = &max_timer
|
||||
},
|
||||
@ -97,8 +97,8 @@ static ctl_table rose_table[] = {
|
||||
.data = &sysctl_rose_routing_control,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_minmax,
|
||||
.strategy = &sysctl_intvec,
|
||||
.proc_handler = proc_dointvec_minmax,
|
||||
.strategy = sysctl_intvec,
|
||||
.extra1 = &min_route,
|
||||
.extra2 = &max_route
|
||||
},
|
||||
@ -108,8 +108,8 @@ static ctl_table rose_table[] = {
|
||||
.data = &sysctl_rose_link_fail_timeout,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_minmax,
|
||||
.strategy = &sysctl_intvec,
|
||||
.proc_handler = proc_dointvec_minmax,
|
||||
.strategy = sysctl_intvec,
|
||||
.extra1 = &min_ftimer,
|
||||
.extra2 = &max_ftimer
|
||||
},
|
||||
@ -119,8 +119,8 @@ static ctl_table rose_table[] = {
|
||||
.data = &sysctl_rose_maximum_vcs,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_minmax,
|
||||
.strategy = &sysctl_intvec,
|
||||
.proc_handler = proc_dointvec_minmax,
|
||||
.strategy = sysctl_intvec,
|
||||
.extra1 = &min_maxvcs,
|
||||
.extra2 = &max_maxvcs
|
||||
},
|
||||
@ -130,8 +130,8 @@ static ctl_table rose_table[] = {
|
||||
.data = &sysctl_rose_window_size,
|
||||
.maxlen = sizeof(int),
|
||||
.mode = 0644,
|
||||
.proc_handler = &proc_dointvec_minmax,
|
||||
.strategy = &sysctl_intvec,
|
||||
.proc_handler = proc_dointvec_minmax,
|
||||
.strategy = sysctl_intvec,
|
||||
.extra1 = &min_window,
|
||||
.extra2 = &max_window
|
||||
},
|
||||
|
Reference in New Issue
Block a user