From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 3DDA7437864; Mon, 10 Aug 2026 18:57:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786388223; cv=none; b=rdOksLZGTU5qpOj6STLU0NA/4a5lcE6Q7aGgBOuxRwnknucsUZ4stNG3jHiRAZfWrMU90jHDYnA//fSi3+P8cOS9aXRbI7UZn9uDEXyXZDA2oJxDUHmVkBPc3ekYiACfuoqTaaxJRjyt9om5CLghY7MW2D1m1w0SPbG9ggDujyU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786388223; c=relaxed/simple; bh=nIH5ybnmFPcavUfh+PzC+Ps6169UDLs0k3hio2C8sv8=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=IRQg4vVD3aPFHI+55UW/rXUEfx4rLMPfax1xE1gPPZSJNYkkU6dhUxVcA6+yAJSlL6faJp1sfLIqUArmAnwhjIR/FDPeRz7LyDY8D+Ww20Y7ZuZIfVLJSaV2pMeBshh2M5olMmNhaBNIcKCiT/Y1XcPleQxVaXZ9HJdzvSFjItQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=dGjCopdH; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="dGjCopdH" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 937911F000E9; Mon, 10 Aug 2026 18:57:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1786388222; bh=DgHH11rbBugxycgVfllDqGnSiJw+pTYpQUpXBdKD4ec=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=dGjCopdH5Dh+u5udlFJdn6uvtThWYmJaM5Eb2jrmqTmlPXe5UlQ0CRphwRoBIJAm6 F0kU/FDdk2naDL4p3srV/lxFnEfrV9izlK0/eVoMoRzHM6zEAlb9GpeWNPiLSHMibY 7/DPwPPVatxqKpZv+TfYsfmRCGlQLyQIHN6gqgSCuosDQKnkX7zFjgBI0zLwi3MUEy whMrR+qxXWlWfsydnEdMuQYTG3VOiaRpdN8MxbYzSZLGHi/ErGFwHRXNVMMZH+h3LY 9bzRCWjMFzLk9BevIJ+7lY7vmKa9eVcOTLJ3LnT1A3hINcRRz11t4KUr+PC1fbqo0Y U7y9rB8HQKU5A== Date: Mon, 10 Aug 2026 11:57:00 -0700 From: Wei Liu To: Andrew Morton Cc: Wei Liu , Stanislav Kinsburskii , Jason Gunthorpe , Leon Romanovsky , David Hildenbrand , Lorenzo Stoakes , "Liam R. Howlett" , Vlastimil Babka , Mike Rapoport , Suren Baghdasaryan , Michal Hocko , Jonathan Corbet , Shuah Khan , Shuah Khan , "K. Y. Srinivasan" , Haiyang Zhang , Dexuan Cui , Long Li , Lyude Paul , Danilo Krummrich , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Simona Vetter , Min Ma , Lizhi Hou , Oded Gabbay , linux-mm@kvack.org, linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, linux-kselftest@vger.kernel.org, linux-hyperv@vger.kernel.org, dri-devel@lists.freedesktop.org, nouveau@lists.freedesktop.org, linux-rdma@vger.kernel.org Subject: Re: [PATCH v11 0/8] mm/hmm: Add mmap lock-drop support for userfaultfd-backed mappings Message-ID: <20260810185700.GD2496954@liuwe-devbox-debian-v2.local> References: <20260723-hmm-v10-v11-0-c55b003a4b61@gmail.com> <20260723142242.5d3f87208d47819d873ae458@linux-foundation.org> <20260731211728.GA3243658@liuwe-devbox-debian-v2.local> <20260731143733.6f74ec9b9023f898c3c260e1@linux-foundation.org> Precedence: bulk X-Mailing-List: linux-doc@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: <20260731143733.6f74ec9b9023f898c3c260e1@linux-foundation.org> On Fri, Jul 31, 2026 at 02:37:33PM -0700, Andrew Morton wrote: > On Fri, 31 Jul 2026 14:17:28 -0700 Wei Liu wrote: > > > On Thu, Jul 23, 2026 at 02:22:42PM -0700, Andrew Morton wrote: > > > On Thu, 23 Jul 2026 10:36:32 -0700 Stanislav Kinsburskii wrote: > > > > > > > This series extends the HMM framework to support userfaultfd-backed memory > > > > by allowing the mmap read lock to be dropped during hmm_range_fault(). > > > > > > > > > > Thanks, I've updated mm.git to this version. > > > > Hi Andrew, > > > > I see this series in linux-next now. > > > > I'm curious to know if these patches are going to make 7.3. > > Probably. The series is incompletely reviewed at this time. Perhaps > you can assist with this? Fair point. I'm not an MM expert but I will try. Wei > > > We have some work that's dependent on this so would like to plan > > accordingly. > > > > Thank you Stanislav for continue pushing this.