xfs: standardize GFP flags usage in online scrub
authorDarrick J. Wong <djwong@kernel.org>
Mon, 7 Nov 2022 01:03:15 +0000 (17:03 -0800)
committerDarrick J. Wong <djwong@kernel.org>
Wed, 16 Nov 2022 23:25:01 +0000 (15:25 -0800)
Memory allocation usage is the same throughout online fsck -- we want
kernel memory, we have to be able to back out if we can't allocate
memory, and we don't want to spray dmesg with memory allocation failure
reports.  Standardize the GFP flag usage and document these requirements.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
fs/xfs/scrub/agheader.c
fs/xfs/scrub/attr.c
fs/xfs/scrub/scrub.h
fs/xfs/scrub/symlink.c

index af284ba..4dd52b1 100644 (file)
@@ -737,7 +737,7 @@ xchk_agfl(
                goto out;
        }
        sai.entries = kvcalloc(sai.agflcount, sizeof(xfs_agblock_t),
-                       GFP_KERNEL | __GFP_RETRY_MAYFAIL);
+                              XCHK_GFP_FLAGS);
        if (!sai.entries) {
                error = -ENOMEM;
                goto out;
index b6f0c9f..11b2593 100644 (file)
@@ -79,7 +79,8 @@ xchk_setup_xattr(
         * without the inode lock held, which means we can sleep.
         */
        if (sc->flags & XCHK_TRY_HARDER) {
-               error = xchk_setup_xattr_buf(sc, XATTR_SIZE_MAX, GFP_KERNEL);
+               error = xchk_setup_xattr_buf(sc, XATTR_SIZE_MAX,
+                               XCHK_GFP_FLAGS);
                if (error)
                        return error;
        }
@@ -138,8 +139,7 @@ xchk_xattr_listent(
         * doesn't work, we overload the seen_enough variable to convey
         * the error message back to the main scrub function.
         */
-       error = xchk_setup_xattr_buf(sx->sc, valuelen,
-                       GFP_KERNEL | __GFP_RETRY_MAYFAIL);
+       error = xchk_setup_xattr_buf(sx->sc, valuelen, XCHK_GFP_FLAGS);
        if (error == -ENOMEM)
                error = -EDEADLOCK;
        if (error) {
@@ -324,8 +324,7 @@ xchk_xattr_block(
                return 0;
 
        /* Allocate memory for block usage checking. */
-       error = xchk_setup_xattr_buf(ds->sc, 0,
-                       GFP_KERNEL | __GFP_RETRY_MAYFAIL);
+       error = xchk_setup_xattr_buf(ds->sc, 0, XCHK_GFP_FLAGS);
        if (error == -ENOMEM)
                return -EDEADLOCK;
        if (error)
index 151567f..a0f097b 100644 (file)
@@ -8,6 +8,15 @@
 
 struct xfs_scrub;
 
+/*
+ * Standard flags for allocating memory within scrub.  NOFS context is
+ * configured by the process allocation scope.  Scrub and repair must be able
+ * to back out gracefully if there isn't enough memory.  Force-cast to avoid
+ * complaints from static checkers.
+ */
+#define XCHK_GFP_FLAGS ((__force gfp_t)(GFP_KERNEL | __GFP_NOWARN | \
+                                        __GFP_RETRY_MAYFAIL))
+
 /* Type info and names for the scrub types. */
 enum xchk_type {
        ST_NONE = 1,    /* disabled */
index 75311f8..c1c99ff 100644 (file)
@@ -21,7 +21,7 @@ xchk_setup_symlink(
        struct xfs_scrub        *sc)
 {
        /* Allocate the buffer without the inode lock held. */
-       sc->buf = kvzalloc(XFS_SYMLINK_MAXLEN + 1, GFP_KERNEL);
+       sc->buf = kvzalloc(XFS_SYMLINK_MAXLEN + 1, XCHK_GFP_FLAGS);
        if (!sc->buf)
                return -ENOMEM;