All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rmap : simplify the code for try_to_unmap_file
@ 2009-10-20  6:21 Huang Shijie
  2009-10-28 23:37 ` KOSAKI Motohiro
  0 siblings, 1 reply; 3+ messages in thread
From: Huang Shijie @ 2009-10-20  6:21 UTC (permalink / raw)
  To: akpm; +Cc: hugh.dickins, linux-mm, Huang Shijie

Just simplify the code when the mlocked is true.

Signed-off-by: Huang Shijie <shijie8@gmail.com>
---
 mm/rmap.c |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/mm/rmap.c b/mm/rmap.c
index dd43373..c57c3b6 100644
--- a/mm/rmap.c
+++ b/mm/rmap.c
@@ -1100,13 +1100,10 @@ static int try_to_unmap_file(struct page *page, enum ttu_flags flags)
 		if (ret == SWAP_MLOCK) {
 			mlocked = try_to_mlock_page(page, vma);
 			if (mlocked)
-				break;  /* stop if actually mlocked page */
+				goto out;  /* stop if actually mlocked page */
 		}
 	}
 
-	if (mlocked)
-		goto out;
-
 	if (list_empty(&mapping->i_mmap_nonlinear))
 		goto out;
 
-- 
1.6.0.6

--
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: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] rmap : simplify the code for try_to_unmap_file
  2009-10-20  6:21 [PATCH] rmap : simplify the code for try_to_unmap_file Huang Shijie
@ 2009-10-28 23:37 ` KOSAKI Motohiro
  2009-10-29  1:55   ` Huang Shijie
  0 siblings, 1 reply; 3+ messages in thread
From: KOSAKI Motohiro @ 2009-10-28 23:37 UTC (permalink / raw)
  To: Huang Shijie; +Cc: kosaki.motohiro, akpm, hugh.dickins, linux-mm

> Just simplify the code when the mlocked is true.
> 
> Signed-off-by: Huang Shijie <shijie8@gmail.com>
> ---
>  mm/rmap.c |    5 +----
>  1 files changed, 1 insertions(+), 4 deletions(-)
> 
> diff --git a/mm/rmap.c b/mm/rmap.c
> index dd43373..c57c3b6 100644
> --- a/mm/rmap.c
> +++ b/mm/rmap.c
> @@ -1100,13 +1100,10 @@ static int try_to_unmap_file(struct page *page, enum ttu_flags flags)
>  		if (ret == SWAP_MLOCK) {
>  			mlocked = try_to_mlock_page(page, vma);
>  			if (mlocked)
> -				break;  /* stop if actually mlocked page */
> +				goto out;  /* stop if actually mlocked page */
>  		}
>  	}
>  
> -	if (mlocked)
> -		goto out;
> -
>  	if (list_empty(&mapping->i_mmap_nonlinear))
>  		goto out;

Did anyone reviewed this patch?
Anyway,
	Reviewed-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>


Huang, I'm sorry for the delaying. I was attend to JLS and I couldn't
review long time.



--
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: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] rmap : simplify the code for try_to_unmap_file
  2009-10-28 23:37 ` KOSAKI Motohiro
@ 2009-10-29  1:55   ` Huang Shijie
  0 siblings, 0 replies; 3+ messages in thread
From: Huang Shijie @ 2009-10-29  1:55 UTC (permalink / raw)
  To: KOSAKI Motohiro; +Cc: akpm, hugh.dickins, linux-mm

KOSAKI Motohiro wrote:
>> Just simplify the code when the mlocked is true.
>>
>> Signed-off-by: Huang Shijie <shijie8@gmail.com>
>> ---
>>  mm/rmap.c |    5 +----
>>  1 files changed, 1 insertions(+), 4 deletions(-)
>>
>> diff --git a/mm/rmap.c b/mm/rmap.c
>> index dd43373..c57c3b6 100644
>> --- a/mm/rmap.c
>> +++ b/mm/rmap.c
>> @@ -1100,13 +1100,10 @@ static int try_to_unmap_file(struct page *page, enum ttu_flags flags)
>>  		if (ret == SWAP_MLOCK) {
>>  			mlocked = try_to_mlock_page(page, vma);
>>  			if (mlocked)
>> -				break;  /* stop if actually mlocked page */
>> +				goto out;  /* stop if actually mlocked page */
>>  		}
>>  	}
>>  
>> -	if (mlocked)
>> -		goto out;
>> -
>>  	if (list_empty(&mapping->i_mmap_nonlinear))
>>  		goto out;
>>     
>
> Did anyone reviewed this patch?
> Anyway,
> 	Reviewed-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
>
>   
thanks :)
> Huang, I'm sorry for the delaying. I was attend to JLS and I couldn't
> review long time.
>
>
>   
Not at all.I forgeted the JLS when I sent the two tiny patchs.
>
>   

--
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: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-10-29  1:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-10-20  6:21 [PATCH] rmap : simplify the code for try_to_unmap_file Huang Shijie
2009-10-28 23:37 ` KOSAKI Motohiro
2009-10-29  1:55   ` Huang Shijie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.