]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - fs/xfs/xfs_trans.c
Merge tag 'kvmarm-fixes-5.4-2' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmar...
[linux.git] / fs / xfs / xfs_trans.c
index d42a68d8313bdd5721f317a6c64858a67b13d6e6..f4795fdb7389c02266fdcdce071e36bcd99141e9 100644 (file)
@@ -90,7 +90,7 @@ xfs_trans_dup(
 
        trace_xfs_trans_dup(tp, _RET_IP_);
 
-       ntp = kmem_zone_zalloc(xfs_trans_zone, KM_SLEEP);
+       ntp = kmem_zone_zalloc(xfs_trans_zone, 0);
 
        /*
         * Initialize the new transaction structure.
@@ -263,7 +263,7 @@ xfs_trans_alloc(
         * GFP_NOFS allocation context so that we avoid lockdep false positives
         * by doing GFP_KERNEL allocations inside sb_start_intwrite().
         */
-       tp = kmem_zone_zalloc(xfs_trans_zone, KM_SLEEP);
+       tp = kmem_zone_zalloc(xfs_trans_zone, 0);
        if (!(flags & XFS_TRANS_NO_WRITECOUNT))
                sb_start_intwrite(mp->m_super);