diff --git a/[refs] b/[refs] index f28510c15f31..13160f8f2c0d 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 34d7c2b38d124219b7034356716e3455c439acd3 +refs/heads/master: dd0078f4f04d939950a792c493d7d97d7ce663b8 diff --git a/trunk/include/linux/rcupreempt.h b/trunk/include/linux/rcupreempt.h index addb5e282f39..3e05c09b54a2 100644 --- a/trunk/include/linux/rcupreempt.h +++ b/trunk/include/linux/rcupreempt.h @@ -57,7 +57,13 @@ static inline void rcu_qsctr_inc(int cpu) rdssp->sched_qs++; } #define rcu_bh_qsctr_inc(cpu) -#define call_rcu_bh(head, rcu) call_rcu(head, rcu) + +/* + * Someone might want to pass call_rcu_bh as a function pointer. + * So this needs to just be a rename and not a macro function. + * (no parentheses) + */ +#define call_rcu_bh call_rcu /** * call_rcu_sched - Queue RCU callback for invocation after sched grace period.