aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_aops.c
diff options
context:
space:
mode:
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 /*