Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp425999pxf; Wed, 10 Mar 2021 08:56:19 -0800 (PST) X-Google-Smtp-Source: ABdhPJxwu2y02NLulRB9g6niyT7G7s+wO/YVBOyFWcWZBeYEXTsYNDEqYCoDQ/rVvyZz1LzlJzR+ X-Received: by 2002:a17:906:b004:: with SMTP id v4mr4769391ejy.340.1615395379738; Wed, 10 Mar 2021 08:56:19 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1615395379; cv=none; d=google.com; s=arc-20160816; b=jBbMQ1u25HOnvC9CC544BykIYWZ20+eh5VuGHPvyXk0joM8A3iznpN6geryEH0JpZS UQi0d8fuErRyWbPqAp/oJFYi4grDoeW2HZChwdyYXHos7WSa0n5puwsssocZjQZu92je 21NuOL2+Emv2sCy2hi1gUxcLWyIw1MsHfX3Nfc79JWtwQ4g+ydwyJT8y7xVGBP2mqd4i iCyc+dTe3lv5kRrC1Gn9ejVsEG8xkOGFVDschOY0UtPlhhRVxTVAxqO0IyoT8HeYuC9Q QYTstVz8xDFKhjneYRBtTEzmR89GGV7FDcUJTARrKPw8b7JUqPcZwyBuNfJmcJWu30qb 1D6A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=NsCovnI13T54iVpMXiN2hyNAFTDT9FLzIxTgDh454pU=; b=NBCv+WW2Ad5AhUoXLAVBF/xTdyEevcuVcdtzSxWHaxm5EuTKPan7bGijnSf9nCvlzj +I4QUFKiCusaK0GtlGAql6tBW8472Q0ewrNT6cCtrZmdfGUNlGmVsg3X1JrtRJ8A4O3o Fi2L07J2qploPEeOq5mS+k8JCs5Ix+NLMgwyjSp8pMW6TeEQvQLqJAf2EpIgPq1WGh21 L+As4h9gDbp6rSevBfuuHRqDWi8ViiSglTu9d2dCTK5RjYyCFTTYEnD3/56B93jp2nsu Wz+i88yJsoz4Wm66zetjA86fg0J4YGGO4gIRn5yYT0TI80wVYljMYLYM3ylROnqpzXwZ 7kHQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id x16si11831042ejv.622.2021.03.10.08.55.57; Wed, 10 Mar 2021 08:56:19 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233430AbhCJQyz (ORCPT + 99 others); Wed, 10 Mar 2021 11:54:55 -0500 Received: from verein.lst.de ([213.95.11.211]:37292 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233214AbhCJQyu (ORCPT ); Wed, 10 Mar 2021 11:54:50 -0500 Received: by verein.lst.de (Postfix, from userid 2407) id 4452668B05; Wed, 10 Mar 2021 17:54:47 +0100 (CET) Date: Wed, 10 Mar 2021 17:54:47 +0100 From: Christoph Hellwig To: "Matthew Wilcox (Oracle)" Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, linux-kernel@vger.kernel.org, Daniel Vetter , Ian Campbell , Jaya Kumar , Jani Nikula , Christoph Hellwig , linux-mm@kvack.org, linux-fsdevel@vger.kernel.org Subject: Re: [PATCH] fb_defio: Remove custom address_space_operations Message-ID: <20210310165447.GA18299@lst.de> References: <20210310135128.846868-1-willy@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210310135128.846868-1-willy@infradead.org> User-Agent: Mutt/1.5.17 (2007-11-01) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Mar 10, 2021 at 01:51:28PM +0000, Matthew Wilcox (Oracle) wrote: > There's no need to give the page an address_space. Leaving the > page->mapping as NULL will cause the VM to handle set_page_dirty() > the same way that it's set now, and that was the only reason to > set the address_space in the first place. > > Signed-off-by: Matthew Wilcox (Oracle) Looks good: Reviewed-by: Christoph Hellwig