From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 03F17C43217 for ; Mon, 7 Nov 2022 00:02:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230149AbiKGACR (ORCPT ); Sun, 6 Nov 2022 19:02:17 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49348 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230080AbiKGACQ (ORCPT ); Sun, 6 Nov 2022 19:02:16 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7A3A1D135 for ; Sun, 6 Nov 2022 16:02:12 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 35DB1B80D6B for ; Mon, 7 Nov 2022 00:02:11 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BC57AC433C1; Mon, 7 Nov 2022 00:02:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1667779329; bh=FxQoZQ/I7j76J12qiAeMclBelgKO+xgnI3qukWUAzUc=; h=Date:To:From:Subject:From; b=CgphT02Te6CJsC8wppDjvtVRmSA8RR+YHQz1KImGMvfNoO99E7wfYfCePZmBLLBf2 r/df1EpJPQ+Pc80cnJJUMixMUUEV4M4r8JvE6thzMEycONr90j7ypRdfD7DUoorJC5 WQx2xVrWub2YS1myoVtr2lK1iZ2yJUiElNat8p/s= Date: Sun, 06 Nov 2022 16:02:09 -0800 To: mm-commits@vger.kernel.org, wuqiang.matt@bytedance.com, sander@svanheule.net, rostedt@goodmis.org, peterz@infradead.org, naveen.n.rao@linux.ibm.com, mhiramat@kernel.org, jpoimboe@kernel.org, ebiggers@google.com, davem@davemloft.net, dan.j.williams@intel.com, anil.s.keshavamurthy@intel.com, akpm@linux-foundation.org, akpm@linux-foundation.org From: Andrew Morton Subject: [folded-merged] kprobeslib-kretprobe-scalability-improvement-fix.patch removed from -mm tree Message-Id: <20221107000209.BC57AC433C1@smtp.kernel.org> Precedence: bulk Reply-To: linux-kernel@vger.kernel.org List-ID: X-Mailing-List: mm-commits@vger.kernel.org The quilt patch titled Subject: kprobeslib-kretprobe-scalability-improvement-fix has been removed from the -mm tree. Its filename was kprobeslib-kretprobe-scalability-improvement-fix.patch This patch was dropped because it was folded into kprobeslib-kretprobe-scalability-improvement.patch ------------------------------------------------------ From: Andrew Morton Subject: kprobeslib-kretprobe-scalability-improvement-fix Date: Wed Nov 2 03:25:47 PM PDT 2022 fix build with -Werror=designated-init lib/test_objpool.c:509:10: error: positional initialization of field in 'struct' declared with 'designated_init' attribute [-Werror=designated-init] 509 | {ot_init_sync_m0, ot_fini_sync_m0}, | ^~~~~~~~~~~~~~~ lib/test_objpool.c:509:10: note: (near initialization for 'g_ot_sync_ops[0]') lib/test_objpool.c:509:10: error: invalid initializer lib/test_objpool.c:509:10: note: (near initialization for 'g_ot_sync_ops[0].') Cc: Anil S Keshavamurthy Cc: Dan Williams Cc: David S. Miller Cc: Eric Biggers Cc: Josh Poimboeuf Cc: Masami Hiramatsu (Google) Cc: "Naveen N. Rao" Cc: Peter Zijlstra Cc: Sander Vanheule Cc: Steven Rostedt (Google) Cc: wuqiang Signed-off-by: Andrew Morton --- lib/test_objpool.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) --- a/lib/test_objpool.c~kprobeslib-kretprobe-scalability-improvement-fix +++ a/lib/test_objpool.c @@ -506,10 +506,10 @@ struct { struct ot_context * (*init)(void); void (*fini)(struct ot_context *sop); } g_ot_sync_ops[4] = { - {ot_init_sync_m0, ot_fini_sync_m0}, - {ot_init_sync_m1, ot_fini_sync_m1}, - {ot_init_sync_m2, ot_fini_sync_m2}, - {ot_init_sync_m3, ot_fini_sync_m3}, + {.init = ot_init_sync_m0, .fini = ot_fini_sync_m0}, + {.init = ot_init_sync_m1, .fini = ot_fini_sync_m1}, + {.init = ot_init_sync_m2, .fini = ot_fini_sync_m2}, + {.init = ot_init_sync_m3, .fini = ot_fini_sync_m3}, }; /* @@ -810,10 +810,10 @@ struct { struct ot_context * (*init)(void); void (*fini)(struct ot_context *sop); } g_ot_async_ops[4] = { - {ot_init_async_m0, ot_fini_async}, - {ot_init_async_m1, ot_fini_async}, - {ot_init_async_m2, ot_fini_async}, - {ot_init_async_m3, ot_fini_async}, + {.init = ot_init_async_m0, .fini = ot_fini_async}, + {.init = ot_init_async_m1, .fini = ot_fini_async}, + {.init = ot_init_async_m2, .fini = ot_fini_async}, + {.init = ot_init_async_m3, .fini = ot_fini_async}, }; static void ot_nod_recycle(struct ot_node *on, struct objpool_head *pool, _ Patches currently in -mm which might be from akpm@linux-foundation.org are maple_tree-reorganize-testing-to-restore-module-testing-fix.patch maple_tree-reorganize-testing-to-restore-module-testing-fix-2.patch mm-memremap_pages-replace-zone_device_page_init-with-pgmap_request_folios-fix.patch vmalloc-add-reviewers-for-vmalloc-code-checkpatch-fixes.patch mm-memremap-introduce-pgmap_request_folio-using-pgmap-offsets-fix.patch mm-memremap-introduce-pgmap_request_folio-using-pgmap-offsets-fix-2.patch mm-gup-remove-foll_migration-fix.patch mm-use-stack_depot-for-recording-kmemleaks-backtrace-checkpatch-fixes.patch mm-use-stack_depot-for-recording-kmemleaks-backtrace-fix.patch mm-use-stack_depot-for-recording-kmemleaks-backtrace-v3-fix.patch kasan-allow-sampling-page_alloc-allocations-for-hw_tags-fix.patch mm-hugetlb-convert-move_hugetlb_state-to-folios-fix.patch powerpc-ptrace-user_regset_copyin_ignore-always-returns-0-fix.patch minmax-sanity-check-constant-bounds-when-clamping-checkpatch-fixes.patch minmax-sanity-check-constant-bounds-when-clamping-checkpatch-fixes-fix.patch proc-report-open-files-as-size-in-stat-for-proc-pid-fd-v3-fix.patch kprobeslib-kretprobe-scalability-improvement.patch kprobeslib-kretprobe-scalability-improvement-fix-2.patch