From: Andrew Morton <akpm@linux-foundation.org>
To: mm-commits@vger.kernel.org, walken@google.com,
rdunlap@xenotime.net, mingo@elte.hu, dhowells@redhat.com,
bunk@stusta.de, akpm@linux-foundation.org,
akpm@linux-foundation.org
Subject: [folded-merged] mutex-subsystem-synchro-test-module-fix.patch removed from -mm tree
Date: Wed, 30 Mar 2022 21:39:53 -0700 [thread overview]
Message-ID: <20220331043954.7826CC340EE@smtp.kernel.org> (raw)
The patch titled
Subject: mutex-subsystem-synchro-test-module-fix
has been removed from the -mm tree. Its filename was
mutex-subsystem-synchro-test-module-fix.patch
This patch was dropped because it was folded into mutex-subsystem-synchro-test-module.patch
------------------------------------------------------
From: Andrew Morton <akpm@linux-foundation.org>
Subject: mutex-subsystem-synchro-test-module-fix
Cc: Adrian Bunk <bunk@stusta.de>
Cc: David Howells <dhowells@redhat.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Michel Lespinasse <walken@google.com>
Cc: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
kernel/synchro-test.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
--- a/kernel/synchro-test.c~mutex-subsystem-synchro-test-module-fix
+++ a/kernel/synchro-test.c
@@ -264,7 +264,7 @@ static int spinlocker(void *arg)
if (verbose >= 2)
printk("%s: done\n", current->comm);
- complete_and_exit(&sp_comp[N], 0);
+ kthread_complete_and_exit(&sp_comp[N], 0);
}
static int mutexer(void *arg)
@@ -285,7 +285,7 @@ static int mutexer(void *arg)
if (verbose >= 2)
printk("%s: done\n", current->comm);
- complete_and_exit(&mx_comp[N], 0);
+ kthread_complete_and_exit(&mx_comp[N], 0);
}
static int semaphorer(void *arg)
@@ -306,7 +306,7 @@ static int semaphorer(void *arg)
if (verbose >= 2)
printk("%s: done\n", current->comm);
- complete_and_exit(&sm_comp[N], 0);
+ kthread_complete_and_exit(&sm_comp[N], 0);
}
static int reader(void *arg)
@@ -329,7 +329,7 @@ static int reader(void *arg)
if (verbose >= 2)
printk("%s: done\n", current->comm);
- complete_and_exit(&rd_comp[N], 0);
+ kthread_complete_and_exit(&rd_comp[N], 0);
}
static int writer(void *arg)
@@ -352,7 +352,7 @@ static int writer(void *arg)
if (verbose >= 2)
printk("%s: done\n", current->comm);
- complete_and_exit(&wr_comp[N], 0);
+ kthread_complete_and_exit(&wr_comp[N], 0);
}
static int downgrader(void *arg)
@@ -380,7 +380,7 @@ static int downgrader(void *arg)
if (verbose >= 2)
printk("%s: done\n", current->comm);
- complete_and_exit(&dg_comp[N], 0);
+ kthread_complete_and_exit(&dg_comp[N], 0);
}
static void stop_test(struct timer_list *t)
_
Patches currently in -mm which might be from akpm@linux-foundation.org are
mm.patch
mm-shmem-make-shmem_init-return-void-fix.patch
ksm-count-ksm-merging-pages-for-each-process-fix.patch
mm-memory_hotplug-refactor-hotadd_init_pgdat-and-try_online_node-checkpatch-fixes.patch
proc-fix-dentry-inode-overinstantiating-under-proc-pid-net-checkpatch-fixes.patch
add-fat-messages-to-printk-index-checkpatch-fixes.patch
linux-next-rejects.patch
mm-oom_killc-fix-vm_oom_kill_table-ifdeffery.patch
mutex-subsystem-synchro-test-module.patch
kernel-forkc-export-kernel_thread-to-modules.patch
next reply other threads:[~2022-03-31 4:40 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-31 4:39 Andrew Morton [this message]
-- strict thread matches above, loose matches on Subject: below --
2013-01-02 22:36 [folded-merged] mutex-subsystem-synchro-test-module-fix.patch removed from -mm tree akpm
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=20220331043954.7826CC340EE@smtp.kernel.org \
--to=akpm@linux-foundation.org \
--cc=bunk@stusta.de \
--cc=dhowells@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=mm-commits@vger.kernel.org \
--cc=rdunlap@xenotime.net \
--cc=walken@google.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.