The patch titled Subject: mm-zsmalloc-add-freeable-column-to-pool-stat-fix has been added to the -mm tree. Its filename is mm-zsmalloc-add-freeable-column-to-pool-stat-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-zsmalloc-add-freeable-column-to-pool-stat-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-zsmalloc-add-freeable-column-to-pool-stat-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 *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Sergey Senozhatsky <sergey.senozhatsky.work@xxxxxxxxx> Subject: mm-zsmalloc-add-freeable-column-to-pool-stat-fix looks like I failed to squash patches on my side properly and `total_freeable' is not exactly aligned with the `freeable' column name (off by one char %7 -> %8). Cc: Minchan Kim <minchan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/zsmalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/zsmalloc.c~mm-zsmalloc-add-freeable-column-to-pool-stat-fix mm/zsmalloc.c --- a/mm/zsmalloc.c~mm-zsmalloc-add-freeable-column-to-pool-stat-fix +++ a/mm/zsmalloc.c @@ -547,7 +547,7 @@ static int zs_stats_size_show(struct seq } seq_puts(s, "\n"); - seq_printf(s, " %5s %5s %11lu %12lu %13lu %10lu %10lu %16s %7lu\n", + seq_printf(s, " %5s %5s %11lu %12lu %13lu %10lu %10lu %16s %8lu\n", "Total", "", total_class_almost_full, total_class_almost_empty, total_objs, total_used_objs, total_pages, "", total_freeable); _ Patches currently in -mm which might be from sergey.senozhatsky.work@xxxxxxxxx are mm-zsmalloc-add-freeable-column-to-pool-stat-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