Linux 4.5-rc1
[linux-drm-fsl-dcu.git] / mm / compaction.c
index de3e1e71cd9f265d9df971e98ed931fbdc8611a8..585de54dbe8ccef06543b547eadfe8e4fe8e3117 100644 (file)
@@ -1658,14 +1658,15 @@ static void __compact_pgdat(pg_data_t *pgdat, struct compact_control *cc)
                                !compaction_deferred(zone, cc->order))
                        compact_zone(zone, cc);
 
-               if (cc->order > 0) {
-                       if (zone_watermark_ok(zone, cc->order,
-                                               low_wmark_pages(zone), 0, 0))
-                               compaction_defer_reset(zone, cc->order, false);
-               }
-
                VM_BUG_ON(!list_empty(&cc->freepages));
                VM_BUG_ON(!list_empty(&cc->migratepages));
+
+               if (is_via_compact_memory(cc->order))
+                       continue;
+
+               if (zone_watermark_ok(zone, cc->order,
+                               low_wmark_pages(zone), 0, 0))
+                       compaction_defer_reset(zone, cc->order, false);
        }
 }
 
@@ -1708,7 +1709,10 @@ static void compact_nodes(void)
 /* The written value is actually unused, all memory is compacted */
 int sysctl_compact_memory;
 
-/* This is the entry point for compacting all nodes via /proc/sys/vm */
+/*
+ * This is the entry point for compacting all nodes via
+ * /proc/sys/vm/compact_memory
+ */
 int sysctl_compaction_handler(struct ctl_table *table, int write,
                        void __user *buffer, size_t *length, loff_t *ppos)
 {