From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from casper.infradead.org (casper.infradead.org [90.155.50.34]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6AE5A1514FF for ; Wed, 27 Mar 2024 18:53:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=90.155.50.34 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711565599; cv=none; b=XOazBjNE0vYQR7bGFUFumAaUuwLdB12IkgG33TM7ofKACSAf7tjWVmvtwr3GJlqG4eOZlsD8oA0gkyMYFVslGBYn49BFVPlglxKDUeY3vRhMKAIQSMMUlrv3n6Ea2QPYxpN7mom09ja1NRATYwPhGQ5/KHdyekd2YDAnZVJ+1q4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711565599; c=relaxed/simple; bh=Jtccu7UzJToa9o4RH7l5v8KO+oSXLf0FlMxRK9HtvuM=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=TafEWpKlryw+vxtdpmegqMR6kGQiFazz85FgaSmktaM8eQ6qtRZBctudeoPgCWY5HcT4kqg4h7eUi6X2j38muqqtx77p4QcsZCTnxUJ1P7rLL8no6Q8S1L/hvjMNP/0Hxvjm5IXhpx2jhoaPvljBpkUr3zbeaistDaA0aKWeKFg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=NrGU0z+z; arc=none smtp.client-ip=90.155.50.34 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="NrGU0z+z" 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=2gpiYoX81ux2JVxazaRUF8idqOkP7INSc0VwgF0Pp9A=; b=NrGU0z+zggHEwTsmZsGhiWa47b 7so4aCaCXIFeMT2DTE2XfggxBfUlvUKikTVq4DZ0jzQHfPaMy40CeYOilK9+mlCXgBnUy2UGGZ1Hp tfYVgxGAuuKz0JsDeCcZwSPQfhy7g4fW6rIOPSPIlpdVGl7HMx+t3GIo0Nj1W0vqLBO6FL4SEnzkr j20vjJDcKQL+peLroPK2pFf6cm3zjAGUx1dPJTObqMUJA/EaBVjQ23+wiVVIhWyTZaYMZvpPlJR5j ZXPJA73xOlKbTa78VOOn64AgXUDF4yVCdl5YDWzq8GrXOd2bdVu8tkPoNMWvBDiYv2XwJNCPrz+A3 U5ZL4ETQ==; Received: from willy by casper.infradead.org with local (Exim 4.97.1 #2 (Red Hat Linux)) id 1rpYOf-00000004W0G-1diN; Wed, 27 Mar 2024 18:53:13 +0000 Date: Wed, 27 Mar 2024 18:53:13 +0000 From: Matthew Wilcox To: Kefeng Wang Cc: Andrew Morton , linux-fsdevel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH] mm: remove __set_page_dirty_nobuffers() Message-ID: References: <20240327143008.3739435-1-wangkefeng.wang@huawei.com> Precedence: bulk X-Mailing-List: linux-fsdevel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240327143008.3739435-1-wangkefeng.wang@huawei.com> On Wed, Mar 27, 2024 at 10:30:08PM +0800, Kefeng Wang wrote: > There are no more callers of __set_page_dirty_nobuffers(), remove it. > > Signed-off-by: Kefeng Wang Yes, I have this exact patch in my tree, stuck behind a mess of other patches for the last two months. It had to wait until the ubifs patches landed (which removed the last user), and as you can see I've been busy submitting other patches first. Reviewed-by: Matthew Wilcox (Oracle)