From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934693AbXG2PV7 (ORCPT ); Sun, 29 Jul 2007 11:21:59 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1765579AbXG2PDp (ORCPT ); Sun, 29 Jul 2007 11:03:45 -0400 Received: from mailout.stusta.mhn.de ([141.84.69.5]:47957 "EHLO mailhub.stusta.mhn.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1765561AbXG2PDn (ORCPT ); Sun, 29 Jul 2007 11:03:43 -0400 Date: Sun, 29 Jul 2007 17:03:20 +0200 From: Adrian Bunk To: Andrew Morton Cc: Christoph Lameter , linux-kernel@vger.kernel.org Subject: [2.6 patch] mm/migrate.c: cleanups Message-ID: <20070729150320.GF16817@stusta.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.5.16 (2007-06-11) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org This patch contains the following cleanups: - every file should include the headers containing the prototypes for its global functions - make the needlessly global putback_lru_pages() static Signed-off-by: Adrian Bunk Acked-by: Christoph Lameter --- This patch has been sent on: - 6 Jul 2007 include/linux/migrate.h | 2 -- mm/migrate.c | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) --- linux-2.6.22-rc6-mm1/include/linux/migrate.h.old 2007-07-05 17:10:01.000000000 +0200 +++ linux-2.6.22-rc6-mm1/include/linux/migrate.h 2007-07-05 17:10:10.000000000 +0200 @@ -26,7 +26,6 @@ } extern int isolate_lru_page(struct page *p, struct list_head *pagelist); -extern int putback_lru_pages(struct list_head *l); extern int migrate_page(struct address_space *, struct page *, struct page *); extern int migrate_pages(struct list_head *l, new_page_t x, unsigned long); @@ -44,7 +43,6 @@ static inline int isolate_lru_page(struct page *p, struct list_head *list) { return -ENOSYS; } -static inline int putback_lru_pages(struct list_head *l) { return 0; } static inline int migrate_pages(struct list_head *l, new_page_t x, unsigned long private) { return -ENOSYS; } --- linux-2.6.22-rc6-mm1/mm/migrate.c.old 2007-07-05 17:10:16.000000000 +0200 +++ linux-2.6.22-rc6-mm1/mm/migrate.c 2007-07-05 17:11:43.000000000 +0200 @@ -28,6 +28,7 @@ #include #include #include +#include #include "internal.h" @@ -101,7 +102,7 @@ * * returns the number of pages put back. */ -int putback_lru_pages(struct list_head *l) +static int putback_lru_pages(struct list_head *l) { struct page *page; struct page *page2;