lkml.org 
[lkml]   [2006]   [Jan]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    Subject[patch 1/4] net: Percpufy frequently used variables -- add percpu_counter_mod_bh
    Add percpu_counter_mod_bh for using these counters safely from
    both softirq and process context.

    Signed-off by: Pravin B. Shelar <pravins@calsoftinc.com>
    Signed-off by: Ravikiran G Thirumalai <kiran@scalex86.org>
    Signed-off by: Shai Fultheim <shai@scalex86.org>

    Index: linux-2.6.16-rc1/include/linux/percpu_counter.h
    ===================================================================
    --- linux-2.6.16-rc1.orig/include/linux/percpu_counter.h 2006-01-25 11:53:56.000000000 -0800
    +++ linux-2.6.16-rc1/include/linux/percpu_counter.h 2006-01-25 12:09:41.000000000 -0800
    @@ -11,6 +11,7 @@
    #include <linux/smp.h>
    #include <linux/threads.h>
    #include <linux/percpu.h>
    +#include <linux/interrupt.h>

    #ifdef CONFIG_SMP

    @@ -102,4 +103,11 @@ static inline void percpu_counter_dec(st
    percpu_counter_mod(fbc, -1);
    }

    +static inline void percpu_counter_mod_bh(struct percpu_counter *fbc, long amount)
    +{
    + local_bh_disable();
    + percpu_counter_mod(fbc, amount);
    + local_bh_enable();
    +}
    +
    #endif /* _LINUX_PERCPU_COUNTER_H */
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/
    \
     
     \ /
      Last update: 2006-01-26 20:01    [W:3.793 / U:0.296 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site