mtdoops_erase(cxt);
 }
 
-static void mtdoops_inc_counter(struct mtdoops_context *cxt)
+static void mtdoops_inc_counter(struct mtdoops_context *cxt, int panic)
 {
        cxt->nextpage++;
        if (cxt->nextpage >= cxt->oops_pages)
                cxt->nextcount = 0;
 
        if (page_is_used(cxt, cxt->nextpage)) {
-               schedule_work(&cxt->work_erase);
-               return;
+               pr_debug("not ready %d, %d (erase %s)\n",
+                        cxt->nextpage, cxt->nextcount,
+                        panic ? "immediately" : "scheduled");
+               if (panic) {
+                       /* In case of panic, erase immediately */
+                       mtdoops_erase(cxt);
+               } else {
+                       /* Otherwise, schedule work to erase it "nicely" */
+                       schedule_work(&cxt->work_erase);
+               }
+       } else {
+               pr_debug("ready %d, %d (no erase)\n",
+                        cxt->nextpage, cxt->nextcount);
        }
-
-       pr_debug("ready %d, %d (no erase)\n",
-                cxt->nextpage, cxt->nextcount);
 }
 
 static void mtdoops_write(struct mtdoops_context *cxt, int panic)
        mark_page_used(cxt, cxt->nextpage);
        memset(cxt->oops_buf, 0xff, record_size);
 
-       mtdoops_inc_counter(cxt);
+       mtdoops_inc_counter(cxt, panic);
 out:
        clear_bit(0, &cxt->oops_buf_busy);
 }
                cxt->nextcount = maxcount;
        }
 
-       mtdoops_inc_counter(cxt);
+       mtdoops_inc_counter(cxt, 0);
 }
 
 static void mtdoops_do_dump(struct kmsg_dumper *dumper,