aboutsummaryrefslogtreecommitdiffstats
path: root/net/unix/af_unix.c
diff options
context:
space:
mode:
authorPaul E. McKenney <paulmck@kernel.org>2024-01-03 10:59:25 -0800
committerBoqun Feng <boqun.feng@gmail.com>2024-02-14 08:00:57 -0800
commitfd2a749d3f4f7ff0129af1a2c2685faca407ea54 (patch)
tree7d24676d39d06fc42b40f8a7d48a063acb24fa25 /net/unix/af_unix.c
parentsrcu: Improve comments about acceleration leak (diff)
downloadlinux-fd2a749d3f4f7ff0129af1a2c2685faca407ea54.tar.gz
linux-fd2a749d3f4f7ff0129af1a2c2685faca407ea54.zip
rcutorture: Suppress rtort_pipe_count warnings until after stalls
Currently, if rcu_torture_writer() sees fewer than ten grace periods having elapsed during a call to stutter_wait() that actually waited, the rtort_pipe_count warning is emitted. This has worked well for a long time. Except that the rcutorture TREE07 scenario now does a short-term 14-second RCU CPU stall, which can most definitely case false-positive rtort_pipe_count warnings. This commit therefore changes rcu_torture_writer() to compute the full expected holdoff and stall duration, and to refuse to report any rtort_pipe_count warnings until after all stalls have completed. Signed-off-by: Paul E. McKenney <paulmck@kernel.org> Cc: Frederic Weisbecker <frederic@kernel.org> Signed-off-by: Boqun Feng <boqun.feng@gmail.com>
Diffstat (limited to 'net/unix/af_unix.c')
0 files changed, 0 insertions, 0 deletions
ey often can get re-used. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Junio C Hamano <junkio@cox.net> 2007-03-18Make trivial wrapper functions around delta base generation and freeingLinus Torvalds1-2/+14 This doesn't change any code, it just creates a point for where we'd actually do the caching of delta bases that have been generated. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Junio C Hamano <junkio@cox.net> 2007-03-18GIT 1.5.0.5v1.5.0.5Junio C Hamano3-2/+30 Signed-off-by: Junio C Hamano <junkio@cox.net> 2007-03-16[PATCH] clean up pack index handling a bitNicolas Pitre6-87/+90 Especially with the new index format to come, it is more appropriate to encapsulate more into check_packed_git_idx() and assume less of the index format in struct packed_git. To that effect, the index_base is renamed to index_data with void * type so it is not used directly but other pointers initialized with it. This allows for a couple pointer cast removal, as well as providing a better generic name to grep for when adding support for new index versions or formats. And index_data is declared const too while at it. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net> 2007-03-16[PATCH] add test for OFS_DELTA objectsNicolas Pitre1-6/+65 Make sure pack-objects with --delta-base-offset works fine, and that it actually produces smaller packs as expected. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net> 2007-03-16[PATCH] fix t5300-pack-object.shNicolas Pitre1-1/+1 The 'use packed deltified objects' test was flawed as it failed to remove the pack and index from the previous test, effectively preventing the desired pack from being exercised as objects could be found in that other pack instead. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net> 2007-03-16[PATCH] local-fetch.c: some error printing cleanupNicolas Pitre1-20/+13 Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net> 2007-03-16applymbox: brown paper bag fix.Junio C Hamano1-2/+2 An earlier patch 87ab7992 broke applymbox by blindly copying piece from git-am, causing a harmless but annoying series of error messages. Signed-off-by: Junio C Hamano <junkio@cox.net> 2007-03-16git-merge: finish when git-read-tree failsSanti Béjar1-2/+2 The message formating (commit v1.5.0.3-28-gbe242d5) broke the && chain. Noticed by Dmitry Torokhov. Signed-off-by: Santi Béjar <sbejar@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>