Module Name: src Committed By: riastradh Date: Wed Feb 22 21:44:21 UTC 2023
Modified Files: src/sys/kern: vfs_vnode.c Log Message: _vstate_assert: Use atomic_load/store_relaxed. Omit membar_enter. Can't find anything this is supposed to pair with. Pretty sure this is just an optimistic unlocked test, not actually reliant on memory ordering. But as it is unlocked, it needs to be coordinated with atomic_load/store_relaxed, not ordinary loads or stores, if for no other reason than to pacify sanitizers. No need in vnalloc_marker or vcache_alloc because these still have exclusive access to the vnode at that point. XXX Should deduplicate the logic in vstate_assert_change and vstate_change. To generate a diff of this commit: cvs rdiff -u -r1.147 -r1.148 src/sys/kern/vfs_vnode.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.