[PATCH 01/17] net/mana: add basic driver, build environment and doc
Stephen Hemminger
stephen at networkplumber.org
Fri Jul 1 18:47:36 CEST 2022
On Fri, 1 Jul 2022 02:02:31 -0700
longli at linuxonhyperv.com wrote:
> + uint64_t max_mr_size;
> + rte_rwlock_t mr_list_lock;
> +};
Reader/Writer locks are slower for the usual uncontended case.
Unless you have a reader holding onto the lock for a long time,
better to use spin lock.
This is Linux wisdom (thank you paulmck), Windows seems to love
reader/writer locks.
More information about the dev
mailing list