From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Fri, 11 Feb 2005 19:26:07 -0800 (PST) From: Ray Bryant Message-Id: <20050212032607.18524.1073.41476@tomahawk.engr.sgi.com> In-Reply-To: <20050212032535.18524.12046.26397@tomahawk.engr.sgi.com> References: <20050212032535.18524.12046.26397@tomahawk.engr.sgi.com> Subject: [RFC 2.6.11-rc2-mm2 5/7] mm: manual page migration -- cleanup 5 Sender: owner-linux-mm@kvack.org Return-Path: To: Hirokazu Takahashi , Hugh DIckins , Andrew Morton , Dave Hansen , Marcello Tosatti Cc: Ray Bryant , Ray Bryant , linux-mm , linux-kernel List-ID: Fix up a switch statement so gcc doesn't complain about it. Signed-off-by: Ray Bryant 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 raybry@sgi.com The box said: "Requires Windows 98 or better", so I installed Linux. ----------------------------------------------- -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: aart@kvack.org