The patch titled knfsd: nfsd4: fix NFSv4 filehandle size units confusion has been removed from the -mm tree. Its filename was knfsd-nfsd4-fix-nfsv4-filehandle-size-units-confusion.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: knfsd: nfsd4: fix NFSv4 filehandle size units confusion From: "J. Bruce Fields" <bfields@xxxxxxxxxxxx> NFS4_FHSIZE is measured in bytes, not 4-byte words, so much more space than necessary is being allocated for struct nfs4_cb_recall. I should have wondered why this structure was so much larger than it needed to be! Signed-off-by: "J. Bruce Fields" <bfields@xxxxxxxxxxxxxx> Signed-off-by: Neil Brown <neilb@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/nfsd/state.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/nfsd/state.h~knfsd-nfsd4-fix-nfsv4-filehandle-size-units-confusion include/linux/nfsd/state.h --- a/include/linux/nfsd/state.h~knfsd-nfsd4-fix-nfsv4-filehandle-size-units-confusion +++ a/include/linux/nfsd/state.h @@ -67,7 +67,7 @@ struct nfs4_cb_recall { int cbr_trunc; stateid_t cbr_stateid; u32 cbr_fhlen; - u32 cbr_fhval[NFS4_FHSIZE]; + char cbr_fhval[NFS4_FHSIZE]; struct nfs4_delegation *cbr_dp; }; _ Patches currently in -mm which might be from bfields@xxxxxxxxxxxx are origin.patch git-vfs-lease-api.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