aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_linux.h
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2006-06-09 00:59:13 -0400
committerNathan Scott <nathans@sgi.com>2006-06-09 00:59:13 -0400
commit59c1b082f5fff8269565039600a2ef18d48649b5 (patch)
tree28093cd9a1b61267d76edef992a91e7cecf40b5e /fs/xfs/linux-2.6/xfs_linux.h
parente109007461cddfc80a908f0b015f4eeb485e1d85 (diff)
[XFS] Make the pflags test/set wrappers more legible for us mere humans.
SGI-PV: 953338 SGI-Modid: xfs-linux-melb:xfs-kern:26099a Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_linux.h')
-rw-r--r--fs/xfs/linux-2.6/xfs_linux.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/fs/xfs/linux-2.6/xfs_linux.h b/fs/xfs/linux-2.6/xfs_linux.h
index 7d15cb910275..e92853954111 100644
--- a/fs/xfs/linux-2.6/xfs_linux.h
+++ b/fs/xfs/linux-2.6/xfs_linux.h
@@ -136,13 +136,19 @@ BUFFER_FNS(PrivateStart, unwritten);
136#define xfs_rotorstep xfs_params.rotorstep.val 136#define xfs_rotorstep xfs_params.rotorstep.val
137#define xfs_inherit_nodefrag xfs_params.inherit_nodfrg.val 137#define xfs_inherit_nodefrag xfs_params.inherit_nodfrg.val
138 138
139#ifndef raw_smp_processor_id 139#define current_cpu() (raw_smp_processor_id())
140#define raw_smp_processor_id() smp_processor_id()
141#endif
142#define current_cpu() raw_smp_processor_id()
143#define current_pid() (current->pid) 140#define current_pid() (current->pid)
144#define current_fsuid(cred) (current->fsuid) 141#define current_fsuid(cred) (current->fsuid)
145#define current_fsgid(cred) (current->fsgid) 142#define current_fsgid(cred) (current->fsgid)
143#define current_set_flags(f) (current->flags |= (f))
144#define current_test_flags(f) (current->flags & (f))
145#define current_clear_flags(f) (current->flags & ~(f))
146#define current_set_flags_nested(sp, f) \
147 (*(sp) = current->flags, current->flags |= (f))
148#define current_clear_flags_nested(sp, f) \
149 (*(sp) = current->flags, current->flags &= ~(f))
150#define current_restore_flags_nested(sp, f) \
151 (current->flags = ((current->flags & ~(f)) | (*(sp) & (f))))
146 152
147#define NBPP PAGE_SIZE 153#define NBPP PAGE_SIZE
148#define DPPSHFT (PAGE_SHIFT - 9) 154#define DPPSHFT (PAGE_SHIFT - 9)