From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,UNWANTED_LANGUAGE_BODY,URIBL_BLOCKED, URIBL_DBL_ABUSE_MALW,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3E663C33CB3 for ; Sat, 1 Feb 2020 15:12:59 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 02B552073D for ; Sat, 1 Feb 2020 15:12:59 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="U/60ZvEX" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 02B552073D Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 12F326B0601; Sat, 1 Feb 2020 10:12:47 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id E1E036B0600; Sat, 1 Feb 2020 10:12:46 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id C212C6B0604; Sat, 1 Feb 2020 10:12:46 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0039.hostedemail.com [216.40.44.39]) by kanga.kvack.org (Postfix) with ESMTP id ABDD16B0600 for ; Sat, 1 Feb 2020 10:12:46 -0500 (EST) Received: from smtpin18.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay04.hostedemail.com (Postfix) with ESMTP id 6A49640EE for ; Sat, 1 Feb 2020 15:12:46 +0000 (UTC) X-FDA: 76441900332.18.war94_8c9069f8f893c X-HE-Tag: war94_8c9069f8f893c X-Filterd-Recvd-Size: 5211 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) by imf16.hostedemail.com (Postfix) with ESMTP for ; Sat, 1 Feb 2020 15:12:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender :Reply-To:Content-Type:Content-ID:Content-Description:Resent-Date:Resent-From :Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=KDUOzl0MVOTcqaG0+tJFJVgrha2fmSoI/N94AdkJq5c=; b=U/60ZvEXY+pLVht5o2+SfdHqov 4paaOeykETdvtFfhbUtphGL37w3zZ2zybA8uAZnCJRKuo4HkDGZt/7CFUVbBp8uXHRP9HuWOKXz6I SfWuNMo31G1PyVvL3u7myJxpeuCklzZSYLlBXEtOnC1irHK+VgGZtsp2Enkf12+mpTi8X5qwD0Osn VEEpzQL57iBtmRTkCuMHFQYRrJLP0i6eTGjtM+8KawYfAKYFGf2J+p8ZWaVNE1yNmJq0xP944EzNC RZtyOJdk4edDTid0C8yvvJkywiCv98bJLwuUS8D881F9gQfRuA+qRbs4eIwTodWapOR8Elds15tld qG/KqF7w==; Received: from willy by bombadil.infradead.org with local (Exim 4.92.3 #3 (Red Hat Linux)) id 1ixuRu-0006I3-Dv; Sat, 01 Feb 2020 15:12:42 +0000 From: Matthew Wilcox To: linux-fsdevel@vger.kernel.org Cc: "Matthew Wilcox (Oracle)" , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: [PATCH v4 11/12] fuse: Convert from readpages to readahead Date: Sat, 1 Feb 2020 07:12:39 -0800 Message-Id: <20200201151240.24082-12-willy@infradead.org> X-Mailer: git-send-email 2.21.1 In-Reply-To: <20200201151240.24082-1-willy@infradead.org> References: <20200201151240.24082-1-willy@infradead.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: From: "Matthew Wilcox (Oracle)" Use the new readahead operation in fuse. Switching away from the read_cache_pages() helper gets rid of an implicit call to put_page(), so we can get rid of the get_page() call in fuse_readpages_fill(). Signed-off-by: Matthew Wilcox (Oracle) --- fs/fuse/file.c | 37 +++++++++++++++++-------------------- 1 file changed, 17 insertions(+), 20 deletions(-) diff --git a/fs/fuse/file.c b/fs/fuse/file.c index ce715380143c..5460ff1bf155 100644 --- a/fs/fuse/file.c +++ b/fs/fuse/file.c @@ -911,9 +911,8 @@ struct fuse_fill_data { unsigned int max_pages; }; =20 -static int fuse_readpages_fill(void *_data, struct page *page) +static int fuse_readpages_fill(struct fuse_fill_data *data, struct page = *page) { - struct fuse_fill_data *data =3D _data; struct fuse_io_args *ia =3D data->ia; struct fuse_args_pages *ap =3D &ia->ap; struct inode *inode =3D data->inode; @@ -929,10 +928,8 @@ static int fuse_readpages_fill(void *_data, struct p= age *page) fc->max_pages); fuse_send_readpages(ia, data->file); data->ia =3D ia =3D fuse_io_alloc(NULL, data->max_pages); - if (!ia) { - unlock_page(page); + if (!ia) return -ENOMEM; - } ap =3D &ia->ap; } =20 @@ -942,7 +939,6 @@ static int fuse_readpages_fill(void *_data, struct pa= ge *page) return -EIO; } =20 - get_page(page); ap->pages[ap->num_pages] =3D page; ap->descs[ap->num_pages].length =3D PAGE_SIZE; ap->num_pages++; @@ -950,15 +946,13 @@ static int fuse_readpages_fill(void *_data, struct = page *page) return 0; } =20 -static int fuse_readpages(struct file *file, struct address_space *mappi= ng, - struct list_head *pages, unsigned nr_pages) +static unsigned fuse_readahead(struct file *file, struct address_space *= mapping, + pgoff_t start, unsigned nr_pages) { struct inode *inode =3D mapping->host; struct fuse_conn *fc =3D get_fuse_conn(inode); struct fuse_fill_data data; - int err; =20 - err =3D -EIO; if (is_bad_inode(inode)) goto out; =20 @@ -966,21 +960,24 @@ static int fuse_readpages(struct file *file, struct= address_space *mapping, data.inode =3D inode; data.nr_pages =3D nr_pages; data.max_pages =3D min_t(unsigned int, nr_pages, fc->max_pages); -; data.ia =3D fuse_io_alloc(NULL, data.max_pages); - err =3D -ENOMEM; if (!data.ia) goto out; =20 - err =3D read_cache_pages(mapping, pages, fuse_readpages_fill, &data); - if (!err) { - if (data.ia->ap.num_pages) - fuse_send_readpages(data.ia, file); - else - fuse_io_free(data.ia); + while (nr_pages) { + struct page *page =3D readahead_page(mapping, start++); + + if (fuse_readpages_fill(&data, page) !=3D 0) + goto out; + nr_pages--; } + + if (data.ia->ap.num_pages) + fuse_send_readpages(data.ia, file); + else + fuse_io_free(data.ia); out: - return err; + return nr_pages; } =20 static ssize_t fuse_cache_read_iter(struct kiocb *iocb, struct iov_iter = *to) @@ -3358,10 +3355,10 @@ static const struct file_operations fuse_file_ope= rations =3D { =20 static const struct address_space_operations fuse_file_aops =3D { .readpage =3D fuse_readpage, + .readahead =3D fuse_readahead, .writepage =3D fuse_writepage, .writepages =3D fuse_writepages, .launder_page =3D fuse_launder_page, - .readpages =3D fuse_readpages, .set_page_dirty =3D __set_page_dirty_nobuffers, .bmap =3D fuse_bmap, .direct_IO =3D fuse_direct_IO, --=20 2.24.1