All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: axboe@kernel.dk, hch@infradead.org, akpm@linux-foundation.org,
	torvalds@linux-foundation.org, darrick.wong@oracle.com
Cc: martin.petersen@oracle.com, linux-api@vger.kernel.org,
	linux-kernel@vger.kernel.org, shane.seymour@hpe.com,
	bfields@fieldses.org, linux-fsdevel@vger.kernel.org,
	jlayton@poochiereds.net
Subject: [PATCH 1/2] block: invalidate the page cache when issuing BLKZEROOUT.
Date: Tue, 01 Mar 2016 20:09:40 -0800	[thread overview]
Message-ID: <20160302040940.16685.85318.stgit@birch.djwong.org> (raw)
In-Reply-To: <20160302040932.16685.62789.stgit@birch.djwong.org>

Invalidate the page cache (as a regular O_DIRECT write would do) to avoid
returning stale cache contents at a later time.

v5: Refactor the 4.4 refactoring of the ioctl code into separate functions.
Split the page invalidation and the new ioctl into separate patches.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
---
 block/ioctl.c |   29 +++++++++++++++++++++++------
 1 file changed, 23 insertions(+), 6 deletions(-)


diff --git a/block/ioctl.c b/block/ioctl.c
index d8996bb..c6eb462 100644
--- a/block/ioctl.c
+++ b/block/ioctl.c
@@ -226,7 +226,9 @@ static int blk_ioctl_zeroout(struct block_device *bdev, fmode_t mode,
 		unsigned long arg)
 {
 	uint64_t range[2];
-	uint64_t start, len;
+	struct address_space *mapping;
+	uint64_t start, end, len;
+	int ret;
 
 	if (!(mode & FMODE_WRITE))
 		return -EBADF;
@@ -236,18 +238,33 @@ static int blk_ioctl_zeroout(struct block_device *bdev, fmode_t mode,
 
 	start = range[0];
 	len = range[1];
+	end = start + len - 1;
 
 	if (start & 511)
 		return -EINVAL;
 	if (len & 511)
 		return -EINVAL;
-	start >>= 9;
-	len >>= 9;
-
-	if (start + len > (i_size_read(bdev->bd_inode) >> 9))
+	if (end >= (uint64_t)i_size_read(bdev->bd_inode))
+		return -EINVAL;
+	if (end < start)
 		return -EINVAL;
 
-	return blkdev_issue_zeroout(bdev, start, len, GFP_KERNEL, false);
+	/* Invalidate the page cache, including dirty pages */
+	mapping = bdev->bd_inode->i_mapping;
+	truncate_inode_pages_range(mapping, start, end);
+
+	ret = blkdev_issue_zeroout(bdev, start >> 9, len >> 9, GFP_KERNEL,
+				    false);
+	if (ret)
+		return ret;
+
+	/*
+	 * Invalidate again; if someone wandered in and dirtied a page,
+	 * the caller will be given -EBUSY.
+	 */
+	return invalidate_inode_pages2_range(mapping,
+					     start >> PAGE_CACHE_SHIFT,
+					     end >> PAGE_CACHE_SHIFT);
 }
 
 static int put_ushort(unsigned long arg, unsigned short val)

  reply	other threads:[~2016-03-02  4:10 UTC|newest]

Thread overview: 135+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-02  4:09 [PATCH v5.1 0/2] create BLKZEROOUT ioctl that invalidates page cache Darrick J. Wong
2016-03-02  4:09 ` Darrick J. Wong [this message]
2016-03-02  9:19   ` [PATCH 1/2] block: invalidate the page cache when issuing BLKZEROOUT Christoph Hellwig
2016-03-02  4:09 ` [PATCH 2/2] block: create ioctl to discard-or-zeroout a range of blocks Darrick J. Wong
2016-03-02  9:20   ` Christoph Hellwig
2016-03-02 18:52   ` Linus Torvalds
2016-03-02 18:52     ` Linus Torvalds
2016-03-02 22:56     ` Darrick J. Wong
2016-03-02 23:49       ` Linus Torvalds
2016-03-03 17:02         ` Theodore Ts'o
2016-03-03 17:55           ` Linus Torvalds
2016-03-03 17:55             ` Linus Torvalds
2016-03-03 18:00             ` Christoph Hellwig
2016-03-03 18:00               ` Christoph Hellwig
2016-03-03 18:14             ` Martin K. Petersen
2016-03-03 18:14               ` Martin K. Petersen
2016-03-03 18:21             ` Theodore Ts'o
2016-03-03 18:21               ` Theodore Ts'o
2016-03-03 18:01         ` Martin K. Petersen
2016-03-03 18:01           ` Martin K. Petersen
2016-03-03 18:09           ` Christoph Hellwig
2016-03-03 18:09             ` Christoph Hellwig
2016-03-03 18:12             ` Darrick J. Wong
2016-03-03 18:12               ` Darrick J. Wong
2016-03-03 18:54             ` Martin K. Petersen
2016-03-03 22:39               ` Theodore Ts'o
2016-03-03 22:39                 ` Theodore Ts'o
2016-03-03 23:10                 ` Dave Chinner
2016-03-03 23:10                   ` Dave Chinner
2016-03-04  0:20                   ` Theodore Ts'o
2016-03-04  0:20                     ` Theodore Ts'o
2016-03-09 22:20                   ` Gregory Farnum
2016-03-09 22:20                     ` Gregory Farnum
2016-03-09 23:08                     ` Theodore Ts'o
2016-03-10 14:58                       ` Ric Wheeler
2016-03-10 18:33                         ` Linus Torvalds
2016-03-10 18:33                           ` Linus Torvalds
2016-03-10 21:47                           ` Theodore Ts'o
2016-03-10 21:47                             ` Theodore Ts'o
2016-03-11  4:42                           ` Ric Wheeler
2016-03-11 13:59                             ` One Thousand Gnomes
2016-03-11 15:27                               ` Theodore Ts'o
2016-03-11 15:27                                 ` Theodore Ts'o
2016-03-11 17:23                               ` Linus Torvalds
2016-03-11 17:30                                 ` Andy Lutomirski
2016-03-11 17:30                                   ` Andy Lutomirski
2016-03-11 18:25                                   ` Linus Torvalds
2016-03-11 22:30                                     ` Dave Chinner
2016-03-11 22:30                                       ` Dave Chinner
2016-03-12  0:33                                       ` Linus Torvalds
2016-03-12  0:33                                         ` Linus Torvalds
2016-03-12  0:35                                       ` Theodore Ts'o
2016-03-12  0:35                                         ` Theodore Ts'o
2016-03-12  0:44                                         ` Linus Torvalds
2016-03-12  0:44                                           ` Linus Torvalds
2016-03-12  7:19                                           ` Theodore Ts'o
2016-03-12 10:11                                             ` Thomas Schoebel-Theuer
2016-03-12 10:11                                               ` Thomas Schoebel-Theuer
2016-03-13 23:30                                           ` Dave Chinner
2016-03-13 23:30                                             ` Dave Chinner
2016-03-14 10:34                                             ` Ric Wheeler
2016-03-14 10:34                                               ` Ric Wheeler
2016-03-14 14:46                                               ` Theodore Ts'o
2016-03-14 14:46                                                 ` Theodore Ts'o
2016-03-15 20:14                                                 ` Dave Chinner
2016-03-15 20:43                                                   ` Linus Torvalds
2016-03-15 20:43                                                     ` Linus Torvalds
2016-03-15 21:29                                                     ` Theodore Ts'o
2016-03-15 21:29                                                       ` Theodore Ts'o
2016-03-15 22:33                                                     ` Dave Chinner
2016-03-15 22:33                                                       ` Dave Chinner
2016-03-15 22:52                                                       ` Theodore Ts'o
2016-03-16  1:51                                                         ` Darrick J. Wong
2016-03-16 21:45                                                           ` Andreas Dilger
2016-03-16 21:45                                                             ` Andreas Dilger
2016-03-17  0:15                                                             ` Theodore Ts'o
2016-03-17  0:15                                                               ` Theodore Ts'o
2016-03-17  0:33                                                               ` Eric Sandeen
2016-03-17  0:33                                                                 ` Eric Sandeen
2016-03-17  0:59                                                                 ` Theodore Ts'o
2016-03-17  5:18                                                                 ` Gregory Farnum
2016-03-17  5:18                                                                   ` Gregory Farnum
2016-03-17 12:36                                                                   ` Theodore Ts'o
2016-03-17 17:47                                                                   ` Linus Torvalds
2016-03-17 17:47                                                                     ` Linus Torvalds
2016-03-17 17:50                                                                     ` Ric Wheeler
2016-03-17 17:59                                                                       ` Linus Torvalds
2016-03-17 18:35                                                                     ` Chris Mason
2016-03-17 18:35                                                                       ` Chris Mason
2016-03-17 20:49                                                                       ` Andreas Dilger
2016-03-17 20:49                                                                         ` Andreas Dilger
2016-03-17 21:00                                                                         ` Chris Mason
2016-03-17 21:00                                                                           ` Chris Mason
2016-03-18  3:20                                                                           ` Theodore Ts'o
2016-03-18  3:20                                                                             ` Theodore Ts'o
2016-03-18 15:15                                                                             ` Jeff Moyer
2016-03-18 15:15                                                                               ` Jeff Moyer
2016-03-18 20:05                                                                               ` Martin K. Petersen
2016-03-18 20:05                                                                                 ` Martin K. Petersen
2016-03-18  6:52                                                                     ` Gregory Farnum
2016-03-18  6:52                                                                       ` Gregory Farnum
2016-03-18  7:19                                                                       ` Linus Torvalds
2016-03-18  7:19                                                                         ` Linus Torvalds
2016-03-17  1:01                                                           ` Dave Chinner
2016-03-17  1:01                                                             ` Dave Chinner
2016-03-17  2:38                                                             ` Darrick J. Wong
2016-03-18 22:55                                                         ` NeilBrown
2016-03-18 22:55                                                           ` NeilBrown
2016-03-15 23:06                                                       ` Linus Torvalds
2016-03-15 23:14                                                         ` Linus Torvalds
2016-03-15 23:14                                                           ` Linus Torvalds
2016-03-16  0:08                                                           ` Dave Chinner
2016-03-16  0:08                                                             ` Dave Chinner
2016-03-15 23:52                                                         ` Dave Chinner
2016-03-16  0:06                                                           ` Linus Torvalds
2016-03-16  0:30                                                             ` Eric Sandeen
2016-03-16  0:30                                                               ` Eric Sandeen
2016-03-16  0:51                                                               ` Chris Mason
2016-03-16  0:51                                                                 ` Chris Mason
2016-03-16 22:23                                                                 ` Chris Mason
2016-03-16 22:23                                                                   ` Chris Mason
2016-03-17 13:49                                                                   ` Ric Wheeler
2016-03-17 13:49                                                                     ` Ric Wheeler
2016-03-15 22:38                                                   ` Eric Sandeen
2016-03-15 22:38                                                     ` Eric Sandeen
2016-03-03 22:56               ` Dave Chinner
2016-03-04  2:30                 ` Thomas Schoebel-Theuer
2016-03-04  2:30                   ` Thomas Schoebel-Theuer
2016-03-03 18:14           ` Linus Torvalds
2016-03-03 18:14             ` Linus Torvalds
2016-03-02  9:15 ` [PATCH v5.1 0/2] create BLKZEROOUT ioctl that invalidates page cache Arnd Bergmann
2016-03-02  9:44   ` Christoph Hellwig
2016-03-02  9:44     ` Christoph Hellwig
2016-03-02 10:55     ` Arnd Bergmann
2016-03-02 10:55       ` Arnd Bergmann

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=20160302040940.16685.85318.stgit@birch.djwong.org \
    --to=darrick.wong@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=axboe@kernel.dk \
    --cc=bfields@fieldses.org \
    --cc=hch@infradead.org \
    --cc=jlayton@poochiereds.net \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=shane.seymour@hpe.com \
    --cc=torvalds@linux-foundation.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.