return i;
 }
 
+static inline int bprm_set_stack_limit(struct linux_binprm *bprm,
+                                      unsigned long limit)
+{
+#ifdef CONFIG_MMU
+       bprm->argmin = bprm->p - limit;
+#endif
+       return 0;
+}
+static inline bool bprm_hit_stack_limit(struct linux_binprm *bprm)
+{
+#ifdef CONFIG_MMU
+       return bprm->p < bprm->argmin;
+#else
+       return false;
+#endif
+}
+
 /*
  * Calculate bprm->argmin from:
  * - _STK_LIM
                return -E2BIG;
        limit -= ptr_size;
 
-       bprm->argmin = bprm->p - limit;
-       return 0;
+       return bprm_set_stack_limit(bprm, limit);
 }
 
 /*
                pos = bprm->p;
                str += len;
                bprm->p -= len;
-#ifdef CONFIG_MMU
-               if (bprm->p < bprm->argmin)
+               if (bprm_hit_stack_limit(bprm))
                        goto out;
-#endif
 
                while (len > 0) {
                        int offset, bytes_to_copy;
        /* We're going to work our way backwards. */
        arg += len;
        bprm->p -= len;
-       if (IS_ENABLED(CONFIG_MMU) && bprm->p < bprm->argmin)
+       if (bprm_hit_stack_limit(bprm))
                return -E2BIG;
 
        while (len > 0) {
 
 
                rc = bprm_stack_limits(&bprm);
                KUNIT_EXPECT_EQ_MSG(test, rc, result->expected_rc, "on loop %d", i);
+#ifdef CONFIG_MMU
                KUNIT_EXPECT_EQ_MSG(test, bprm.argmin, result->expected_argmin, "on loop %d", i);
+#endif
        }
 }
 
 
 #ifdef CONFIG_MMU
        struct vm_area_struct *vma;
        unsigned long vma_pages;
+       unsigned long argmin; /* rlimit marker for copy_strings() */
 #else
 # define MAX_ARG_PAGES 32
        struct page *page[MAX_ARG_PAGES];
 #endif
        struct mm_struct *mm;
        unsigned long p; /* current top of mem */
-       unsigned long argmin; /* rlimit marker for copy_strings() */
        unsigned int
                /* Should an execfd be passed to userspace? */
                have_execfd:1,