git: kernel - Fix latency issue with many cores contending on a

看板DFBSD_commit作者時間14年前 (2011/10/22 18:03), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/1
commit 7ab91d55c3e8140456098245bcbedc93a36e4e4b Author: Matthew Dillon <dillon@apollo.backplane.com> Date: Tue Oct 18 21:06:49 2011 -0700 kernel - Fix latency issue with many cores contending on a token * Fix a latency issue when many cores are contending on the same token. This can be tested e.g. by setting an interface to use polling mode and then pinging it from the outside. Ping times in excess of 60 seconds (yes, seconds!) could occur. * The problem turns out to be in usched_bsd4.c in the loop that tries to acquire the current process designation. This loop runs in a critical section (and probably its caller too) and while it checks for the LWKT thread reschedule flag it fails to call splz() to process pending interrupts (like IPIs) that might SET the flag. Adding a single splz() prior to the lwkt reschedule check greatly reduces the latency problem. Summary of changes: sys/kern/usched_bsd4.c | 12 ++++- sys/platform/pc64/x86_64/pmap.c | 87 ++++++++++++++++++++------------------ 2 files changed, 55 insertions(+), 44 deletions(-) http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/7ab91d55c3e8140456098245bcbedc93a36e4e4b -- DragonFly BSD source repository
文章代碼(AID): #1EefK44t (DFBSD_commit)