diff options
| author | James Lentini <jlentini@netapp.com> | 2007-11-26 12:42:44 -0500 |
|---|---|---|
| committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-11-26 16:21:19 -0500 |
| commit | cfcb43ff7ce28f347a39e1a7519e01850b588718 (patch) | |
| tree | 3f21947e64316de5499c38d6c76a6ae3dd48996f | |
| parent | 4c1fe2f78a08e2c514a39c91a0eb7b55bbd3c0d2 (diff) | |
SUNRPC: remove NFS/RDMA client's binary sysctls
Support for binary sysctls is being deprecated in 2.6.24. Since there
are no applications using the NFS/RDMA client's binary sysctls, it
makes sense to remove them. The patch below does this while leaving
the /proc/sys interface unchanged.
Please consider this for 2.6.24.
Signed-off-by: James Lentini <jlentini@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
| -rw-r--r-- | include/linux/sunrpc/debug.h | 5 | ||||
| -rw-r--r-- | net/sunrpc/xprtrdma/transport.c | 10 |
2 files changed, 5 insertions, 10 deletions
diff --git a/include/linux/sunrpc/debug.h b/include/linux/sunrpc/debug.h index 3347c72b848a..3912cf16361e 100644 --- a/include/linux/sunrpc/debug.h +++ b/include/linux/sunrpc/debug.h | |||
| @@ -88,11 +88,6 @@ enum { | |||
| 88 | CTL_SLOTTABLE_TCP, | 88 | CTL_SLOTTABLE_TCP, |
| 89 | CTL_MIN_RESVPORT, | 89 | CTL_MIN_RESVPORT, |
| 90 | CTL_MAX_RESVPORT, | 90 | CTL_MAX_RESVPORT, |
| 91 | CTL_SLOTTABLE_RDMA, | ||
| 92 | CTL_RDMA_MAXINLINEREAD, | ||
| 93 | CTL_RDMA_MAXINLINEWRITE, | ||
| 94 | CTL_RDMA_WRITEPADDING, | ||
| 95 | CTL_RDMA_MEMREG, | ||
| 96 | }; | 91 | }; |
| 97 | 92 | ||
| 98 | #endif /* _LINUX_SUNRPC_DEBUG_H_ */ | 93 | #endif /* _LINUX_SUNRPC_DEBUG_H_ */ |
diff --git a/net/sunrpc/xprtrdma/transport.c b/net/sunrpc/xprtrdma/transport.c index 1afeb3eb8e4c..6f2112dd9f78 100644 --- a/net/sunrpc/xprtrdma/transport.c +++ b/net/sunrpc/xprtrdma/transport.c | |||
| @@ -89,7 +89,7 @@ static struct ctl_table_header *sunrpc_table_header; | |||
| 89 | 89 | ||
| 90 | static ctl_table xr_tunables_table[] = { | 90 | static ctl_table xr_tunables_table[] = { |
| 91 | { | 91 | { |
| 92 | .ctl_name = CTL_SLOTTABLE_RDMA, | 92 | .ctl_name = CTL_UNNUMBERED, |
| 93 | .procname = "rdma_slot_table_entries", | 93 | .procname = "rdma_slot_table_entries", |
| 94 | .data = &xprt_rdma_slot_table_entries, | 94 | .data = &xprt_rdma_slot_table_entries, |
| 95 | .maxlen = sizeof(unsigned int), | 95 | .maxlen = sizeof(unsigned int), |
| @@ -100,7 +100,7 @@ static ctl_table xr_tunables_table[] = { | |||
| 100 | .extra2 = &max_slot_table_size | 100 | .extra2 = &max_slot_table_size |
| 101 | }, | 101 | }, |
| 102 | { | 102 | { |
| 103 | .ctl_name = CTL_RDMA_MAXINLINEREAD, | 103 | .ctl_name = CTL_UNNUMBERED, |
| 104 | .procname = "rdma_max_inline_read", | 104 | .procname = "rdma_max_inline_read", |
| 105 | .data = &xprt_rdma_max_inline_read, | 105 | .data = &xprt_rdma_max_inline_read, |
| 106 | .maxlen = sizeof(unsigned int), | 106 | .maxlen = sizeof(unsigned int), |
| @@ -109,7 +109,7 @@ static ctl_table xr_tunables_table[] = { | |||
| 109 | .strategy = &sysctl_intvec, | 109 | .strategy = &sysctl_intvec, |
| 110 | }, | 110 | }, |
| 111 | { | 111 | { |
| 112 | .ctl_name = CTL_RDMA_MAXINLINEWRITE, | 112 | .ctl_name = CTL_UNNUMBERED, |
| 113 | .procname = "rdma_max_inline_write", | 113 | .procname = "rdma_max_inline_write", |
| 114 | .data = &xprt_rdma_max_inline_write, | 114 | .data = &xprt_rdma_max_inline_write, |
| 115 | .maxlen = sizeof(unsigned int), | 115 | .maxlen = sizeof(unsigned int), |
| @@ -118,7 +118,7 @@ static ctl_table xr_tunables_table[] = { | |||
| 118 | .strategy = &sysctl_intvec, | 118 | .strategy = &sysctl_intvec, |
| 119 | }, | 119 | }, |
| 120 | { | 120 | { |
| 121 | .ctl_name = CTL_RDMA_WRITEPADDING, | 121 | .ctl_name = CTL_UNNUMBERED, |
| 122 | .procname = "rdma_inline_write_padding", | 122 | .procname = "rdma_inline_write_padding", |
| 123 | .data = &xprt_rdma_inline_write_padding, | 123 | .data = &xprt_rdma_inline_write_padding, |
| 124 | .maxlen = sizeof(unsigned int), | 124 | .maxlen = sizeof(unsigned int), |
| @@ -129,7 +129,7 @@ static ctl_table xr_tunables_table[] = { | |||
| 129 | .extra2 = &max_padding, | 129 | .extra2 = &max_padding, |
| 130 | }, | 130 | }, |
| 131 | { | 131 | { |
| 132 | .ctl_name = CTL_RDMA_MEMREG, | 132 | .ctl_name = CTL_UNNUMBERED, |
| 133 | .procname = "rdma_memreg_strategy", | 133 | .procname = "rdma_memreg_strategy", |
| 134 | .data = &xprt_rdma_memreg_strategy, | 134 | .data = &xprt_rdma_memreg_strategy, |
| 135 | .maxlen = sizeof(unsigned int), | 135 | .maxlen = sizeof(unsigned int), |
