Fix up a switch statement so gcc doesn't complain about it.

Signed-off-by: Ray Bryant <[EMAIL PROTECTED]>

Index: linux/mm/mmigrate.c
===================================================================
--- linux.orig/mm/mmigrate.c    2005-01-30 11:13:58.000000000 -0800
+++ linux/mm/mmigrate.c 2005-01-30 11:19:33.000000000 -0800
@@ -319,17 +319,17 @@ generic_migrate_page(struct page *page, 
        /* Wait for all operations against the page to finish. */
        ret = migrate_fn(page, newpage, &vlist);
        switch (ret) {
-       default:
-               /* The page is busy. Try it later. */
-               goto out_busy;
        case -ENOENT:
                /* The file the page belongs to has been truncated. */
                page_cache_get(page);
                page_cache_release(newpage);
                newpage->mapping = NULL;
-               /* fall thru */
+               break;
        case 0:
-               /* fall thru */
+               break;
+       default:
+               /* The page is busy. Try it later. */
+               goto out_busy;
        }
 
        arch_migrate_page(page, newpage);

-- 
Best Regards,
Ray
-----------------------------------------------
Ray Bryant                       [EMAIL PROTECTED]
The box said: "Requires Windows 98 or better",
           so I installed Linux.
-----------------------------------------------
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to