1. 07 10月, 2015 1 次提交
    • O
      rcu: Create rcu_sync infrastructure · cc44ca84
      Oleg Nesterov 提交于
      The rcu_sync infrastructure can be thought of as infrastructure to be
      used to implement reader-writer primitives having extremely lightweight
      readers during times when there are no writers.  The first use is in
      the percpu_rwsem used by the VFS subsystem.
      
      This infrastructure is functionally equivalent to
      
              struct rcu_sync_struct {
                      atomic_t counter;
              };
      
      	/* Check possibility of fast-path read-side operations. */
              static inline bool rcu_sync_is_idle(struct rcu_sync_struct *rss)
              {
                      return atomic_read(&rss->counter) == 0;
              }
      
      	/* Tell readers to use slowpaths. */
              static inline void rcu_sync_enter(struct rcu_sync_struct *rss)
              {
                      atomic_inc(&rss->counter);
                      synchronize_sched();
              }
      
      	/* Allow readers to once again use fastpaths. */
              static inline void rcu_sync_exit(struct rcu_sync_struct *rss)
              {
                      synchronize_sched();
                      atomic_dec(&rss->counter);
              }
      
      The main difference is that it records the state and only calls
      synchronize_sched() if required.  At least some of the calls to
      synchronize_sched() will be optimized away when rcu_sync_enter() and
      rcu_sync_exit() are invoked repeatedly in quick succession.
      Signed-off-by: NOleg Nesterov <oleg@redhat.com>
      Signed-off-by: NPeter Zijlstra (Intel) <peterz@infradead.org>
      Signed-off-by: NPaul E. McKenney <paulmck@linux.vnet.ibm.com>
      Reviewed-by: NJosh Triplett <josh@joshtriplett.org>
      cc44ca84
  2. 07 1月, 2015 1 次提交
    • P
      rcu: Make SRCU optional by using CONFIG_SRCU · 83fe27ea
      Pranith Kumar 提交于
      SRCU is not necessary to be compiled by default in all cases. For tinification
      efforts not compiling SRCU unless necessary is desirable.
      
      The current patch tries to make compiling SRCU optional by introducing a new
      Kconfig option CONFIG_SRCU which is selected when any of the components making
      use of SRCU are selected.
      
      If we do not select CONFIG_SRCU, srcu.o will not be compiled at all.
      
         text    data     bss     dec     hex filename
         2007       0       0    2007     7d7 kernel/rcu/srcu.o
      
      Size of arch/powerpc/boot/zImage changes from
      
         text    data     bss     dec     hex filename
       831552   64180   23944  919676   e087c arch/powerpc/boot/zImage : before
       829504   64180   23952  917636   e0084 arch/powerpc/boot/zImage : after
      
      so the savings are about ~2000 bytes.
      Signed-off-by: NPranith Kumar <bobby.prani@gmail.com>
      CC: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
      CC: Josh Triplett <josh@joshtriplett.org>
      CC: Lai Jiangshan <laijs@cn.fujitsu.com>
      Signed-off-by: NPaul E. McKenney <paulmck@linux.vnet.ibm.com>
      [ paulmck: resolve conflict due to removal of arch/ia64/kvm/Kconfig. ]
      83fe27ea
  3. 30 10月, 2014 1 次提交
  4. 24 2月, 2014 1 次提交
  5. 16 10月, 2013 1 次提交