All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm/mlock: remove unneeded start >= vma->vm_end check
@ 2022-03-14 15:32 Miaohe Lin
  2022-03-14 16:17 ` Matthew Wilcox
  0 siblings, 1 reply; 5+ messages in thread
From: Miaohe Lin @ 2022-03-14 15:32 UTC (permalink / raw)
  To: akpm, hughd; +Cc: linux-mm, linux-kernel, linmiaohe

If find_vma returns a vma, it must satisfies that start < vma->vm_end.
Since vma list is sorted in the ascending order, so we will never see
start >= vma->vm_end here. Remove this unneeded check.

Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
---
 mm/mlock.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/mm/mlock.c b/mm/mlock.c
index fefa9644d0f9..fe278634ebe3 100644
--- a/mm/mlock.c
+++ b/mm/mlock.c
@@ -509,8 +509,6 @@ static unsigned long count_mm_mlocked_page_nr(struct mm_struct *mm,
 		return 0;
 
 	for (; vma ; vma = vma->vm_next) {
-		if (start >= vma->vm_end)
-			continue;
 		if (start + len <=  vma->vm_start)
 			break;
 		if (vma->vm_flags & VM_LOCKED) {
-- 
2.23.0


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

* Re: [PATCH] mm/mlock: remove unneeded start >= vma->vm_end check
  2022-03-14 15:32 [PATCH] mm/mlock: remove unneeded start >= vma->vm_end check Miaohe Lin
@ 2022-03-14 16:17 ` Matthew Wilcox
  2022-03-15 12:30   ` Miaohe Lin
  0 siblings, 1 reply; 5+ messages in thread
From: Matthew Wilcox @ 2022-03-14 16:17 UTC (permalink / raw)
  To: Miaohe Lin; +Cc: akpm, hughd, linux-mm, linux-kernel

On Mon, Mar 14, 2022 at 11:32:23PM +0800, Miaohe Lin wrote:
> If find_vma returns a vma, it must satisfies that start < vma->vm_end.
> Since vma list is sorted in the ascending order, so we will never see
> start >= vma->vm_end here. Remove this unneeded check.

faulty logic; vm_start + len might wrap.

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

* Re: [PATCH] mm/mlock: remove unneeded start >= vma->vm_end check
  2022-03-14 16:17 ` Matthew Wilcox
@ 2022-03-15 12:30   ` Miaohe Lin
  2022-03-31  1:50     ` Miaohe Lin
  2022-04-06  9:17     ` Miaohe Lin
  0 siblings, 2 replies; 5+ messages in thread
From: Miaohe Lin @ 2022-03-15 12:30 UTC (permalink / raw)
  To: Matthew Wilcox; +Cc: akpm, hughd, linux-mm, linux-kernel

On 2022/3/15 0:17, Matthew Wilcox wrote:
> On Mon, Mar 14, 2022 at 11:32:23PM +0800, Miaohe Lin wrote:
>> If find_vma returns a vma, it must satisfies that start < vma->vm_end.
>> Since vma list is sorted in the ascending order, so we will never see
>> start >= vma->vm_end here. Remove this unneeded check.
> 
> faulty logic; vm_start + len might wrap.

Many thanks for comment. I agree with you about "vm_start + len" might wrap.
But what I mean here is that we will never see "start" >= vma->vm_end here
as find_vma guarantees this. And I leave the "start + len <=  vma->vm_start"
check untouched. So my cleanup should be right. Or am I miss something?

Thanks.

> 
> .
> 


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

* Re: [PATCH] mm/mlock: remove unneeded start >= vma->vm_end check
  2022-03-15 12:30   ` Miaohe Lin
@ 2022-03-31  1:50     ` Miaohe Lin
  2022-04-06  9:17     ` Miaohe Lin
  1 sibling, 0 replies; 5+ messages in thread
From: Miaohe Lin @ 2022-03-31  1:50 UTC (permalink / raw)
  To: Matthew Wilcox, Andrew Morton; +Cc: hughd, linux-mm, linux-kernel

On 2022/3/15 20:30, Miaohe Lin wrote:
> On 2022/3/15 0:17, Matthew Wilcox wrote:
>> On Mon, Mar 14, 2022 at 11:32:23PM +0800, Miaohe Lin wrote:
>>> If find_vma returns a vma, it must satisfies that start < vma->vm_end.
>>> Since vma list is sorted in the ascending order, so we will never see
>>> start >= vma->vm_end here. Remove this unneeded check.
>>
>> faulty logic; vm_start + len might wrap.
> 
> Many thanks for comment. I agree with you about "vm_start + len" might wrap.
> But what I mean here is that we will never see "start" >= vma->vm_end here
> as find_vma guarantees this. And I leave the "start + len <=  vma->vm_start"
> check untouched. So my cleanup should be right. Or am I miss something?
> 

friendly ping. :)

> Thanks.
> 
>>
>> .
>>
> 


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

* Re: [PATCH] mm/mlock: remove unneeded start >= vma->vm_end check
  2022-03-15 12:30   ` Miaohe Lin
  2022-03-31  1:50     ` Miaohe Lin
@ 2022-04-06  9:17     ` Miaohe Lin
  1 sibling, 0 replies; 5+ messages in thread
From: Miaohe Lin @ 2022-04-06  9:17 UTC (permalink / raw)
  To: Matthew Wilcox, Andrew Morton; +Cc: hughd, linux-mm, linux-kernel

On 2022/3/15 20:30, Miaohe Lin wrote:
> On 2022/3/15 0:17, Matthew Wilcox wrote:
>> On Mon, Mar 14, 2022 at 11:32:23PM +0800, Miaohe Lin wrote:
>>> If find_vma returns a vma, it must satisfies that start < vma->vm_end.
>>> Since vma list is sorted in the ascending order, so we will never see
>>> start >= vma->vm_end here. Remove this unneeded check.
>>
>> faulty logic; vm_start + len might wrap.

What do you mean is vm_start + len might wrap, so vm_end might be < vm_start ?
If so, this could not happen as get_unmapped_area guarantees this.

> 
> Many thanks for comment. I agree with you about "vm_start + len" might wrap.
> But what I mean here is that we will never see "start" >= vma->vm_end here
> as find_vma guarantees this. And I leave the "start + len <=  vma->vm_start"
> check untouched. So my cleanup should be right. Or am I miss something?

So I think this "start >= vma->vm_end" check is unneeded and we can remove it.
Or am I miss something?

Many thanks!

> 
> Thanks.
> 
>>
>> .
>>
> 


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

end of thread, other threads:[~2022-04-06 13:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-14 15:32 [PATCH] mm/mlock: remove unneeded start >= vma->vm_end check Miaohe Lin
2022-03-14 16:17 ` Matthew Wilcox
2022-03-15 12:30   ` Miaohe Lin
2022-03-31  1:50     ` Miaohe Lin
2022-04-06  9:17     ` Miaohe Lin

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.