+ lib-percpu_counterc-__this_cpu_write-doesnt-need-to-be-protected-by-spinlock.patch added to -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Subject: + lib-percpu_counterc-__this_cpu_write-doesnt-need-to-be-protected-by-spinlock.patch added to -mm tree
To: fan.du@xxxxxxxxxxxxx
From: akpm@xxxxxxxxxxxxxxxxxxxx
Date: Mon, 01 Jul 2013 16:07:48 -0700


The patch titled
     Subject: lib/percpu_counter.c: __this_cpu_write() doesn't need to be protected by spinlock
has been added to the -mm tree.  Its filename is
     lib-percpu_counterc-__this_cpu_write-doesnt-need-to-be-protected-by-spinlock.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/lib-percpu_counterc-__this_cpu_write-doesnt-need-to-be-protected-by-spinlock.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/lib-percpu_counterc-__this_cpu_write-doesnt-need-to-be-protected-by-spinlock.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: Fan Du <fan.du@xxxxxxxxxxxxx>
Subject: lib/percpu_counter.c: __this_cpu_write() doesn't need to be protected by spinlock

__this_cpu_write doesn't need to be protected by spinlock, AS we are doing
per cpu write with preempt disabled.  And another reason to remove
__this_cpu_write outside of spinlock: __percpu_counter_sum is not an
accurate counter.

Signed-off-by: Fan Du <fan.du@xxxxxxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 lib/percpu_counter.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN lib/percpu_counter.c~lib-percpu_counterc-__this_cpu_write-doesnt-need-to-be-protected-by-spinlock lib/percpu_counter.c
--- a/lib/percpu_counter.c~lib-percpu_counterc-__this_cpu_write-doesnt-need-to-be-protected-by-spinlock
+++ a/lib/percpu_counter.c
@@ -80,8 +80,8 @@ void __percpu_counter_add(struct percpu_
 	if (count >= batch || count <= -batch) {
 		raw_spin_lock(&fbc->lock);
 		fbc->count += count;
-		__this_cpu_write(*fbc->counters, 0);
 		raw_spin_unlock(&fbc->lock);
+		__this_cpu_write(*fbc->counters, 0);
 	} else {
 		__this_cpu_write(*fbc->counters, count);
 	}
_

Patches currently in -mm which might be from fan.du@xxxxxxxxxxxxx are

linux-next.patch
lib-percpu_counterc-__this_cpu_write-doesnt-need-to-be-protected-by-spinlock.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




[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux