This is a note to let you know that I've just added the patch titled nfsd4: fix test_stateid error reply encoding to the 3.10-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: nfsd4-fix-test_stateid-error-reply-encoding.patch and it can be found in the queue-3.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From a11fcce1544df08c723d950ff0edef3adac40405 Mon Sep 17 00:00:00 2001 From: "J. Bruce Fields" <bfields@xxxxxxxxxx> Date: Mon, 3 Feb 2014 16:31:42 -0500 Subject: nfsd4: fix test_stateid error reply encoding From: "J. Bruce Fields" <bfields@xxxxxxxxxx> commit a11fcce1544df08c723d950ff0edef3adac40405 upstream. If the entire operation fails then there's nothing to encode. Signed-off-by: J. Bruce Fields <bfields@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- fs/nfsd/nfs4xdr.c | 3 +++ 1 file changed, 3 insertions(+) --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c @@ -3384,6 +3384,9 @@ nfsd4_encode_test_stateid(struct nfsd4_c struct nfsd4_test_stateid_id *stateid, *next; __be32 *p; + if (nfserr) + return nfserr; + RESERVE_SPACE(4 + (4 * test_stateid->ts_num_ids)); *p++ = htonl(test_stateid->ts_num_ids); Patches currently in stable-queue which might be from bfields@xxxxxxxxxx are queue-3.10/nfsd4-fix-test_stateid-error-reply-encoding.patch queue-3.10/nfsd4-session-needs-room-for-following-op-to-error-out.patch queue-3.10/nfsd4-buffer-length-check-for-suppattr_exclcreat.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