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 5E49FEB64D7 for ; Wed, 28 Jun 2023 15:45:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231993AbjF1Ppf (ORCPT ); Wed, 28 Jun 2023 11:45:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34310 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229626AbjF1Ppd (ORCPT ); Wed, 28 Jun 2023 11:45:33 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 55C968F; Wed, 28 Jun 2023 08:45:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=pNWkzoWi75OsonEIBJ+Q8m8P+EHacFx3/bbIv67/esU=; b=PGQoiw6ry41ahIi9K93q9gItT9 vBS47l4+FQ9TTuGxpWKNwSQpvKFaabEvqHZdxi9ejtzAOVCerIuWPBexSZtlBXAuekWNfsTiL4q3W soQmokAcXM1mu9qY+s0P5tmuCvURC7yflswz1EbodXQsHPOupksSc1PdnzobyRU5iRlpbJ4EHFVBl GELkKp3RU8uzo0s7dfI15MRXg/5xvyDDI+E9wpbpkxbagr7JnCJYUMg02r1ufj5yw1apIwQSj0/eY Cmid2DopceX4GgVtuRPtaCXAZmNALw6MyOCRRJX8bxFTNxEN3UpRyNmlfZDHDqLjYYLHrG+4W/YHC 5hyI5Nmw==; Received: from willy by casper.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1qEXMB-003wDU-20; Wed, 28 Jun 2023 15:45:23 +0000 Date: Wed, 28 Jun 2023 16:45:23 +0100 From: Matthew Wilcox To: Christoph Hellwig Cc: Chris Mason , Josef Bacik , David Sterba , linux-btrfs@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: Re: [PATCH 23/23] mm: remove folio_account_redirty Message-ID: References: <20230628153144.22834-1-hch@lst.de> <20230628153144.22834-24-hch@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230628153144.22834-24-hch@lst.de> Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Wed, Jun 28, 2023 at 05:31:44PM +0200, Christoph Hellwig wrote: > Fold folio_account_redirty into folio_redirty_for_writepage now > that all other users except for the also unused account_page_redirty > wrapper are gone. > > Signed-off-by: Christoph Hellwig Reviewed-by: Matthew Wilcox (Oracle)