This is a note to let you know that I've just added the patch titled NFS: Fix a missing initialisation when reading the SELinux label to the 3.12-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: nfs-fix-a-missing-initialisation-when-reading-the-selinux-label.patch and it can be found in the queue-3.12 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From fcb63a9bd8427fc584229048ea14f1453dc9a2e1 Mon Sep 17 00:00:00 2001 From: Trond Myklebust <Trond.Myklebust@xxxxxxxxxx> Date: Fri, 1 Nov 2013 12:42:25 -0400 Subject: NFS: Fix a missing initialisation when reading the SELinux label From: Trond Myklebust <Trond.Myklebust@xxxxxxxxxx> commit fcb63a9bd8427fc584229048ea14f1453dc9a2e1 upstream. Ensure that _nfs4_do_get_security_label() also initialises the SEQUENCE call correctly, by having it call into nfs4_call_sync(). Reported-by: Jeff Layton <jlayton@xxxxxxxxxx> Signed-off-by: Trond Myklebust <Trond.Myklebust@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- fs/nfs/nfs4proc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c @@ -4570,7 +4570,7 @@ static int _nfs4_get_security_label(stru struct nfs4_label label = {0, 0, buflen, buf}; u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL }; - struct nfs4_getattr_arg args = { + struct nfs4_getattr_arg arg = { .fh = NFS_FH(inode), .bitmask = bitmask, }; @@ -4581,14 +4581,14 @@ static int _nfs4_get_security_label(stru }; struct rpc_message msg = { .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR], - .rpc_argp = &args, + .rpc_argp = &arg, .rpc_resp = &res, }; int ret; nfs_fattr_init(&fattr); - ret = rpc_call_sync(server->client, &msg, 0); + ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 0); if (ret) return ret; if (!(fattr.valid & NFS_ATTR_FATTR_V4_SECURITY_LABEL)) Patches currently in stable-queue which might be from Trond.Myklebust@xxxxxxxxxx are queue-3.12/nfsv4.2-fix-a-mismatch-between-linux-labeled-nfs-and-the-nfsv4.2-spec.patch queue-3.12/nfs-fix-oops-when-trying-to-set-selinux-label.patch queue-3.12/nfs-fix-a-missing-initialisation-when-reading-the-selinux-label.patch queue-3.12/nfsv4-fix-a-use-after-free-situation-in-_nfs4_proc_getlk.patch queue-3.12/nfs-fix-inverted-test-for-delegation-in-nfs4_reclaim_open_state.patch queue-3.12/nfsv4-fix-null-dereference-in-open-recover.patch queue-3.12/nfs-don-t-retry-detect_trunking-with-rpc_auth_unix-more-than-once.patch queue-3.12/nfsv4-don-t-reprocess-cached-open-claim_previous.patch queue-3.12/nfsv4-fix-state-reference-counting-in-_nfs4_opendata_reclaim_to_nfs4_state.patch queue-3.12/nfsv4-don-t-fail-on-missing-fattr-in-open-recover.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