rcu: Remove unused 'cpu' in rcu_virt_note_context_switch()
authorZeng Heng <zengheng4@huawei.com>
Thu, 15 Sep 2022 08:38:24 +0000 (16:38 +0800)
committerPaul E. McKenney <paulmck@kernel.org>
Tue, 18 Oct 2022 21:59:57 +0000 (14:59 -0700)
This commit removes the unused function argument 'cpu'.  This does not
change functionality, but might save a cycle or two.

Signed-off-by: Zeng Heng <zengheng4@huawei.com>
Acked-by: Mukesh Ojha <quic_mojha@quicinc.com>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
include/linux/kvm_host.h
include/linux/rcutiny.h
include/linux/rcutree.h

index 32f259f..381b92d 100644 (file)
@@ -416,7 +416,7 @@ static __always_inline void guest_context_enter_irqoff(void)
         */
        if (!context_tracking_guest_enter()) {
                instrumentation_begin();
-               rcu_virt_note_context_switch(smp_processor_id());
+               rcu_virt_note_context_switch();
                instrumentation_end();
        }
 }
index 768196a..9bc025a 100644 (file)
@@ -142,7 +142,7 @@ static inline int rcu_needs_cpu(void)
  * Take advantage of the fact that there is only one CPU, which
  * allows us to ignore virtualization-based context switches.
  */
-static inline void rcu_virt_note_context_switch(int cpu) { }
+static inline void rcu_virt_note_context_switch(void) { }
 static inline void rcu_cpu_stall_reset(void) { }
 static inline int rcu_jiffies_till_stall_check(void) { return 21 * HZ; }
 static inline void rcu_irq_exit_check_preempt(void) { }
index 5efb514..7079538 100644 (file)
@@ -27,7 +27,7 @@ void rcu_cpu_stall_reset(void);
  * wrapper around rcu_note_context_switch(), which allows TINY_RCU
  * to save a few bytes. The caller must have disabled interrupts.
  */
-static inline void rcu_virt_note_context_switch(int cpu)
+static inline void rcu_virt_note_context_switch(void)
 {
        rcu_note_context_switch(false);
 }