public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* vm: weird behaviour when munmapping
@ 2006-11-17 11:31 moreau francis
  2006-11-17 12:41 ` Peter Zijlstra
  0 siblings, 1 reply; 2+ messages in thread
From: moreau francis @ 2006-11-17 11:31 UTC (permalink / raw)
  To: linux-kernel

Hmm, I'm probably missing something but I don't see what. Please be
nice even if the question is really stupid ;)

I'm looking at mmap.c code and to understand it I decided to implement
a dumb char device that implement its own foo_mmap() method. In this
method it defined its own vma ops:

    static void foo_vma_open(struct vm_area_struct *vma)
    static void foo_vma_close(struct vm_area_struct *vma)

A dumb application mmap the device in order to make foo_mmap() install
the vma ops.

    mmap(NULL, 16384, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);

mmap returned 0x2aaae000 for example. Until now, foo_vma_open() and
foo_vma_close() are not called.

Now I want to unmap the first part of the previous mapping to see how
vma ops are called. So I did:

    munmap(0x2aaae000, 1024);

and here's what happen:

    foo_vma_open(vma) is called with:
        vma->vm_start = 0x2aaae000
        vma->vm_end = 0x2aaaf000

    foo_vma_close(vma) is called with:
        vma->vm_start = 0x2aaae000
        vma->vm_end = 0x2aaaf000

However I would have expected:

    foo_vma_open(vma) is called with:
        vma->vm_start = 0x2aaaf000
        vma->vm_end = 0x2aaab2000

    foo_vma_close(vma) is called with:
        vma->vm_start = 0x2aaae000
        vma->vm_end = 0x2aaaf000

Can anybody tell me why I get this behaviour ?

thanks

Francis




	

	
		
___________________________________________________________________________ 
Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions ! 
Profitez des connaissances, des opinions et des expériences des internautes sur Yahoo! Questions/Réponses 
http://fr.answers.yahoo.com

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

* Re: vm: weird behaviour when munmapping
  2006-11-17 11:31 vm: weird behaviour when munmapping moreau francis
@ 2006-11-17 12:41 ` Peter Zijlstra
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Zijlstra @ 2006-11-17 12:41 UTC (permalink / raw)
  To: moreau francis; +Cc: linux-kernel

On Fri, 2006-11-17 at 11:31 +0000, moreau francis wrote:
> Hmm, I'm probably missing something but I don't see what. Please be
> nice even if the question is really stupid ;)
> 
> I'm looking at mmap.c code and to understand it I decided to implement
> a dumb char device that implement its own foo_mmap() method. In this
> method it defined its own vma ops:
> 
>     static void foo_vma_open(struct vm_area_struct *vma)
>     static void foo_vma_close(struct vm_area_struct *vma)
> 
> A dumb application mmap the device in order to make foo_mmap() install
> the vma ops.
> 
>     mmap(NULL, 16384, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
> 
> mmap returned 0x2aaae000 for example. Until now, foo_vma_open() and
> foo_vma_close() are not called.
> 
> Now I want to unmap the first part of the previous mapping to see how
> vma ops are called. So I did:
> 
>     munmap(0x2aaae000, 1024);
> 
> and here's what happen:
> 
>     foo_vma_open(vma) is called with:
>         vma->vm_start = 0x2aaae000
>         vma->vm_end = 0x2aaaf000
> 
>     foo_vma_close(vma) is called with:
>         vma->vm_start = 0x2aaae000
>         vma->vm_end = 0x2aaaf000
> 
> However I would have expected:
> 
>     foo_vma_open(vma) is called with:
>         vma->vm_start = 0x2aaaf000
>         vma->vm_end = 0x2aaab2000
> 
>     foo_vma_close(vma) is called with:
>         vma->vm_start = 0x2aaae000
>         vma->vm_end = 0x2aaaf000
> 
> Can anybody tell me why I get this behaviour ?
> 

http://lwn.net/Kernel/LDD3/

Chapter 15. Section 'Virtual Memory Areas'.

Basically; vm_ops->open() is not called on the first vma. With this
munmap() you split the area in two, and it so happens the new vma is the
lower one.



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

end of thread, other threads:[~2006-11-17 12:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-17 11:31 vm: weird behaviour when munmapping moreau francis
2006-11-17 12:41 ` Peter Zijlstra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox