250 lines
8.8 KiB
Diff
250 lines
8.8 KiB
Diff
Path: news.gmane.org!not-for-mail
|
|
From: Stanislav Kinsbursky <skinsbursky-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
|
|
Newsgroups: gmane.linux.nfs,gmane.linux.kernel,gmane.linux.openvz.devel
|
|
Subject: [PATCH 1/2] SUNRPC: new svc_bind() routine introduced
|
|
Date: Fri, 01 Jun 2012 15:17:42 +0400
|
|
Lines: 203
|
|
Approved: news@gmane.org
|
|
Message-ID: <20120601111742.7846.99872.stgit@localhost.localdomain>
|
|
References: <20120601111619.7846.95457.stgit@localhost.localdomain>
|
|
NNTP-Posting-Host: plane.gmane.org
|
|
Mime-Version: 1.0
|
|
Content-Type: text/plain; charset="utf-8"
|
|
Content-Transfer-Encoding: 7bit
|
|
X-Trace: dough.gmane.org 1338549604 8815 80.91.229.3 (1 Jun 2012 11:20:04 GMT)
|
|
X-Complaints-To: usenet@dough.gmane.org
|
|
NNTP-Posting-Date: Fri, 1 Jun 2012 11:20:04 +0000 (UTC)
|
|
Cc: linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
|
|
devel-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org
|
|
To: bfields-uC3wQj2KruNg9hUCZPvPmw@public.gmane.org, Trond.Myklebust-HgOvQuBEEgTQT0dZR+AlfA@public.gmane.org
|
|
Original-X-From: linux-nfs-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org Fri Jun 01 13:20:02 2012
|
|
Return-path: <linux-nfs-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
|
|
Envelope-to: glN-linux-nfs-wOFGN7rlS/M9smdsby/KFg@public.gmane.org
|
|
Original-Received: from vger.kernel.org ([209.132.180.67])
|
|
by plane.gmane.org with esmtp (Exim 4.69)
|
|
(envelope-from <linux-nfs-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>)
|
|
id 1SaPtg-0001Xs-F8
|
|
for glN-linux-nfs-wOFGN7rlS/M9smdsby/KFg@public.gmane.org; Fri, 01 Jun 2012 13:20:00 +0200
|
|
Original-Received: (majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org) by vger.kernel.org via listexpand
|
|
id S1759450Ab2FALT7 (ORCPT <rfc822;glN-linux-nfs@m.gmane.org>);
|
|
Fri, 1 Jun 2012 07:19:59 -0400
|
|
Original-Received: from mailhub.sw.ru ([195.214.232.25]:20534 "EHLO relay.sw.ru"
|
|
rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP
|
|
id S1759448Ab2FALT6 (ORCPT <rfc822;linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>);
|
|
Fri, 1 Jun 2012 07:19:58 -0400
|
|
Original-Received: from localhost.localdomain ([10.30.21.131])
|
|
by relay.sw.ru (8.13.4/8.13.4) with ESMTP id q51BJjDD010948;
|
|
Fri, 1 Jun 2012 15:19:46 +0400 (MSK)
|
|
In-Reply-To: <20120601111619.7846.95457.stgit-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
|
|
User-Agent: StGit/0.16
|
|
Original-Sender: linux-nfs-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
|
|
Precedence: bulk
|
|
List-ID: <linux-nfs.vger.kernel.org>
|
|
X-Mailing-List: linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
|
|
Xref: news.gmane.org gmane.linux.nfs:50234 gmane.linux.kernel:1306565 gmane.linux.openvz.devel:1595
|
|
Archived-At: <http://permalink.gmane.org/gmane.linux.nfs/50234>
|
|
|
|
This patch was back-ported from 3.5 kernel.
|
|
|
|
New routine is responsible for service registration in specified network
|
|
context.
|
|
The idea is to separate service creation from per-net operations.
|
|
Since registering service with svc_bind() can fail, then service will be
|
|
destroyed and during destruction it will try to unregister itself from
|
|
rpcbind. In this case unregister have to be skipped.
|
|
|
|
Signed-off-by: Stanislav Kinsbursky <skinsbursky-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
|
|
---
|
|
fs/lockd/svc.c | 6 ++++++
|
|
fs/nfs/callback.c | 13 ++++++++++---
|
|
fs/nfsd/nfssvc.c | 9 +++++++++
|
|
include/linux/sunrpc/svc.h | 1 +
|
|
net/sunrpc/rpcb_clnt.c | 12 +++++++-----
|
|
net/sunrpc/svc.c | 19 ++++++++++---------
|
|
6 files changed, 43 insertions(+), 17 deletions(-)
|
|
|
|
diff --git a/fs/lockd/svc.c b/fs/lockd/svc.c
|
|
index f49b9af..b1d0708 100644
|
|
--- a/fs/lockd/svc.c
|
|
+++ b/fs/lockd/svc.c
|
|
@@ -325,6 +325,12 @@ int lockd_up(void)
|
|
goto out;
|
|
}
|
|
|
|
+ error = svc_bind(serv, net);
|
|
+ if (error < 0) {
|
|
+ printk(KERN_WARNING "lockd_up: bind service failed\n");
|
|
+ goto destroy_and_out;
|
|
+ }
|
|
+
|
|
error = make_socks(serv, net);
|
|
if (error < 0)
|
|
goto destroy_and_out;
|
|
diff --git a/fs/nfs/callback.c b/fs/nfs/callback.c
|
|
index eb95f50..0563237 100644
|
|
--- a/fs/nfs/callback.c
|
|
+++ b/fs/nfs/callback.c
|
|
@@ -106,7 +106,7 @@ nfs4_callback_up(struct svc_serv *serv, struct rpc_xprt *xprt)
|
|
{
|
|
int ret;
|
|
|
|
- ret = svc_create_xprt(serv, "tcp", xprt->xprt_net, PF_INET,
|
|
+ ret = svc_create_xprt(serv, "tcp", &init_net, PF_INET,
|
|
nfs_callback_set_tcpport, SVC_SOCK_ANONYMOUS);
|
|
if (ret <= 0)
|
|
goto out_err;
|
|
@@ -114,7 +114,7 @@ nfs4_callback_up(struct svc_serv *serv, struct rpc_xprt *xprt)
|
|
dprintk("NFS: Callback listener port = %u (af %u)\n",
|
|
nfs_callback_tcpport, PF_INET);
|
|
|
|
- ret = svc_create_xprt(serv, "tcp", xprt->xprt_net, PF_INET6,
|
|
+ ret = svc_create_xprt(serv, "tcp", &init_net, PF_INET6,
|
|
nfs_callback_set_tcpport, SVC_SOCK_ANONYMOUS);
|
|
if (ret > 0) {
|
|
nfs_callback_tcpport6 = ret;
|
|
@@ -183,7 +183,7 @@ nfs41_callback_up(struct svc_serv *serv, struct rpc_xprt *xprt)
|
|
* fore channel connection.
|
|
* Returns the input port (0) and sets the svc_serv bc_xprt on success
|
|
*/
|
|
- ret = svc_create_xprt(serv, "tcp-bc", xprt->xprt_net, PF_INET, 0,
|
|
+ ret = svc_create_xprt(serv, "tcp-bc", &init_net, PF_INET, 0,
|
|
SVC_SOCK_ANONYMOUS);
|
|
if (ret < 0) {
|
|
rqstp = ERR_PTR(ret);
|
|
@@ -253,6 +253,7 @@ int nfs_callback_up(u32 minorversion, struct rpc_xprt *xprt)
|
|
char svc_name[12];
|
|
int ret = 0;
|
|
int minorversion_setup;
|
|
+ struct net *net = &init_net;
|
|
|
|
mutex_lock(&nfs_callback_mutex);
|
|
if (cb_info->users++ || cb_info->task != NULL) {
|
|
@@ -265,6 +266,12 @@ int nfs_callback_up(u32 minorversion, struct rpc_xprt *xprt)
|
|
goto out_err;
|
|
}
|
|
|
|
+ ret = svc_bind(serv, net);
|
|
+ if (ret < 0) {
|
|
+ printk(KERN_WARNING "NFS: bind callback service failed\n");
|
|
+ goto out_err;
|
|
+ }
|
|
+
|
|
minorversion_setup = nfs_minorversion_callback_svc_setup(minorversion,
|
|
serv, xprt, &rqstp, &callback_svc);
|
|
if (!minorversion_setup) {
|
|
diff --git a/fs/nfsd/nfssvc.c b/fs/nfsd/nfssvc.c
|
|
index 28dfad3..a6461f3 100644
|
|
--- a/fs/nfsd/nfssvc.c
|
|
+++ b/fs/nfsd/nfssvc.c
|
|
@@ -11,6 +11,7 @@
|
|
#include <linux/module.h>
|
|
#include <linux/fs_struct.h>
|
|
#include <linux/swap.h>
|
|
+#include <linux/nsproxy.h>
|
|
|
|
#include <linux/sunrpc/stats.h>
|
|
#include <linux/sunrpc/svcsock.h>
|
|
@@ -330,6 +331,8 @@ static int nfsd_get_default_max_blksize(void)
|
|
|
|
int nfsd_create_serv(void)
|
|
{
|
|
+ int error;
|
|
+
|
|
WARN_ON(!mutex_is_locked(&nfsd_mutex));
|
|
if (nfsd_serv) {
|
|
svc_get(nfsd_serv);
|
|
@@ -343,6 +346,12 @@ int nfsd_create_serv(void)
|
|
if (nfsd_serv == NULL)
|
|
return -ENOMEM;
|
|
|
|
+ error = svc_bind(nfsd_serv, current->nsproxy->net_ns);
|
|
+ if (error < 0) {
|
|
+ svc_destroy(nfsd_serv);
|
|
+ return error;
|
|
+ }
|
|
+
|
|
set_max_drc();
|
|
do_gettimeofday(&nfssvc_boot); /* record boot time */
|
|
return 0;
|
|
diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h
|
|
index 51b29ac..2b43e02 100644
|
|
--- a/include/linux/sunrpc/svc.h
|
|
+++ b/include/linux/sunrpc/svc.h
|
|
@@ -416,6 +416,7 @@ struct svc_procedure {
|
|
*/
|
|
int svc_rpcb_setup(struct svc_serv *serv, struct net *net);
|
|
void svc_rpcb_cleanup(struct svc_serv *serv, struct net *net);
|
|
+int svc_bind(struct svc_serv *serv, struct net *net);
|
|
struct svc_serv *svc_create(struct svc_program *, unsigned int,
|
|
void (*shutdown)(struct svc_serv *, struct net *net));
|
|
struct svc_rqst *svc_prepare_thread(struct svc_serv *serv,
|
|
diff --git a/net/sunrpc/rpcb_clnt.c b/net/sunrpc/rpcb_clnt.c
|
|
index 78ac39f..4c38b33 100644
|
|
--- a/net/sunrpc/rpcb_clnt.c
|
|
+++ b/net/sunrpc/rpcb_clnt.c
|
|
@@ -180,14 +180,16 @@ void rpcb_put_local(struct net *net)
|
|
struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
|
|
struct rpc_clnt *clnt = sn->rpcb_local_clnt;
|
|
struct rpc_clnt *clnt4 = sn->rpcb_local_clnt4;
|
|
- int shutdown;
|
|
+ int shutdown = 0;
|
|
|
|
spin_lock(&sn->rpcb_clnt_lock);
|
|
- if (--sn->rpcb_users == 0) {
|
|
- sn->rpcb_local_clnt = NULL;
|
|
- sn->rpcb_local_clnt4 = NULL;
|
|
+ if (sn->rpcb_users) {
|
|
+ if (--sn->rpcb_users == 0) {
|
|
+ sn->rpcb_local_clnt = NULL;
|
|
+ sn->rpcb_local_clnt4 = NULL;
|
|
+ }
|
|
+ shutdown = !sn->rpcb_users;
|
|
}
|
|
- shutdown = !sn->rpcb_users;
|
|
spin_unlock(&sn->rpcb_clnt_lock);
|
|
|
|
if (shutdown) {
|
|
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c
|
|
index 4153846..e6d542c 100644
|
|
--- a/net/sunrpc/svc.c
|
|
+++ b/net/sunrpc/svc.c
|
|
@@ -407,6 +407,14 @@ static int svc_uses_rpcbind(struct svc_serv *serv)
|
|
return 0;
|
|
}
|
|
|
|
+int svc_bind(struct svc_serv *serv, struct net *net)
|
|
+{
|
|
+ if (!svc_uses_rpcbind(serv))
|
|
+ return 0;
|
|
+ return svc_rpcb_setup(serv, net);
|
|
+}
|
|
+EXPORT_SYMBOL_GPL(svc_bind);
|
|
+
|
|
/*
|
|
* Create an RPC service
|
|
*/
|
|
@@ -471,15 +479,8 @@ __svc_create(struct svc_program *prog, unsigned int bufsize, int npools,
|
|
spin_lock_init(&pool->sp_lock);
|
|
}
|
|
|
|
- if (svc_uses_rpcbind(serv)) {
|
|
- if (svc_rpcb_setup(serv, current->nsproxy->net_ns) < 0) {
|
|
- kfree(serv->sv_pools);
|
|
- kfree(serv);
|
|
- return NULL;
|
|
- }
|
|
- if (!serv->sv_shutdown)
|
|
- serv->sv_shutdown = svc_rpcb_cleanup;
|
|
- }
|
|
+ if (svc_uses_rpcbind(serv) && (!serv->sv_shutdown))
|
|
+ serv->sv_shutdown = svc_rpcb_cleanup;
|
|
|
|
return serv;
|
|
}
|
|
|
|
--
|
|
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
|
|
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
|
|
More majordomo info at http://vger.kernel.org/majordomo-info.html
|
|
|