aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@sandeen.net>2006-09-28 11:05:46 +1000
committerTim Shimmin <tes@sgi.com>2006-09-28 11:05:46 +1000
commit7ae67d78e7518fba89e5f3a74bdcb68e48ae8858 (patch)
tree6582b0968c4c8554eeb16efb8d9b7018877671f1 /fs/xfs/linux-2.6
parent[XFS] Reduce endian flipping in alloc_btree, same as was done for (diff)
downloadlinux-dev-7ae67d78e7518fba89e5f3a74bdcb68e48ae8858.tar.xz
linux-dev-7ae67d78e7518fba89e5f3a74bdcb68e48ae8858.zip
[XFS] standardize on one sema init macro
One sema to rule them all, one sema to find them... SGI-PV: 907752 SGI-Modid: xfs-linux-melb:xfs-kern:26911a Signed-off-by: Eric Sandeen <sandeen@sandeen.net> Signed-off-by: Nathan Scott <nathans@sgi.com> Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6')
-rw-r--r--fs/xfs/linux-2.6/sema.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/xfs/linux-2.6/sema.h b/fs/xfs/linux-2.6/sema.h
index b25090094cca..2009e6d922ce 100644
--- a/fs/xfs/linux-2.6/sema.h
+++ b/fs/xfs/linux-2.6/sema.h
@@ -29,8 +29,6 @@
typedef struct semaphore sema_t;
-#define init_sema(sp, val, c, d) sema_init(sp, val)
-#define initsema(sp, val) sema_init(sp, val)
#define initnsema(sp, val, name) sema_init(sp, val)
#define psema(sp, b) down(sp)
#define vsema(sp) up(sp)