Page MenuHomeFreeBSD

vm_radix: define vm_radix_insert_lookup_lt and use in vm_page_rename
ClosedPublic

Authored by rlibby on May 28 2024, 7:39 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Jun 20, 7:15 PM
Unknown Object (File)
Thu, Jun 6, 5:48 PM
Unknown Object (File)
Mon, Jun 3, 8:06 PM
Unknown Object (File)
Mon, Jun 3, 11:51 AM
Unknown Object (File)
Mon, Jun 3, 1:48 AM
Unknown Object (File)
Thu, May 30, 6:57 PM
Unknown Object (File)
Thu, May 30, 7:30 AM
Subscribers

Details

Summary

Use the new pctrie combined lookup/insert. This is an easy application
of the new facility. There are other places where we do this for pages
that may need more plumbing to use combined lookup/insert.

Sponsored by: Dell EMC Isilon

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

kib added inline comments.
sys/vm/vm_page.c
1862
This revision is now accepted and ready to land.May 29 2024, 1:15 PM
This revision now requires review to proceed.May 29 2024, 6:16 PM
sys/vm/vm_radix.h
86

So, the KASSERT you're dropping above has no effect in a GENERIC-NODEBUG build, but this check will still be made in that build. So is this better than KASSERT(error != EEXIST)?

sys/vm/vm_radix.h
86

I believe I'm preserving the GENERIC-NODEBUG behavior from before the patch. vm_radix_insert() does a hard panic on a collision.

This revision is now accepted and ready to land.May 29 2024, 7:43 PM

I guess vm_page_insert() could be improved similarly, but that's more work. IMO a better long-term direction there is to remove the memq (insertion into which is the purpose of looking up mpred in the first place) and use the radix tree for iteration instead, but that's a separate topic.

I guess vm_page_insert() could be improved similarly, but that's more work.

Yes. It's not a lot of work, I just didn't want to get ahead of myself. I can put up a patch later this week when I get some more time.

IMO a better long-term direction there is to remove the memq (insertion into which is the purpose of looking up mpred in the first place) and use the radix tree for iteration instead, but that's a separate topic.

Yes, I've thought about that a little but haven't explored thoroughly. Honestly we may want to go that direction for bufs too. Maintaining tailq linkage can be costly as the neighbors may be cache cold. Privately we have added cache line prefetches in certain places which are surprisingly effective, but I don't know if we have an appetite for that sort of thing in tree.

If we actually want to take steps toward removing the linkage, we may need to provide better iterator primitives or at least conventions for pctrie, as otherwise scans may be more costly.

I guess vm_page_insert() could be improved similarly, but that's more work.

Yes. It's not a lot of work, I just didn't want to get ahead of myself. I can put up a patch later this week when I get some more time.

IMO a better long-term direction there is to remove the memq (insertion into which is the purpose of looking up mpred in the first place) and use the radix tree for iteration instead, but that's a separate topic.

Yes, I've thought about that a little but haven't explored thoroughly. Honestly we may want to go that direction for bufs too. Maintaining tailq linkage can be costly as the neighbors may be cache cold. Privately we have added cache line prefetches in certain places which are surprisingly effective, but I don't know if we have an appetite for that sort of thing in tree.

If we actually want to take steps toward removing the linkage, we may need to provide better iterator primitives or at least conventions for pctrie, as otherwise scans may be more costly.

I've prototyped this twice I think. Both times I struggled with performance parity. You really need a very capable iterator and probably some bounded batch lookup operations. If you eliminate the tailq you can support some lock free modifying operations as well.