The patch titled knfsd: fix typo in export display, print uid and gid as unsigned has been added to the -mm tree. Its filename is knfsd-fix-typo-in-export-display-print-uid-and-gid-as.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: knfsd: fix typo in export display, print uid and gid as unsigned From: J. Bruce Fields <bfields@xxxxxxxxxxxxxx> For display purposes, treat uid's and gid's as unsigned ints for now. Also fix a typo. Signed-off-by: "J. Bruce Fields" <bfields@xxxxxxxxxxxxxx> Cc: Neil Brown <neilb@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/nfsd/export.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN fs/nfsd/export.c~knfsd-fix-typo-in-export-display-print-uid-and-gid-as fs/nfsd/export.c --- a/fs/nfsd/export.c~knfsd-fix-typo-in-export-display-print-uid-and-gid-as +++ a/fs/nfsd/export.c @@ -1503,9 +1503,9 @@ static void exp_flags(struct seq_file *m if (flag & NFSEXP_FSID) seq_printf(m, ",fsid=%d", fsid); if (anonu != (uid_t)-2 && anonu != (0x10000-2)) - seq_printf(m, ",sanonuid=%d", anonu); + seq_printf(m, ",anonuid=%u", anonu); if (anong != (gid_t)-2 && anong != (0x10000-2)) - seq_printf(m, ",sanongid=%d", anong); + seq_printf(m, ",anongid=%u", anong); if (fsloc && fsloc->locations_count > 0) { char *loctype = (fsloc->migrated) ? "refer" : "replicas"; int i; _ Patches currently in -mm which might be from bfields@xxxxxxxxxxxxxx are origin.patch knfsd-fix-typo-in-export-display-print-uid-and-gid-as.patch auth_gss-unregister-gss_domain-when-unloading-module.patch locks-kill-redundant-local-variable.patch vfs-fix-a-race-in-lease-breaking-during-truncate.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