coredump: add support for exe_file in core name
[deliverable/linux.git] / mm / memory-failure.c
index 369b80e814163deaa29a5042c54c343478d07acc..5c8f7e08928d5faba209a0392b4b2befe17a67e3 100644 (file)
@@ -239,7 +239,11 @@ void shake_page(struct page *p, int access)
        if (access) {
                int nr;
                do {
-                       nr = shrink_slab(1000, GFP_KERNEL, 1000);
+                       struct shrink_control shrink = {
+                               .gfp_mask = GFP_KERNEL,
+                       };
+
+                       nr = shrink_slab(&shrink, 1000, 1000);
                        if (page_count(p) == 1)
                                break;
                } while (nr > 10);
This page took 0.026552 seconds and 5 git commands to generate.