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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A8F2DC433F5 for ; Sun, 8 May 2022 20:31:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232276AbiEHUf3 (ORCPT ); Sun, 8 May 2022 16:35:29 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55268 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232507AbiEHUfO (ORCPT ); Sun, 8 May 2022 16:35:14 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 40564132 for ; Sun, 8 May 2022 13:31:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.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; bh=vBm0ZV9rB7YVCkC0uUNmFJTiY2skLjurlT/qsT1Jmy8=; b=P2O3FuErtTHoYqAvikKmn2MEni FgY6noD7mWtW2ax/jbCv8LY9GkZgNgg7vG+Rqm7yBLBQanREfNmBo8NFw4c7mps84Tah7Z3zSMFon gZwyTovmxFZqnEeORzGmzEnvDtW9vUHjYrapn3RWJ8JJxkBIeZtC99/4VMJZ17x3VHZJrPEiyDzxr wUEMyrKxv55Si0JgjH2bYyKDpcLfNAJ97HUBgNhHVYBy1wkPVvbLQuCGwZXUrJzx9ZboJIzOT/DCH b1QNdMDewzwxpia/6JVe/4A3MfRMY1clzNYBRXF7KnQIBEgH/amsBmKLI/xeWhZGG9EuaQ/g2Qpl8 5i5D5Usg==; Received: from willy by casper.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1nnnYh-002nkP-By; Sun, 08 May 2022 20:31:15 +0000 From: "Matthew Wilcox (Oracle)" To: linux-fsdevel@vger.kernel.org Cc: "Matthew Wilcox (Oracle)" Subject: [PATCH 0/4] Miscellaneous folio conversions Date: Sun, 8 May 2022 21:31:07 +0100 Message-Id: <20220508203111.667840-1-willy@infradead.org> X-Mailer: git-send-email 2.31.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org Mostly this is prep work for the following patches. Matthew Wilcox (Oracle) (4): readahead: Use a folio in read_pages() fs: Convert is_dirty_writeback() to take a folio mm/readahead: Convert page_cache_async_readahead to take a folio buffer: Rewrite nobh_truncate_page() to use folios Documentation/filesystems/vfs.rst | 10 ++-- fs/btrfs/relocation.c | 5 +- fs/btrfs/send.c | 3 +- fs/buffer.c | 80 ++++++++++++++----------------- fs/nfs/file.c | 21 ++++---- fs/verity/enable.c | 29 ++++++----- include/linux/buffer_head.h | 2 +- include/linux/fs.h | 2 +- include/linux/pagemap.h | 6 +-- mm/readahead.c | 25 +++++----- mm/vmscan.c | 2 +- 11 files changed, 86 insertions(+), 99 deletions(-) -- 2.34.1