Page MenuHomeFreeBSD

Skip Linux madvise(MADV_DONTNEED) on unmanaged objects.
ClosedPublic

Authored by markj on Aug 17 2020, 1:06 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Oct 24, 3:15 PM
Unknown Object (File)
Oct 8 2024, 6:40 AM
Unknown Object (File)
Sep 28 2024, 3:09 AM
Unknown Object (File)
Sep 21 2024, 6:35 PM
Unknown Object (File)
Sep 5 2024, 2:56 PM
Unknown Object (File)
Aug 14 2024, 11:47 AM
Unknown Object (File)
May 23 2024, 5:02 PM
Unknown Object (File)
May 17 2024, 6:23 AM
Subscribers

Details

Summary

I noticed this while reviewing the non-transparent superpages patch.
vm_object_madvise() is a no-op for unmanaged objects, but we should
limit the scope of mappings on which we'll call pmap_remove(). In
particular, with largepage objects we must remove mappings along
superpage boundaries.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

markj requested review of this revision.Aug 17 2020, 1:06 PM
markj created this revision.

I do not object, but is there a way for linux process to ever mmap largepage ?

Hmm, perhaps freebsd process can shm_open, then pass fd to linux process over unix socket, and then linux process can mmap(fd) ?

This revision is now accepted and ready to land.Aug 17 2020, 3:57 PM
In D26084#579065, @kib wrote:

I do not object, but is there a way for linux process to ever mmap largepage ?

Hmm, perhaps freebsd process can shm_open, then pass fd to linux process over unix socket, and then linux process can mmap(fd) ?

That's what I was thinking. Or, maybe the fd can be inherited over execve(). I am not sure if the implicit O_CLOEXEC for shm objects can be cleared.