All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
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
Subject: [folded-merged] kprobeslib-kretprobe-scalability-improvement-fix.patch removed from -mm tree
Date: Sun, 06 Nov 2022 16:02:09 -0800	[thread overview]
Message-ID: <20221107000209.BC57AC433C1@smtp.kernel.org> (raw)


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 <akpm@linux-foundation.org>
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].<anonymous>')

Cc: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Eric Biggers <ebiggers@google.com>
Cc: Josh Poimboeuf <jpoimboe@kernel.org>
Cc: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Cc: "Naveen N. Rao" <naveen.n.rao@linux.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Sander Vanheule <sander@svanheule.net>
Cc: Steven Rostedt (Google) <rostedt@goodmis.org>
Cc: wuqiang <wuqiang.matt@bytedance.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 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


                 reply	other threads:[~2022-11-07  0:02 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221107000209.BC57AC433C1@smtp.kernel.org \
    --to=akpm@linux-foundation.org \
    --cc=anil.s.keshavamurthy@intel.com \
    --cc=dan.j.williams@intel.com \
    --cc=davem@davemloft.net \
    --cc=ebiggers@google.com \
    --cc=jpoimboe@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mhiramat@kernel.org \
    --cc=mm-commits@vger.kernel.org \
    --cc=naveen.n.rao@linux.ibm.com \
    --cc=peterz@infradead.org \
    --cc=rostedt@goodmis.org \
    --cc=sander@svanheule.net \
    --cc=wuqiang.matt@bytedance.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.