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 A7B7D6033 for ; Tue, 5 Jul 2022 23:39:06 +0000 (UTC) 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=7dOROrO9ycYqqFp5LnucNCHf+IZBjlMW0xOCXAdstaI=; b=SH/FIVKv4ze5KjxElB8DD+inAv WdgdA14/H/bwLYy5QM/Kru16CyPUMnpZ+eg35afyOs5VvA4c7xWgYmI8Nx9YO12eNeJqwzH45+qTr dHJcvlOSkhByWy8WIj0WctzuLSc+wZfi2mhShSWc/U6kDWohGRVQfpjj0irNXCCBFxSkoeTtuNfAR sMnsK0WTTuTqdIEOCmlQbyxp8vlUEbcQIjFBTj2Dlz0/ivW7eHjSry8gjEQOw2nKpAPqTRuJ2oJd5 +2a1PjbuHoa08mVoKksM3iFz7LHK/1/kCuK7wIkfMK0Pw7DRhpA/Z/ik0lh87lWBSpoCu6HGi1i0a RJmKoX8g==; Received: from willy by casper.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1o8s7t-0010o7-IO; Tue, 05 Jul 2022 23:38:41 +0000 Date: Wed, 6 Jul 2022 00:38:41 +0100 From: Matthew Wilcox To: Andrew Morton Cc: Muchun Song , jgg@ziepe.ca, jhubbard@nvidia.com, william.kucharski@oracle.com, dan.j.williams@intel.com, jack@suse.cz, linux-mm@kvack.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, nvdimm@lists.linux.dev, stable@vger.kernel.org Subject: Re: [PATCH v2] mm: fix missing wake-up event for FSDAX pages Message-ID: References: <20220705123532.283-1-songmuchun@bytedance.com> <20220705141819.804eb972d43be3434dc70192@linux-foundation.org> Precedence: bulk X-Mailing-List: nvdimm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220705141819.804eb972d43be3434dc70192@linux-foundation.org> On Tue, Jul 05, 2022 at 02:18:19PM -0700, Andrew Morton wrote: > On Tue, 5 Jul 2022 20:35:32 +0800 Muchun Song wrote: > > > FSDAX page refcounts are 1-based, rather than 0-based: if refcount is > > 1, then the page is freed. The FSDAX pages can be pinned through GUP, > > then they will be unpinned via unpin_user_page() using a folio variant > > to put the page, however, folio variants did not consider this special > > case, the result will be to miss a wakeup event (like the user of > > __fuse_dax_break_layouts()). Since FSDAX pages are only possible get > > by GUP users, so fix GUP instead of folio_put() to lower overhead. > > > > What are the user visible runtime effects of this bug? "missing wake up event" seems pretty obvious to me? Something goes to sleep waiting for a page to become unused, and is never woken.