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 1B3F5C4708D for ; Fri, 16 Dec 2022 20:54:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232002AbiLPUyb (ORCPT ); Fri, 16 Dec 2022 15:54:31 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45000 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232029AbiLPUyE (ORCPT ); Fri, 16 Dec 2022 15:54:04 -0500 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A08045EDF5; Fri, 16 Dec 2022 12:54:03 -0800 (PST) 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=kQv6RkxWyrCYRrHEjnn1N2LGczjsV+6qdNwSrNRRtbU=; b=vJZOeBvvwLhtV+tp9GJPBIkpAD m+hu5Q/y7ap8jXA4EiUWFjHXHpyv4f0Gb0WrusF5L2FOvg4EnYw5FymANmCzDj8LrCH/Y49tmv9IV rBJdCZcyROe99BuAS6YQGgNA4uRSK5n/FXhijtvJrQoefLz9hNLfemhRd74xRr9/krW6VBp/r5Hud uWJBxMZooi5zEydMpBjhEa6Jw7Wu/G3q++6UdYXnlg5LMqTM8TD+/lRDb/P9SexcfMc8yUDojYw4p cpOhVCV+4WDhO+EXfXXHFS6KXKeHRvB6sorFpP+zvRTw95ZGswvMlzdZYZp65cO662lvIogCo4XAG +Kuav7cg==; Received: from willy by casper.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1p6HiI-00Frfw-F3; Fri, 16 Dec 2022 20:53:50 +0000 From: "Matthew Wilcox (Oracle)" To: reiserfs-devel@vger.kernel.org Cc: "Matthew Wilcox (Oracle)" , Jan Kara , linux-fsdevel@vger.kernel.org, "Fabio M. De Francesco" , Ira Weiny Subject: [PATCH 8/8] reiserfs: Use flush_dcache_folio() in reiserfs_quota_write() Date: Fri, 16 Dec 2022 20:53:47 +0000 Message-Id: <20221216205348.3781217-9-willy@infradead.org> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20221216205348.3781217-1-willy@infradead.org> References: <20221216205348.3781217-1-willy@infradead.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org Remove a use of b_page. Signed-off-by: Matthew Wilcox (Oracle) --- fs/reiserfs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c index 929acce6e731..ab9502381b40 100644 --- a/fs/reiserfs/super.c +++ b/fs/reiserfs/super.c @@ -2567,7 +2567,7 @@ static ssize_t reiserfs_quota_write(struct super_block *sb, int type, } lock_buffer(bh); memcpy(bh->b_data + offset, data, tocopy); - flush_dcache_page(bh->b_page); + flush_dcache_folio(bh->b_folio); set_buffer_uptodate(bh); unlock_buffer(bh); reiserfs_write_lock(sb); -- 2.35.1