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 80DFCC636D6 for ; Mon, 20 Feb 2023 20:58:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232302AbjBTU6M (ORCPT ); Mon, 20 Feb 2023 15:58:12 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42176 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232300AbjBTU6J (ORCPT ); Mon, 20 Feb 2023 15:58:09 -0500 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8E99912F16; Mon, 20 Feb 2023 12:58:07 -0800 (PST) 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=tSEs9ht0iaoG7yWtyGM3oIpGa4Q834m/lzRPmNUenPM=; b=P70RpSPdOwsJJCNEvNL96B9dbQ 2ry6UEWVKemTiXJUvKBFX7mFl8R6Ss7NmtVASjgDDpWAODVgkqyHEYy2chdF6JSLwELZFM3Z0s/pg +aHvcT7b/ZG1hvxml3x/qtzkCl29OqEOXY9AhEpqJ73KDYpcRMdUeAtfCvRW9VC4mbdYra3I6uXgo iHmgxQ7G0S18FD99bppKicS8uFglD642Mk0rf1kzAh4PZfVZI9v55iVJEwlgY3rLO4KfjJTxeK9g7 fayoQxIyrUGwlSMQ2oT+0gM2P5JQxRHC/ymIJs8vs1PWgQ39CjS1ceX+3Vd9Vs/TEhR/MGKqEmAgx kqLzS1Qw==; Received: from willy by casper.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1pUDEZ-00C1OQ-VY; Mon, 20 Feb 2023 20:58:04 +0000 Date: Mon, 20 Feb 2023 20:58:03 +0000 From: Matthew Wilcox To: Stephen Rothwell Cc: Andrew Morton , Steve French , CIFS , David Howells , Linux Kernel Mailing List , Linux Next Mailing List , Steve French , "Vishal Moola (Oracle)" Subject: Re: linux-next: manual merge of the mm-stable tree with the cifs tree Message-ID: References: <20230220152933.1ab8fa4a@canb.auug.org.au> <20230220190157.3b43b9a7@canb.auug.org.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230220190157.3b43b9a7@canb.auug.org.au> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Feb 20, 2023 at 07:01:57PM +1100, Stephen Rothwell wrote: > Hi Matthew, > > On Mon, 20 Feb 2023 13:58:29 +0000 Matthew Wilcox wrote: > > > > On Mon, Feb 20, 2023 at 03:29:33PM +1100, Stephen Rothwell wrote: > > > > > > Today's linux-next merge of the mm-stable tree got a conflict in: > > > > > > fs/cifs/file.c > > > > > > between commit: > > > > > > c8859bc0c129 ("cifs: Remove unused code") > > > > > > from the cifs tree and commits: > > > > > > 4cda80f3a7a5 ("cifs: convert wdata_alloc_and_fillpages() to use filemap_get_folios_tag()") > > > d585bdbeb79a ("fs: convert writepage_t callback to pass a folio") > > > > > > from the mm-stable tree. > > > > > > This is a real mess :-( > > > > Doesn't look too bad to me. Dave's commit is just removing the > > functions, so it doesn't matter how they're being changed. > > The problem I see is that an earlier commit in the cifs tree moves the > use of find_get_pages_range_tag() to another function and 4cda80f3a7a5 > then removes find_get_pages_range_tag(). Ah. Just removing all traces of it should be fine. As long as there are no remaining callers of find_get_pages_range_tag() after the merge, it's good from my point of view.