From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762841AbYEESfg (ORCPT ); Mon, 5 May 2008 14:35:36 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1760964AbYEES2J (ORCPT ); Mon, 5 May 2008 14:28:09 -0400 Received: from smtp5.pp.htv.fi ([213.243.153.39]:32973 "EHLO smtp5.pp.htv.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760956AbYEES2H (ORCPT ); Mon, 5 May 2008 14:28:07 -0400 Date: Mon, 5 May 2008 21:27:00 +0300 From: Adrian Bunk To: linux-kernel@vger.kernel.org Cc: Andrew Morton Subject: [2.6 patch] make mm/memory.c:print_bad_pte() static Message-ID: <20080505182700.GG17139@cs181133002.pp.htv.fi> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.5.17+20080114 (2008-01-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch makes the needlessly global print_bad_pte() static. Signed-off-by: Adrian Bunk --- This patch has been sent on: - 22 Apr 2008 - 14 Apr 2008 - 31 Mar 2008 - 25 Feb 2008 include/linux/mm.h | 1 - mm/memory.c | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) cf47cf1dae0fe5b04b95ede85cac61c74f75c1c2 diff --git a/include/linux/mm.h b/include/linux/mm.h index 3b3e134..33d5ebe 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -777,7 +777,6 @@ extern int access_process_vm(struct task_struct *tsk, unsigned long addr, void * int get_user_pages(struct task_struct *tsk, struct mm_struct *mm, unsigned long start, int len, int write, int force, struct page **pages, struct vm_area_struct **vmas); -void print_bad_pte(struct vm_area_struct *, pte_t, unsigned long); extern int try_to_release_page(struct page * page, gfp_t gfp_mask); extern void do_invalidatepage(struct page *page, unsigned long offset); diff --git a/mm/memory.c b/mm/memory.c index ce3c9e4..fe624e4 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -355,7 +355,8 @@ static inline void add_mm_rss(struct mm_struct *mm, int file_rss, int anon_rss) * * The calling function must still handle the error. */ -void print_bad_pte(struct vm_area_struct *vma, pte_t pte, unsigned long vaddr) +static void print_bad_pte(struct vm_area_struct *vma, pte_t pte, + unsigned long vaddr) { printk(KERN_ERR "Bad pte = %08llx, process = %s, " "vm_flags = %lx, vaddr = %lx\n",