The patch titled Subject: kernel/smp.c: use '|=' for csd_lock has been added to the -mm tree. Its filename is kernel-smpc-use-=-for-csd_lock.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: liguang <lig.fnst@xxxxxxxxxxxxxx> Subject: kernel/smp.c: use '|=' for csd_lock csd_lock() uses assignment to data->flags rather than |=. That is not buggy at present because only one bit (CSD_FLAG_LOCK) is defined in call_single_data.flags. But it will become buggy if we later add another flag, so fix it now. Signed-off-by: liguang <lig.fnst@xxxxxxxxxxxxxx> Cc: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx> Cc: Oleg Nesterov <oleg@xxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/smp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/smp.c~kernel-smpc-use-=-for-csd_lock kernel/smp.c --- a/kernel/smp.c~kernel-smpc-use-=-for-csd_lock +++ a/kernel/smp.c @@ -110,7 +110,7 @@ static void csd_lock_wait(struct call_si static void csd_lock(struct call_single_data *data) { csd_lock_wait(data); - data->flags = CSD_FLAG_LOCK; + data->flags |= CSD_FLAG_LOCK; /* * prevent CPU from reordering the above assignment _ Patches currently in -mm which might be from lig.fnst@xxxxxxxxxxxxxx are linux-next.patch kernel-smpc-use-=-for-csd_lock.patch semaphore-give-an-unlikely-for-downs-timeout.patch semaphore-boolize-semaphore_waiters-up.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