The patch titled Subject: tools/accounting/procacct: Fix minor errors has been added to the -mm mm-nonmm-unstable branch. Its filename is tools-accounting-procacct-fix-minor-errors.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/tools-accounting-procacct-fix-minor-errors.patch This patch will later appear in the mm-nonmm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm 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/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: zhang jiao <zhangjiao2@xxxxxxxxxxxxxxxxxxxx> Subject: tools/accounting/procacct: Fix minor errors Date: Tue, 3 Dec 2024 10:05:50 +0800 The logfile option was documented but not working. Add it and optimized the while loop. Link: https://lkml.kernel.org/r/20241203020550.3145-1-zhangjiao2@xxxxxxxxxxxxxxxxxxxx Signed-off-by: zhang jiao <zhangjiao2@xxxxxxxxxxxxxxxxxxxx> Reviewed-by: Dr. Thomas Orgis <thomas.orgis@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- tools/accounting/procacct.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- a/tools/accounting/procacct.c~tools-accounting-procacct-fix-minor-errors +++ a/tools/accounting/procacct.c @@ -274,12 +274,11 @@ int main(int argc, char *argv[]) int maskset = 0; char *logfile = NULL; int cfd = 0; - int forking = 0; struct msgtemplate msg; - while (!forking) { - c = getopt(argc, argv, "m:vr:"); + while (1) { + c = getopt(argc, argv, "m:vr:w:"); if (c < 0) break; _ Patches currently in -mm which might be from zhangjiao2@xxxxxxxxxxxxxxxxxxxx are tools-accounting-procacct-fix-minor-errors.patch