]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - fs/xfs/xfs_rtalloc.c
Merge tag 'drm-misc-fixes-2019-11-07-1' of git://anongit.freedesktop.org/drm/drm...
[linux.git] / fs / xfs / xfs_rtalloc.c
index 5fa4db3c3e320b39277ad576946a1cc934b4ea6e..4a48a8c75b4f75a98d2a2c858a00d657195ca75f 100644 (file)
@@ -865,7 +865,7 @@ xfs_alloc_rsum_cache(
         * lower bound on the minimum level with any free extents. We can
         * continue without the cache if it couldn't be allocated.
         */
-       mp->m_rsum_cache = kmem_zalloc_large(rbmblocks, KM_SLEEP);
+       mp->m_rsum_cache = kmem_zalloc_large(rbmblocks, 0);
        if (!mp->m_rsum_cache)
                xfs_warn(mp, "could not allocate realtime summary cache");
 }
@@ -963,7 +963,7 @@ xfs_growfs_rt(
        /*
         * Allocate a new (fake) mount/sb.
         */
-       nmp = kmem_alloc(sizeof(*nmp), KM_SLEEP);
+       nmp = kmem_alloc(sizeof(*nmp), 0);
        /*
         * Loop over the bitmap blocks.
         * We will do everything one bitmap block at a time.