The patch titled IPC: fix a kernel-doc warning has been added to the -mm tree. Its filename is ipc-consolidate-all-xxxctl_down-functions-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** 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 The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: IPC: fix a kernel-doc warning From: "Pierre Peiffer" <peifferp@xxxxxxxxx> This patch fixes this warning produced by kernel-doc (thanks Randy Dunlap): Warning(linux-2.6.25-rc3-mm1//ipc/util.c:845): No description found for parameter 'extrat_perm' It is due to an inconsistency in a variable name between the C-code and the associated comment. Signed-off-by: Pierre Peiffer <peifferp@xxxxxxxxx> Cc: "Randy.Dunlap" <rdunlap@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- ipc/util.c | 4 ++-- ipc/util.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff -puN ipc/util.c~ipc-consolidate-all-xxxctl_down-functions-fix ipc/util.c --- a/ipc/util.c~ipc-consolidate-all-xxxctl_down-functions-fix +++ a/ipc/util.c @@ -841,7 +841,7 @@ void ipc_update_perm(struct ipc64_perm * * or an err-code without any lock held otherwise. */ struct kern_ipc_perm *ipcctl_pre_down(struct ipc_ids *ids, int id, int cmd, - struct ipc64_perm *perm, int extrat_perm) + struct ipc64_perm *perm, int extra_perm) { struct kern_ipc_perm *ipcp; int err; @@ -858,7 +858,7 @@ struct kern_ipc_perm *ipcctl_pre_down(st goto out_unlock; if (cmd == IPC_SET) { - err = audit_ipc_set_perm(extrat_perm, perm->uid, + err = audit_ipc_set_perm(extra_perm, perm->uid, perm->gid, perm->mode); if (err) goto out_unlock; diff -puN ipc/util.h~ipc-consolidate-all-xxxctl_down-functions-fix ipc/util.h --- a/ipc/util.h~ipc-consolidate-all-xxxctl_down-functions-fix +++ a/ipc/util.h @@ -114,7 +114,7 @@ void kernel_to_ipc64_perm(struct kern_ip void ipc64_perm_to_ipc_perm(struct ipc64_perm *in, struct ipc_perm *out); void ipc_update_perm(struct ipc64_perm *in, struct kern_ipc_perm *out); struct kern_ipc_perm *ipcctl_pre_down(struct ipc_ids *ids, int id, int cmd, - struct ipc64_perm *perm, int extrat_perm); + struct ipc64_perm *perm, int extra_perm); #if defined(__ia64__) || defined(__x86_64__) || defined(__hppa__) || defined(__XTENSA__) /* On IA-64, we always use the "64-bit version" of the IPC structures. */ _ Patches currently in -mm which might be from peifferp@xxxxxxxxx are ipc-consolidate-all-xxxctl_down-functions-fix.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