]> git.karo-electronics.de Git - karo-tx-linux.git/commit
md/raid5: fix FUA request handling in ops_run_io()
authorNamhyung Kim <namhyung@gmail.com>
Tue, 14 Jun 2011 04:20:19 +0000 (14:20 +1000)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 17 May 2012 15:20:51 +0000 (11:20 -0400)
commit52df3ade75b2359ec54db84769a36f1f2125dc52
tree28e47dcb8df81e97539e9d81f1134d10513d29c8
parenta356578add4be8d1209645f8ba60f235db1f6e12
md/raid5: fix FUA request handling in ops_run_io()

commit b062962edb086011e94ec4d9eb3f6a6d814f2a8f upstream.

Commit e9c7469bb4f5 ("md: implment REQ_FLUSH/FUA support")
introduced R5_WantFUA flag and set rw to WRITE_FUA in that case.
However remaining code still checks whether rw is exactly same
as WRITE or not, so FUAed-write ends up with being treated as
READ. Fix it.

This bug has been present since 2.6.37 and the fix is suitable for any
-stable kernel since then.  It is not clear why this has not caused
more problems.

Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: NeilBrown <neilb@suse.de>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
drivers/md/raid5.c