Hi Al,
I saw two commits from you in git tree:
17d1587 unexport do_munmap()
bfce281 kill mm argument of vm_munmap()
They remove the mm arguments, so it look like impossible to unmap
memory of other processes except current.
I have a kernel module that needs to unmap memory for certain pid. Do
you have any idea how to do it?
Thanks
Richard
On Wed, Aug 8, 2012 at 9:46 AM, Richard Zhao <[email protected]> wrote:
> Hi Al,
>
> I saw two commits from you in git tree:
> 17d1587 unexport do_munmap()
> bfce281 kill mm argument of vm_munmap()
>
> They remove the mm arguments, so it look like impossible to unmap
> memory of other processes except current.
>
> I have a kernel module that needs to unmap memory for certain pid. Do
> you have any idea how to do it?
AFAIK Al removed this because it's racy in many ways...
---
Thanks,
//richard