diff options
author | Davidlohr Bueso <[email protected]> | 2015-10-30 05:25:59 +0900 |
---|---|---|
committer | Jens Axboe <[email protected]> | 2015-10-30 05:25:59 +0900 |
commit | cdea01b2bf98affb7e9c44530108a4a28535eee8 (patch) | |
tree | d76f70baf592052d4dff44e45bcde1ee29062570 /net/unix/af_unix.c | |
parent | cfd0c552a8272d691691f40073654d775836e23a (diff) |
blktrace: re-write setting q->blk_trace
This is really about simplifying the double xchg patterns into
a single cmpxchg, with the same logic. Other than the immediate
cleanup, there are some subtleties this change deals with:
(i) While the load of the old bt is fully ordered wrt everything,
ie:
old_bt = xchg(&q->blk_trace, bt); [barrier]
if (old_bt)
(void) xchg(&q->blk_trace, old_bt); [barrier]
blk_trace could still be changed between the xchg and the old_bt
load. Note that this description is merely theoretical and afaict
very small, but doing everything in a single context with cmpxchg
closes this potential race.
(ii) Ordering guarantees are obviously kept with cmpxchg.
(iii) Gets rid of the hacky-by-nature (void)xchg pattern.
Signed-off-by: Davidlohr Bueso <[email protected]>
eviewed-by: Jeff Moyer <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
Diffstat (limited to 'net/unix/af_unix.c')
0 files changed, 0 insertions, 0 deletions