Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1630ee5e authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge tag 'upstream-4.1-rc4' of git://git.infradead.org/linux-ubifs

Pull UBI bufix from Richard Weinberger:
 "This contains a single bug fix for the UBI block driver"

* tag 'upstream-4.1-rc4' of git://git.infradead.org/linux-ubifs:
  UBI: block: Add missing cache flushes
parents 6a8098a4 98fb1ffd
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -310,6 +310,8 @@ static void ubiblock_do_work(struct work_struct *work)
	blk_rq_map_sg(req->q, req, pdu->usgl.sg);
	blk_rq_map_sg(req->q, req, pdu->usgl.sg);


	ret = ubiblock_read(pdu);
	ret = ubiblock_read(pdu);
	rq_flush_dcache_pages(req);

	blk_mq_end_request(req, ret);
	blk_mq_end_request(req, ret);
}
}