瀏覽代碼

rcu: Fix misprint in srcu_funnel_exp_start

The srcu_funnel_exp_start() function checks to see if the srcu_struct
structure's expedited grace period counter needs updating to reflect a
newly arrived request for an expedited SRCU grace period.  Unfortunately,
the check is backwards, so this commit reverses the sense of the test.

Signed-off-by: Ildar Ismagilov <devix84@gmail.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Ildar Ismagilov 7 年之前
父節點
當前提交
274afd6bfa
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      kernel/rcu/srcutree.c

+ 1 - 1
kernel/rcu/srcutree.c

@@ -626,7 +626,7 @@ static void srcu_funnel_exp_start(struct srcu_struct *sp, struct srcu_node *snp,
 		spin_unlock_irqrestore_rcu_node(snp, flags);
 		spin_unlock_irqrestore_rcu_node(snp, flags);
 	}
 	}
 	spin_lock_irqsave_rcu_node(sp, flags);
 	spin_lock_irqsave_rcu_node(sp, flags);
-	if (!ULONG_CMP_LT(sp->srcu_gp_seq_needed_exp, s))
+	if (ULONG_CMP_LT(sp->srcu_gp_seq_needed_exp, s))
 		sp->srcu_gp_seq_needed_exp = s;
 		sp->srcu_gp_seq_needed_exp = s;
 	spin_unlock_irqrestore_rcu_node(sp, flags);
 	spin_unlock_irqrestore_rcu_node(sp, flags);
 }
 }