]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
libnvdimm, btt: fix btt_rw_page not returning errors
authorVishal Verma <vishal.l.verma@intel.com>
Thu, 29 Jun 2017 22:59:11 +0000 (16:59 -0600)
committerDan Williams <dan.j.williams@intel.com>
Fri, 30 Jun 2017 01:24:28 +0000 (18:24 -0700)
btt_rw_page was not propagating errors frm btt_do_bvec, resulting in any
IO errors via the rw_page path going unnoticed. the pmem driver recently
fixed this in e10624f pmem: fail io-requests to known bad blocks
but same problem in BTT went neglected.

Fixes: 5212e11fde4d ("nd_btt: atomic sector updates")
Cc: <stable@vger.kernel.org>
Cc: Toshi Kani <toshi.kani@hpe.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
drivers/nvdimm/btt.c

index 7ca11df80ae8c9ea49c494bf86487f23454605db..4e56e720288d9aefa86722bfbfed50d03a8e2f64 100644 (file)
@@ -1248,10 +1248,13 @@ static int btt_rw_page(struct block_device *bdev, sector_t sector,
                struct page *page, bool is_write)
 {
        struct btt *btt = bdev->bd_disk->private_data;
+       int rc;
 
-       btt_do_bvec(btt, NULL, page, PAGE_SIZE, 0, is_write, sector);
-       page_endio(page, is_write, 0);
-       return 0;
+       rc = btt_do_bvec(btt, NULL, page, PAGE_SIZE, 0, is_write, sector);
+       if (rc == 0)
+               page_endio(page, is_write, 0);
+
+       return rc;
 }