The patch titled fix Documentation/accounting/getdelays.c buf size has been removed from the -mm tree. Its filename was fix-documentation-accounting-getdelaysc-buf-size.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: fix Documentation/accounting/getdelays.c buf size From: Oleg Nesterov <oleg@xxxxxxxxxx> getdelays reports a "fatal reply error, errno 258". We don't have enough room for multi-threaded exit (PID + TGID). Signed-off-by: Oleg Nesterov <oleg@xxxxxxxxxx> Cc: Balbir Singh <balbir@xxxxxxxxxx> Cc: Shailabh Nagar <nagar@xxxxxxxxxxxxxx> Cc: Jay Lan <jlan@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- Documentation/accounting/getdelays.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN Documentation/accounting/getdelays.c~fix-documentation-accounting-getdelaysc-buf-size Documentation/accounting/getdelays.c --- a/Documentation/accounting/getdelays.c~fix-documentation-accounting-getdelaysc-buf-size +++ a/Documentation/accounting/getdelays.c @@ -49,7 +49,7 @@ __u64 stime, utime; } /* Maximum size of response requested or message sent */ -#define MAX_MSG_SIZE 256 +#define MAX_MSG_SIZE 1024 /* Maximum number of cpus expected to be specified in a cpumask */ #define MAX_CPUS 32 /* Maximum length of pathname to log file */ _ Patches currently in -mm which might be from oleg@xxxxxxxxxx are origin.patch lockdep-fix-delayacct-locking-bug.patch taskstats_exit_alloc-optimize-simplify.patch taskstats-cleanup-do_exit-path.patch taskstats-cleanup-signal-stats-allocation.patch taskstats-factor-out-reply-assembling.patch taskstats-use-nla_reserve-for-reply-assembling.patch taskstats-cleanup-reply-assembling.patch tty-signal-tty-locking.patch do_task_stat-dont-take-tty_mutex.patch do_acct_process-dont-take-tty_mutex.patch trivial-make-set_special_pids-static.patch sys_unshare-remove-a-broken-clone_sighand-code.patch sys_setpgid-eliminate-unnecessary-do_each_task_pidpidtype_pgid.patch session_of_pgrp-kill-unnecessary-do_each_task_pidpidtype_pgid.patch pidhash-temporary-debug-checks.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