]> git.baikalelectronics.ru Git - kernel.git/commit
aio: protect reqs_available updates from changes in interrupt handlers
authorBenjamin LaHaise <bcrl@kvack.org>
Mon, 14 Jul 2014 16:49:26 +0000 (12:49 -0400)
committerBenjamin LaHaise <bcrl@kvack.org>
Mon, 14 Jul 2014 17:05:26 +0000 (13:05 -0400)
commit226623c5469a3535a40dfc8f2490147c508c3b74
tree93044b03084bf998eec530621486791e987717ed
parent55c81957587c624c3b752b33e0ecc9ff12cebe14
aio: protect reqs_available updates from changes in interrupt handlers

As of commit 545312b8ac3158e09788bd77c7ff7457b67978bb it is now possible to
have put_reqs_available() called from irq context.  While put_reqs_available()
is per cpu, it did not protect itself from interrupts on the same CPU.  This
lead to aio_complete() corrupting the available io requests count when run
under a heavy O_DIRECT workloads as reported by Robert Elliott.  Fix this by
disabling irq updates around the per cpu batch updates of reqs_available.

Many thanks to Robert and folks for testing and tracking this down.

Reported-by: Robert Elliot <Elliott@hp.com>
Tested-by: Robert Elliot <Elliott@hp.com>
Signed-off-by: Benjamin LaHaise <bcrl@kvack.org>
Cc: Jens Axboe <axboe@kernel.dk>, Christoph Hellwig <hch@infradead.org>
Cc: stable@vger.kenel.org
fs/aio.c