if (mem_cgroup_is_root(memcg))
                goto done;
-       /*
-        * Unlike in global OOM situations, memcg is not in a physical
-        * memory shortage.  Allow dying and OOM-killed tasks to
-        * bypass the last charges so that they can exit quickly and
-        * free their memory.
-        */
-       if (unlikely(test_thread_flag(TIF_MEMDIE) ||
-                    fatal_signal_pending(current) ||
-                    current->flags & PF_EXITING))
-               goto bypass;
-
-       if (unlikely(task_in_memcg_oom(current)))
-               goto nomem;
-
-       if (gfp_mask & __GFP_NOFAIL)
-               oom = false;
 retry:
        if (consume_stock(memcg, nr_pages))
                goto done;
                goto retry;
        }
 
+       /*
+        * Unlike in global OOM situations, memcg is not in a physical
+        * memory shortage.  Allow dying and OOM-killed tasks to
+        * bypass the last charges so that they can exit quickly and
+        * free their memory.
+        */
+       if (unlikely(test_thread_flag(TIF_MEMDIE) ||
+                    fatal_signal_pending(current) ||
+                    current->flags & PF_EXITING))
+               goto bypass;
+
+       if (unlikely(task_in_memcg_oom(current)))
+               goto nomem;
+
        if (!(gfp_mask & __GFP_WAIT))
                goto nomem;
 
        if (mem_cgroup_wait_acct_move(mem_over_limit))
                goto retry;
 
+       if (gfp_mask & __GFP_NOFAIL)
+               goto bypass;
+
        if (fatal_signal_pending(current))
                goto bypass;