diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-09 03:27:58 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-09 03:27:58 +0100 |
commit | cdecbb336e64b8a846bf97c5a275dc94fdb1083d (patch) | |
tree | 305449237d969d0476bf66ccf401132f8265c287 /fs | |
parent | Merge tag 'trace-fixes-v3.19-rc7' of git://git.kernel.org/pub/scm/linux/kerne... (diff) | |
parent | aio: annotate aio_read_event_ring for sleep patterns (diff) | |
download | linux-cdecbb336e64b8a846bf97c5a275dc94fdb1083d.tar.xz linux-cdecbb336e64b8a846bf97c5a275dc94fdb1083d.zip |
Merge git://git.kvack.org/~bcrl/aio-fixes
Pull aio nested sleep annotation from Ben LaHaise,
* git://git.kvack.org/~bcrl/aio-fixes:
aio: annotate aio_read_event_ring for sleep patterns
Diffstat (limited to 'fs')
-rw-r--r-- | fs/aio.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1140,6 +1140,13 @@ static long aio_read_events_ring(struct kioctx *ctx, long ret = 0; int copy_ret; + /* + * The mutex can block and wake us up and that will cause + * wait_event_interruptible_hrtimeout() to schedule without sleeping + * and repeat. This should be rare enough that it doesn't cause + * peformance issues. See the comment in read_events() for more detail. + */ + sched_annotate_sleep(); mutex_lock(&ctx->ring_lock); /* Access to ->ring_pages here is protected by ctx->ring_lock. */ |