Page MenuHomeFreeBSD

replace locking in swap reservation with fetchadd
AbandonedPublic

Authored by kmacy on Apr 30 2018, 7:25 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, May 21, 6:15 AM
Unknown Object (File)
Sat, May 16, 7:21 PM
Unknown Object (File)
Sat, May 16, 5:42 PM
Unknown Object (File)
Thu, May 14, 3:04 AM
Unknown Object (File)
Thu, May 7, 4:41 AM
Unknown Object (File)
Sun, Apr 26, 9:51 PM
Unknown Object (File)
Apr 11 2026, 7:52 AM
Unknown Object (File)
Apr 7 2026, 11:23 AM
Subscribers

Details

Reviewers
jeff
kib
markj
Summary

This is a straightforward conversion of the locking around swap_reservation and ui_vmsize to use atomic_fetchadd. This gives a 40% speedup on brk1_processes in will-it-scale. Moving the bottleneck to the invl_gen_mtx. The atomics again become bottlenecks if D15231 is put in place and so ultimately a more sophisticated pcpu scheme is warranted.

I realized I may have to keep the locked version around for ppc32 and MIPS. Suggestions welcome, otherwise I'll abandon.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 16349

Event Timeline

sys/vm/swap_pager.c
208

I would not call this variable 'new'.

Also, I do not believe that the patch compiles on 32bit architectures.

295

This does not compole for kernels without RACCT.