2012-05-15 01:10:48

by Yuanhan Liu

[permalink] [raw]
Subject: [PATCH] mm: make validate_mm() static

validate_mm() is just used in mmap.c only, thus make it static.

Signed-off-by: Yuanhan Liu <[email protected]>
---
mm/mmap.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/mm/mmap.c b/mm/mmap.c
index 848ef52..3e440f3 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -335,7 +335,7 @@ static int browse_rb(struct rb_root *root)
return i;
}

-void validate_mm(struct mm_struct *mm)
+static void validate_mm(struct mm_struct *mm)
{
int bug = 0;
int i = 0;
--
1.7.7.6


2012-05-15 02:43:15

by Minchan Kim

[permalink] [raw]
Subject: Re: [PATCH] mm: make validate_mm() static

On 05/15/2012 10:10 AM, Yuanhan Liu wrote:

> validate_mm() is just used in mmap.c only, thus make it static.
>
> Signed-off-by: Yuanhan Liu <[email protected]>

Reveiwed-by: Minchan Kim <[email protected]>

--
Kind regards,
Minchan Kim