Fix misplaced parentheses
Signed-off-by: Roel Kluin <roel.kluin at gmail.com>
---
fs/ocfs2/dlmglue.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c
index 81a4cd2..274529c 100644
--- a/fs/ocfs2/dlmglue.c
+++ b/fs/ocfs2/dlmglue.c
@@ -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);
}
Mark Fasheh
2011-Dec-12 23:00 UTC
[Ocfs2-devel] [PATCH] ocfs2: Misplaced parens in unlikley
On Mon, Dec 12, 2011 at 11:40:51PM +0100, roel wrote:> Fix misplaced parentheses > > Signed-off-by: Roel Kluin <roel.kluin at gmail.com>Looks reasonable to me. Signed-off-by: Mark Fasheh <mfasheh at suse.de> --Mark -- Mark Fasheh
Joel Becker
2012-Jul-04 07:31 UTC
[Ocfs2-devel] [PATCH] ocfs2: Misplaced parens in unlikley
On Mon, Dec 12, 2011 at 11:40:51PM +0100, roel wrote:> Fix misplaced parentheses > > Signed-off-by: Roel Kluin <roel.kluin at gmail.com>This patch is now (finally) part of the 'fixes' branch of ocfs2.git. Joel> --- > fs/ocfs2/dlmglue.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c > index 81a4cd2..274529c 100644 > --- a/fs/ocfs2/dlmglue.c > +++ b/fs/ocfs2/dlmglue.c > @@ -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); > }-- "There are only two ways to live your life. One is as though nothing is a miracle. The other is as though everything is a miracle." - Albert Einstein http://www.jlbec.org/ jlbec at evilplan.org