summaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/refcounttree.c
diff options
context:
space:
mode:
authorFabian Frederick2015-06-25 01:55:29 +0200
committerLinus Torvalds2015-06-25 02:49:40 +0200
commita612543fd189d5694a1b0d526369fab8827f7045 (patch)
tree488b7ca294d4e818725713b79d3b04f643f349f2 /fs/ocfs2/refcounttree.c
parentocfs2: use swap() in dx_leaf_sort_swap() (diff)
downloadkernel-qcow2-linux-a612543fd189d5694a1b0d526369fab8827f7045.tar.gz
kernel-qcow2-linux-a612543fd189d5694a1b0d526369fab8827f7045.tar.xz
kernel-qcow2-linux-a612543fd189d5694a1b0d526369fab8827f7045.zip
ocfs2: use swap() in swap_refcount_rec()
Use kernel.h macro definition. Thanks to Julia Lawall for Coccinelle scripting support. Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Julia Lawall <julia.lawall@lip6.fr> Cc: Mark Fasheh <mfasheh@suse.com> Cc: Joel Becker <jlbec@evilplan.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ocfs2/refcounttree.c')
-rw-r--r--fs/ocfs2/refcounttree.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/ocfs2/refcounttree.c b/fs/ocfs2/refcounttree.c
index d8c6af101f3f..b69dd14c0b9b 100644
--- a/fs/ocfs2/refcounttree.c
+++ b/fs/ocfs2/refcounttree.c
@@ -1406,11 +1406,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);
}
/*