]> git.baikalelectronics.ru Git - kernel.git/commit
md: Fix a bug in linear.c causing which_dev() to return the wrong device.
authorAndre Noll <maan@systemlinux.org>
Fri, 6 Feb 2009 04:10:52 +0000 (15:10 +1100)
committerNeilBrown <neilb@suse.de>
Fri, 6 Feb 2009 04:10:52 +0000 (15:10 +1100)
commit8ef7fb68c71a8ac1388f84215d14c907cf97ebbe
treea2bf0b7c3a277c65cdad307a3d48ee358868769c
parent7f79e3733cc97f2c23d138441dbd4bd89853ad7e
md: Fix a bug in linear.c causing which_dev() to return the wrong device.

16cffaf32b3cc7107c1be33c7bec6fb399a8cc43 introduced the following
bug in linear software raid for large arrays on 32 bit machines:

which_dev() computes the device holding a given sector by shifting
down the sector number to a 32 bit range, dividing by the array
spacing and looking up the resulting index in the hash table of
the array.

Because the computed index might be slightly too small, a loop at
the end of which_dev() increases the index until the given sector
actually falls into the range of the device associated with that index.

The changes of the above mentioned commit caused this loop to check
whether the _index_ rather than the sector number is small enough,
effectively bypassing the loop and thus possibly returning the wrong
device.

As reported by Simon Kirby, this leads to errors such as

linear_make_request: Sector 2340486136 out of bounds on dev sdi: 156301312 sectors, offset 2109870464

Fix this bug by introducing a local variable for the index so that
the variable containing the passed sector is left unchanged.

Cc: stable@kernel.org
Signed-off-by: Andre Noll <maan@systemlinux.org>
Signed-off-by: NeilBrown <neilb@suse.de>
drivers/md/linear.c