From: Mikulas Patocka <mpatocka@redhat.com>
To: Jens Axboe <axboe@kernel.dk>
Cc: linux-block@vger.kernel.org, dm-devel@redhat.com,
Marc Smith <msmith626@gmail.com>
Subject: [PATCH] block: flush the disk cache on BLKFLSBUF
Date: Mon, 26 Jun 2023 22:25:28 +0200 (CEST) [thread overview]
Message-ID: <1a33ace-57f9-9ef9-b967-d6617ca33089@redhat.com> (raw)
The BLKFLSBUF ioctl doesn't send the flush bio to the block device, thus
flushed data may be lurking in the disk cache and they may not be really
flushed to the stable storage.
This patch adds the call to blkdev_issue_flush to blkdev_flushbuf.
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
---
block/ioctl.c | 1 +
1 file changed, 1 insertion(+)
Index: linux-2.6/block/ioctl.c
===================================================================
--- linux-2.6.orig/block/ioctl.c
+++ linux-2.6/block/ioctl.c
@@ -351,6 +351,7 @@ static int blkdev_flushbuf(struct block_
return -EACCES;
fsync_bdev(bdev);
invalidate_bdev(bdev);
+ blkdev_issue_flush(bdev);
return 0;
}
next reply other threads:[~2023-06-26 20:26 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-26 20:25 Mikulas Patocka [this message]
2023-06-27 4:52 ` [PATCH] block: flush the disk cache on BLKFLSBUF Christoph Hellwig
2023-06-27 15:31 ` Mikulas Patocka
2023-06-27 15:49 ` Christoph Hellwig
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1a33ace-57f9-9ef9-b967-d6617ca33089@redhat.com \
--to=mpatocka@redhat.com \
--cc=axboe@kernel.dk \
--cc=dm-devel@redhat.com \
--cc=linux-block@vger.kernel.org \
--cc=msmith626@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox