aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_aops.c
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_aops.c
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_aops.c')
-rw-r--r--fs/xfs/linux-2.6/xfs_aops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/linux-2.6/xfs_aops.c b/fs/xfs/linux-2.6/xfs_aops.c
index 1fcdc0abda6e..5835e699a7fc 100644
--- a/fs/xfs/linux-2.6/xfs_aops.c
+++ b/fs/xfs/linux-2.6/xfs_aops.c
@@ -1126,7 +1126,7 @@ xfs_vm_writepage(
1126 * then mark the page dirty again and leave the page 1126 * then mark the page dirty again and leave the page
1127 * as is. 1127 * as is.
1128 */ 1128 */
1129 if (PFLAGS_TEST_FSTRANS() && need_trans) 1129 if (current_test_flags(PF_FSTRANS) && need_trans)
1130 goto out_fail; 1130 goto out_fail;
1131 1131
1132 /* 1132 /*
@@ -1203,7 +1203,7 @@ xfs_vm_releasepage(
1203 /* If we are already inside a transaction or the thread cannot 1203 /* If we are already inside a transaction or the thread cannot
1204 * do I/O, we cannot release this page. 1204 * do I/O, we cannot release this page.
1205 */ 1205 */
1206 if (PFLAGS_TEST_FSTRANS()) 1206 if (current_test_flags(PF_FSTRANS))
1207 return 0; 1207 return 0;
1208 1208
1209 /* 1209 /*