staging: lustre: remove cfs_register_sysctl_table macro
It was a wrapper around register_sysctl_table, so just remove it. Cc: Peng Tao <tao.peng@emc.com> Cc: Andreas Dilger <andreas.dilger@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ee92d533fa
commit
a7f24447d1
|
@ -79,8 +79,6 @@
|
|||
typedef struct ctl_table ctl_table_t;
|
||||
typedef struct ctl_table_header ctl_table_header_t;
|
||||
|
||||
#define cfs_register_sysctl_table(t, a) register_sysctl_table(t)
|
||||
|
||||
#define DECLARE_PROC_HANDLER(name) \
|
||||
static int \
|
||||
LL_PROC_PROTO(name) \
|
||||
|
|
|
@ -104,6 +104,4 @@ int proc_call_handler(void *data, int write,
|
|||
#define cfs_for_each_possible_cpu(cpu) for_each_cpu(cpu)
|
||||
#endif
|
||||
|
||||
#define cfs_register_sysctl_table(t, a) register_sysctl_table(t)
|
||||
|
||||
#endif /* _PORTALS_COMPAT_H */
|
||||
|
|
|
@ -404,7 +404,7 @@ kiblnd_sysctl_init (void)
|
|||
sizeof(ipif_basename_space));
|
||||
|
||||
kiblnd_tunables.kib_sysctl =
|
||||
cfs_register_sysctl_table(kiblnd_top_ctl_table, 0);
|
||||
register_sysctl_table(kiblnd_top_ctl_table);
|
||||
|
||||
if (kiblnd_tunables.kib_sysctl == NULL)
|
||||
CWARN("Can't setup /proc tunables\n");
|
||||
|
|
|
@ -316,7 +316,7 @@ ksocknal_lib_tunables_init ()
|
|||
*ksocknal_tunables.ksnd_zc_recv_min_nfrags = LNET_MAX_IOV;
|
||||
|
||||
ksocknal_tunables.ksnd_sysctl =
|
||||
cfs_register_sysctl_table(ksocknal_top_ctl_table, 0);
|
||||
register_sysctl_table(ksocknal_top_ctl_table);
|
||||
|
||||
if (ksocknal_tunables.ksnd_sysctl == NULL)
|
||||
CWARN("Can't setup /proc tunables\n");
|
||||
|
|
|
@ -920,7 +920,7 @@ lnet_proc_init(void)
|
|||
{
|
||||
#ifdef CONFIG_SYSCTL
|
||||
if (lnet_table_header == NULL)
|
||||
lnet_table_header = cfs_register_sysctl_table(top_table, 0);
|
||||
lnet_table_header = register_sysctl_table(top_table);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -562,7 +562,7 @@ int insert_proc(void)
|
|||
{
|
||||
#ifdef CONFIG_SYSCTL
|
||||
if (lnet_table_header == NULL)
|
||||
lnet_table_header = cfs_register_sysctl_table(top_table, 0);
|
||||
lnet_table_header = register_sysctl_table(top_table);
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -429,7 +429,7 @@ void obd_sysctl_init (void)
|
|||
{
|
||||
#ifdef CONFIG_SYSCTL
|
||||
if ( !obd_table_header )
|
||||
obd_table_header = cfs_register_sysctl_table(parent_table, 0);
|
||||
obd_table_header = register_sysctl_table(parent_table);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue