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
F168827141: D26084.id.diff
Sun, Aug 30, 8:26 AM
F168802832: D26084.diff
Sun, Aug 30, 5:55 AM
F168754180: D26084.diff
Sat, Aug 29, 11:40 PM
Unknown Object (File)
Sat, Aug 29, 4:24 PM
Unknown Object (File)
Sat, Aug 29, 4:24 PM
Unknown Object (File)
Sat, Aug 29, 4:21 PM
Unknown Object (File)
Wed, Aug 26, 2:16 PM
Unknown Object (File)
Wed, Aug 26, 1:56 PM
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.