Hi,
Is there a recommended way for a driver to take an
application provided virtual address while executing
in the syscall context of that same application and
find the corresponding vm_area_struct (if exists for
that address) that spans that virtual address?
Melkor
__________________________________________________
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos & More
http://faith.yahoo.com
Melkor Ainur wrote:
> Hi,
>
> Is there a recommended way for a driver to take an
> application provided virtual address while executing
> in the syscall context of that same application and
> find the corresponding vm_area_struct (if exists for
> that address) that spans that virtual address?
>
> Melkor
down_read(current->mm->mmap_sem);
vma = find_vma(current->mm, address);
...
up_read(current->mm->mmap_sem);
--
Brian Gerst