]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/lguest/core.c
cpumask: introduce new API, without changing anything, v3
[linux-2.6-omap-h63xx.git] / drivers / lguest / core.c
index 5eea4356d70348b102ba2b62d9a3196e21bc7690..90663e01a56e0d4544b944da2fd81e5052a05a2f 100644 (file)
@@ -135,6 +135,7 @@ static void unmap_switcher(void)
        /* Now we just need to free the pages we copied the switcher into */
        for (i = 0; i < TOTAL_SWITCHER_PAGES; i++)
                __free_pages(switcher_page[i], 0);
+       kfree(switcher_page);
 }
 
 /*H:032