diff options
author | Boaz Harrosh <bharrosh@panasas.com> | 2011-12-28 19:14:23 +0200 |
---|---|---|
committer | Boaz Harrosh <bharrosh@panasas.com> | 2012-01-06 16:49:07 +0200 |
commit | 361aba569f55dd159b850489a3538253afbb3973 (patch) | |
tree | e5a71f53908a67d8873f1a58ae8d83c64b2fdd7f /fs/exofs/ore.c | |
parent | ffefb8eaa367e8a5c14f779233d9da1fbc23d164 (diff) | |
download | linux-3.10-361aba569f55dd159b850489a3538253afbb3973.tar.gz linux-3.10-361aba569f55dd159b850489a3538253afbb3973.tar.bz2 linux-3.10-361aba569f55dd159b850489a3538253afbb3973.zip |
ore: fix BUG_ON, too few sgs when reading
When reading RAID5 files, in rare cases, we calculated too
few sg segments. There should be two extra for the beginning
and end partial units.
Also "too few sg segments" should not be a BUG_ON there is
all the mechanics in place to handle it, as a short read.
So just return -ENOMEM and the rest of the code will gracefully
split the IO.
[Bug in 3.2.0 Kernel]
CC: Stable Tree <stable@kernel.org>
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Diffstat (limited to 'fs/exofs/ore.c')
-rw-r--r-- | fs/exofs/ore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/exofs/ore.c b/fs/exofs/ore.c index 894f3e192e6..49cf230554a 100644 --- a/fs/exofs/ore.c +++ b/fs/exofs/ore.c @@ -266,7 +266,7 @@ int ore_get_rw_state(struct ore_layout *layout, struct ore_components *oc, /* first/last seg is split */ num_raid_units += layout->group_width; - sgs_per_dev = div_u64(num_raid_units, data_devs); + sgs_per_dev = div_u64(num_raid_units, data_devs) + 2; } else { /* For Writes add parity pages array. */ max_par_pages = num_raid_units * pages_in_unit * |