Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16865b7c authored by roel's avatar roel Committed by Joel Becker
Browse files

ocfs2: Misplaced parens in unlikley



Fix misplaced parentheses

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarJoel Becker <jlbec@evilplan.org>
parent 3e5d3c35
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -456,7 +456,7 @@ static void ocfs2_update_lock_stats(struct ocfs2_lock_res *res, int level,
	stats->ls_gets++;
	stats->ls_total += ktime_to_ns(kt);
	/* overflow */
	if (unlikely(stats->ls_gets) == 0) {
	if (unlikely(stats->ls_gets == 0)) {
		stats->ls_gets++;
		stats->ls_total = ktime_to_ns(kt);
	}