The patch titled nfsd: wrong index used in inner loop has been removed from the -mm tree. Its filename was nfsd-wrong-index-used-in-inner-loop.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: nfsd: wrong index used in inner loop From: Roel Kluin <roel.kluin@xxxxxxxxx> Index i was already used in the outer loop. (akpm: I suspect this will allow a rogue packet to cause a kernel lockup and oops, so cc:stable) Signed-off-by: Roel Kluin <roel.kluin@xxxxxxxxx> Cc: "J. Bruce Fields" <bfields@xxxxxxxxxxxx> Cc: Neil Brown <neilb@xxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/nfsd/nfs4xdr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN fs/nfsd/nfs4xdr.c~nfsd-wrong-index-used-in-inner-loop fs/nfsd/nfs4xdr.c --- a/fs/nfsd/nfs4xdr.c~nfsd-wrong-index-used-in-inner-loop +++ a/fs/nfsd/nfs4xdr.c @@ -1142,7 +1142,7 @@ nfsd4_decode_create_session(struct nfsd4 u32 dummy; char *machine_name; - int i; + int i, j; int nr_secflavs; READ_BUF(16); @@ -1215,7 +1215,7 @@ nfsd4_decode_create_session(struct nfsd4 READ_BUF(4); READ32(dummy); READ_BUF(dummy * 4); - for (i = 0; i < dummy; ++i) + for (j = 0; j < dummy; ++j) READ32(dummy); break; case RPC_AUTH_GSS: _ Patches currently in -mm which might be from roel.kluin@xxxxxxxxx are origin.patch linux-next.patch btrfs-dont-dereference-extent_mapping-if-null.patch frv-duplicate-output_buffer-of-e03.patch frv-duplicate-output_buffer-of-e03-checkpatch-fixes.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html