OSDN Git Service

fs: Fix S_NOSEC handling
[android-x86/kernel.git] / mm / memory_hotplug.c
index 65842d6..93caba7 100644 (file)
@@ -1978,8 +1978,10 @@ void try_offline_node(int nid)
                 * wait_table may be allocated from boot memory,
                 * here only free if it's allocated by vmalloc.
                 */
-               if (is_vmalloc_addr(zone->wait_table))
+               if (is_vmalloc_addr(zone->wait_table)) {
                        vfree(zone->wait_table);
+                       zone->wait_table = NULL;
+               }
        }
 }
 EXPORT_SYMBOL(try_offline_node);