The patch titled Subject: lib-vsprintf-add-%pcnr-format-specifiers-for-clocks-fix has been removed from the -mm tree. Its filename was lib-vsprintf-add-%pcnr-format-specifiers-for-clocks-fix.patch This patch was dropped because it was folded into lib-vsprintf-add-%pcnr-format-specifiers-for-clocks.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: lib-vsprintf-add-%pcnr-format-specifiers-for-clocks-fix omit code if !CONFIG_HAVE_CLK Cc: Geert Uytterhoeven <geert+renesas@xxxxxxxxx> Cc: Jonathan Corbet <corbet@xxxxxxx> Cc: Mike Turquette <mturquette@xxxxxxxxxx> Cc: Stephen Boyd <sboyd@xxxxxxxxxxxxxx> Cc: Tetsuo Handa <penguin-kernel@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/vsprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN lib/vsprintf.c~lib-vsprintf-add-%pcnr-format-specifiers-for-clocks-fix lib/vsprintf.c --- a/lib/vsprintf.c~lib-vsprintf-add-%pcnr-format-specifiers-for-clocks-fix +++ a/lib/vsprintf.c @@ -1320,7 +1320,7 @@ static noinline_for_stack char *clock(char *buf, char *end, struct clk *clk, struct printf_spec spec, const char *fmt) { - if (!clk) + if (!IS_ENABLED(CONFIG_HAVE_CLK) || !clk) return string(buf, end, NULL, spec); switch (fmt[1]) { _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch mm-memory-failurec-define-page-types-for-action_result-in-one-place.patch document-interaction-between-compaction-and-the-unevictable-lru.patch mm-memcg-sync-allocation-and-memcg-charge-gfp-flags-for-thp.patch mm-vmalloc-occupy-newly-allocated-vmap-block-just-after-allocation.patch mm-mmapc-use-while-instead-of-ifgoto.patch mm-hugetlb-introduce-pagehugeactive-flag.patch mm-hugetlb-cleanup-using-pagehugeactive-flag.patch mm-memblock-add-debug-output-for-the-memblock_add.patch mm-uninline-and-cleanup-page-mapping-related-helpers.patch mm-cma-add-functions-to-get-region-pages-counters.patch mm-cma_debugc-remove-blank-lines-before-define_simple_attribute.patch mm-memory-print-also-a_ops-readpage-in-print_bad_pte.patch mm-compactionc-fix-suitable_migration_target-unused-warning.patch zsmalloc-support-compaction.patch proc-pid-status-show-all-sets-of-pid-according-to-ns.patch kernel-conditionally-support-non-root-users-groups-and-capabilities.patch lib-vsprintf-add-%pcnr-format-specifiers-for-clocks.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