aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/lockd/svc.c13
-rw-r--r--fs/nfs/callback.c14
2 files changed, 3 insertions, 24 deletions
diff --git a/fs/lockd/svc.c b/fs/lockd/svc.c
index d30920038cb6..566932b98fd3 100644
--- a/fs/lockd/svc.c
+++ b/fs/lockd/svc.c
@@ -53,17 +53,6 @@ static struct svc_rqst *nlmsvc_rqst;
53unsigned long nlmsvc_timeout; 53unsigned long nlmsvc_timeout;
54 54
55/* 55/*
56 * If the kernel has IPv6 support available, always listen for
57 * both AF_INET and AF_INET6 requests.
58 */
59#if (defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)) && \
60 defined(CONFIG_SUNRPC_REGISTER_V4)
61static const sa_family_t nlmsvc_family = AF_INET6;
62#else /* (CONFIG_IPV6 || CONFIG_IPV6_MODULE) && CONFIG_SUNRPC_REGISTER_V4 */
63static const sa_family_t nlmsvc_family = AF_INET;
64#endif /* (CONFIG_IPV6 || CONFIG_IPV6_MODULE) && CONFIG_SUNRPC_REGISTER_V4 */
65
66/*
67 * These can be set at insmod time (useful for NFS as root filesystem), 56 * These can be set at insmod time (useful for NFS as root filesystem),
68 * and also changed through the sysctl interface. -- Jamie Lokier, Aug 2003 57 * and also changed through the sysctl interface. -- Jamie Lokier, Aug 2003
69 */ 58 */
@@ -211,7 +200,7 @@ static int create_lockd_listener(struct svc_serv *serv, char *name,
211 200
212 xprt = svc_find_xprt(serv, name, 0, 0); 201 xprt = svc_find_xprt(serv, name, 0, 0);
213 if (xprt == NULL) 202 if (xprt == NULL)
214 return svc_create_xprt(serv, name, nlmsvc_family, 203 return svc_create_xprt(serv, name, PF_INET,
215 port, SVC_SOCK_DEFAULTS); 204 port, SVC_SOCK_DEFAULTS);
216 205
217 svc_xprt_put(xprt); 206 svc_xprt_put(xprt);
diff --git a/fs/nfs/callback.c b/fs/nfs/callback.c
index ddf4b4ae6967..0ef47dff89be 100644
--- a/fs/nfs/callback.c
+++ b/fs/nfs/callback.c
@@ -41,16 +41,6 @@ unsigned short nfs_callback_tcpport;
41static const int nfs_set_port_min = 0; 41static const int nfs_set_port_min = 0;
42static const int nfs_set_port_max = 65535; 42static const int nfs_set_port_max = 65535;
43 43
44/*
45 * If the kernel has IPv6 support available, always listen for
46 * both AF_INET and AF_INET6 requests.
47 */
48#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
49static const sa_family_t nfs_callback_family = AF_INET6;
50#else
51static const sa_family_t nfs_callback_family = AF_INET;
52#endif
53
54static int param_set_port(const char *val, struct kernel_param *kp) 44static int param_set_port(const char *val, struct kernel_param *kp)
55{ 45{
56 char *endp; 46 char *endp;
@@ -121,13 +111,13 @@ int nfs_callback_up(void)
121 if (!serv) 111 if (!serv)
122 goto out_err; 112 goto out_err;
123 113
124 ret = svc_create_xprt(serv, "tcp", nfs_callback_family, 114 ret = svc_create_xprt(serv, "tcp", PF_INET,
125 nfs_callback_set_tcpport, SVC_SOCK_ANONYMOUS); 115 nfs_callback_set_tcpport, SVC_SOCK_ANONYMOUS);
126 if (ret <= 0) 116 if (ret <= 0)
127 goto out_err; 117 goto out_err;
128 nfs_callback_tcpport = ret; 118 nfs_callback_tcpport = ret;
129 dprintk("NFS: Callback listener port = %u (af %u)\n", 119 dprintk("NFS: Callback listener port = %u (af %u)\n",
130 nfs_callback_tcpport, nfs_callback_family); 120 nfs_callback_tcpport, PF_INET);
131 121
132 nfs_callback_info.rqst = svc_prepare_thread(serv, &serv->sv_pools[0]); 122 nfs_callback_info.rqst = svc_prepare_thread(serv, &serv->sv_pools[0]);
133 if (IS_ERR(nfs_callback_info.rqst)) { 123 if (IS_ERR(nfs_callback_info.rqst)) {