[PATCH 1/1 linux-next] ocfs2: use swap() in swap_refcount_rec()

From: Fabian Frederick
Date: Fri Jun 12 2015 - 13:01:31 EST


Use kernel.h macro definition.

Thanks to Julia Lawall for Coccinelle scripting support.

Signed-off-by: Fabian Frederick <fabf@xxxxxxxxx>
---
fs/ocfs2/refcounttree.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/fs/ocfs2/refcounttree.c b/fs/ocfs2/refcounttree.c
index 6f66268..c8e1dce 100644
--- a/fs/ocfs2/refcounttree.c
+++ b/fs/ocfs2/refcounttree.c
@@ -1402,11 +1402,9 @@ static int cmp_refcount_rec_by_cpos(const void *a, const void *b)

static void swap_refcount_rec(void *a, void *b, int size)
{
- struct ocfs2_refcount_rec *l = a, *r = b, tmp;
+ struct ocfs2_refcount_rec *l = a, *r = b;

- tmp = *l;
- *l = *r;
- *r = tmp;
+ swap(*l, *r);
}

/*
--
2.4.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/