]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: epoll: move epoll_fd to read_mostly
authorWilly Tarreau <w@1wt.eu>
Sat, 10 Apr 2021 15:06:40 +0000 (17:06 +0200)
committerWilly Tarreau <w@1wt.eu>
Sat, 10 Apr 2021 17:27:41 +0000 (19:27 +0200)
commit26d212c7442e93ca58f3fa75eab16141970a0729
tree876d11758e3f1f189e8cb67f6c28b1167927a8d3
parenta1090a5b61247da206dd6aad2508345af2b0412f
MINOR: epoll: move epoll_fd to read_mostly

This one only contains the list of per-thread epoll FDs, and is used
a lot during updates. Let's mark it read_mostly to avoid false sharing
of FDs placed at the extremities.
src/ev_epoll.c