diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-08-12 16:19:43 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-08-12 16:19:43 -0700 |
commit | 89a55278dee487b172fb16295ccb2d0b2a1b319b (patch) | |
tree | 403cbf3888391e46018b9e6d2230166435816e3d | |
parent | a99bcdce8395e3eab534d69eb886a1563030bc00 (diff) | |
parent | 9a51544774a57fcb94994a61860a17f9e63a8d7b (diff) | |
download | op-kernel-dev-89a55278dee487b172fb16295ccb2d0b2a1b319b.zip op-kernel-dev-89a55278dee487b172fb16295ccb2d0b2a1b319b.tar.gz |
Merge tag 'for-linus-20170812' of git://git.infradead.org/linux-mtd
Pull another MTD fix from Brian Norris:
"An mtdblock regression occurred in -rc1 (all writes were broken!), in
the process of some block subsystem refactoring. Noticed and fixed
last week, but I'm a little slow on the uptake"
* tag 'for-linus-20170812' of git://git.infradead.org/linux-mtd:
mtd: blkdevs: Fix mtd block write failure
-rw-r--r-- | drivers/mtd/mtd_blkdevs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/mtd_blkdevs.c b/drivers/mtd/mtd_blkdevs.c index f336a9b..9ec8f03 100644 --- a/drivers/mtd/mtd_blkdevs.c +++ b/drivers/mtd/mtd_blkdevs.c @@ -113,6 +113,7 @@ static blk_status_t do_blktrans_request(struct mtd_blktrans_ops *tr, for (; nsect > 0; nsect--, block++, buf += tr->blksize) if (tr->writesect(dev, block, buf)) return BLK_STS_IOERR; + return BLK_STS_OK; default: return BLK_STS_IOERR; } |