]> git.baikalelectronics.ru Git - kernel.git/commit
md/raid0: fix restore to sector variable in raid0_make_request
authorEric Work <work.eric@gmail.com>
Tue, 19 May 2015 06:26:23 +0000 (23:26 -0700)
committerNeilBrown <neilb@suse.de>
Wed, 20 May 2015 23:14:25 +0000 (09:14 +1000)
commit2c57951d6cfe8bcbcbc0ef1509df44034c4560bb
tree824d88d9b79c668fb18594d4fe7bcbc414ee43bc
parent772eb32264f80584e805cad13c3270d56ead3650
md/raid0: fix restore to sector variable in raid0_make_request

The variable "sector" in "raid0_make_request()" was improperly updated
by a call to "sector_div()" which modifies its first argument in place.
Commit 3b37fc7e2f25be4d887f692730b239d1384160ac restored this variable
after the call for later re-use.  Unfortunetly the restore was done after
the referenced variable "bio" was advanced.  This lead to the original
value and the restored value being different.  Here we move this line to
the proper place.

One observed side effect of this bug was discarding a file though
unlinking would cause an unrelated file's contents to be discarded.

Signed-off-by: NeilBrown <neilb@suse.de>
Fixes: 3b37fc7e2f25 ("md/raid0: fix bug with chunksize not a power of 2.")
Cc: stable@vger.kernel.org (any that received above backport)
URL: https://bugzilla.kernel.org/show_bug.cgi?id=98501
drivers/md/raid0.c