]> git.baikalelectronics.ru Git - kernel.git/commit
block: don't warn when doing fsync on read-only devices
authorMikulas Patocka <mpatocka@redhat.com>
Wed, 5 Sep 2018 22:14:36 +0000 (16:14 -0600)
committerJens Axboe <axboe@kernel.dk>
Wed, 5 Sep 2018 22:14:36 +0000 (16:14 -0600)
commita713cb6aeff40c889b85f804ad079970fc6512ed
treea53368fb013c47854de1fc6d18a97e59a1390232
parent4b4a6a6ef84c7a095db23ecc52c77797b95b983e
block: don't warn when doing fsync on read-only devices

It is possible to call fsync on a read-only handle (for example, fsck.ext2
does it when doing read-only check), and this call results in kernel
warning.

The patch 7726ba225f96 ("block: don't warn for flush on read-only device")
attempted to disable the warning, but it is buggy and it doesn't
(op_is_flush tests flags, but bio_op strips off the flags).

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Fixes: ed1565868cf1 ("block: fail op_is_write() requests to read-only partitions")
Cc: stable@vger.kernel.org # 4.18
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-core.c