This is a note to let you know that I've just added the patch titled nfsd: pass net to nfsd_create_serv() to the 3.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: nfsd-pass-net-to-nfsd_create_serv.patch and it can be found in the queue-3.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 6777436b0f072fb20a025a73e9b67a35ad8a5451 Mon Sep 17 00:00:00 2001 From: Stanislav Kinsbursky <skinsbursky@xxxxxxxxxxxxx> Date: Mon, 10 Dec 2012 12:19:20 +0300 Subject: nfsd: pass net to nfsd_create_serv() From: Stanislav Kinsbursky <skinsbursky@xxxxxxxxxxxxx> commit 6777436b0f072fb20a025a73e9b67a35ad8a5451 upstream. Precursor patch. Hard-coded "init_net" will be replaced by proper one in future. Signed-off-by: Stanislav Kinsbursky <skinsbursky@xxxxxxxxxxxxx> Signed-off-by: J. Bruce Fields <bfields@xxxxxxxxxx> [wengmeiling: backport to 3.4: adjust context] Signed-off-by: Weng Meiling <wengmeiling.weng@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- fs/nfsd/nfsctl.c | 4 ++-- fs/nfsd/nfsd.h | 2 +- fs/nfsd/nfssvc.c | 5 ++--- 3 files changed, 5 insertions(+), 6 deletions(-) --- a/fs/nfsd/nfsctl.c +++ b/fs/nfsd/nfsctl.c @@ -657,7 +657,7 @@ static ssize_t __write_ports_addfd(char if (err != 0 || fd < 0) return -EINVAL; - err = nfsd_create_serv(); + err = nfsd_create_serv(net); if (err != 0) return err; @@ -708,7 +708,7 @@ static ssize_t __write_ports_addxprt(cha if (port < 1 || port > USHRT_MAX) return -EINVAL; - err = nfsd_create_serv(); + err = nfsd_create_serv(net); if (err != 0) return err; --- a/fs/nfsd/nfsd.h +++ b/fs/nfsd/nfsd.h @@ -101,7 +101,7 @@ enum vers_op {NFSD_SET, NFSD_CLEAR, NFSD int nfsd_vers(int vers, enum vers_op change); int nfsd_minorversion(u32 minorversion, enum vers_op change); void nfsd_reset_versions(void); -int nfsd_create_serv(void); +int nfsd_create_serv(struct net *net); extern int nfsd_max_blksize; --- a/fs/nfsd/nfssvc.c +++ b/fs/nfsd/nfssvc.c @@ -326,10 +326,9 @@ static int nfsd_get_default_max_blksize( return ret; } -int nfsd_create_serv(void) +int nfsd_create_serv(struct net *net) { int error; - struct net *net = &init_net; WARN_ON(!mutex_is_locked(&nfsd_mutex)); if (nfsd_serv) { @@ -451,7 +450,7 @@ nfsd_svc(unsigned short port, int nrserv if (nrservs == 0 && nfsd_serv == NULL) goto out; - error = nfsd_create_serv(); + error = nfsd_create_serv(net); if (error) goto out; Patches currently in stable-queue which might be from skinsbursky@xxxxxxxxxxxxx are queue-3.4/nfsd-pass-net-to-nfsd_svc.patch queue-3.4/nfsd-pass-proper-net-to-nfsd_destroy-from-nfsd-kthreads.patch queue-3.4/nfsd-pass-net-to-nfsd_init_socks.patch queue-3.4/nfsd-pass-net-to-__write_ports-and-down.patch queue-3.4/nfsd-pass-net-to-nfsd_set_nrthreads.patch queue-3.4/nfsd-pass-net-to-nfsd_create_serv.patch queue-3.4/nfsd-pass-net-to-nfsd_startup-and-nfsd_shutdown.patch queue-3.4/nfsd-containerize-nfsd-filesystem.patch queue-3.4/nfsd-check-passed-socket-s-net-matches-nfsd-superblock-s-one.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html