Browse Source

ext4: use swap() in memswap()

Use kernel.h macro definition.

Thanks to Julia Lawall for Coccinelle scripting support.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Fabian Frederick 10 years ago
parent
commit
4b7e2db5c0
1 changed files with 1 additions and 4 deletions
  1. 1 4
      fs/ext4/ioctl.c

+ 1 - 4
fs/ext4/ioctl.c

@@ -31,14 +31,11 @@
 static void memswap(void *a, void *b, size_t len)
 static void memswap(void *a, void *b, size_t len)
 {
 {
 	unsigned char *ap, *bp;
 	unsigned char *ap, *bp;
-	unsigned char tmp;
 
 
 	ap = (unsigned char *)a;
 	ap = (unsigned char *)a;
 	bp = (unsigned char *)b;
 	bp = (unsigned char *)b;
 	while (len-- > 0) {
 	while (len-- > 0) {
-		tmp = *ap;
-		*ap = *bp;
-		*bp = tmp;
+		swap(*ap, *bp);
 		ap++;
 		ap++;
 		bp++;
 		bp++;
 	}
 	}