From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-172.mta0.migadu.com (out-172.mta0.migadu.com [91.218.175.172]) (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 3124C2F5E for ; Wed, 2 Jul 2025 01:29:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1751419791; cv=none; b=bdOz5JT/D1Lq0a+OGOeNw0NRWpnUUyLlnpLBscDcrcIGodsOkZJPuWVUN1J/4AnCXgcM2bsbctuR4wJvMxxvrHW/i9/pt9CpEpXIFSlNbI7vdNg/bSGjWiwX9Y/YDhXGYPtRE6P21hKfr2F9r99StaHynNqjQ1bL9y3A9rEY71g= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1751419791; c=relaxed/simple; bh=LDHM7jGxCnd+mr9Ygrzv5SVJP6Dmjk2nPKWQT0VRW/A=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=UZ6updkPGzrCav9GLmX7QQKcrSk2Rcn1tpWvU+ydJwFA0Fbmh+oEpFUOjA3vlnxPVcUtra/FuzBsq6F5CXwTSDshLwXJVX54vVJjVKgH6nFX0PvRnyXPfA/QLu5T6R54icgt2H4DnrgtpAkSeul99sN8/j81hLry3oRi+/I7kug= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=nA9zp2rI; arc=none smtp.client-ip=91.218.175.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="nA9zp2rI" Message-ID: <47333b7f-2eac-4f57-a9d2-2a7f24c8fa7d@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1751419786; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=mPrS94lVOu7EmI9PYREdDlh0EO6H/zNHIWs+MvCReBI=; b=nA9zp2rIDXqL4jzjAR5plfd7uB0j/RUUL+bdMkXsWvyT5PSap3GreV6kZ7o8P0xqNqRSG3 RzIcf1e9N92AKYdX/uvjqrwzkuME1+dZao9Qp0+McCpbkHZvDe0FWsQk4e5lfn4MPie2qm 32F5oEnaKg4aRZTbjls//FK0VXFIMAc= Date: Wed, 2 Jul 2025 09:29:33 +0800 Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH v4 1/1] mm/rmap: fix potential out-of-bounds page table access during batched unmap Content-Language: en-US To: Andrew Morton Cc: david@redhat.com, 21cnbao@gmail.com, baolin.wang@linux.alibaba.com, chrisl@kernel.org, kasong@tencent.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, linux-riscv@lists.infradead.org, lorenzo.stoakes@oracle.com, ryan.roberts@arm.com, v-songbaohua@oppo.com, x86@kernel.org, huang.ying.caritas@gmail.com, zhengtangquan@oppo.com, riel@surriel.com, Liam.Howlett@oracle.com, vbabka@suse.cz, harry.yoo@oracle.com, mingzhe.yang@ly.com, stable@vger.kernel.org, Barry Song , Lance Yang References: <20250701143100.6970-1-lance.yang@linux.dev> <20250701141705.ff1a446e6a25d7970b209c3e@linux-foundation.org> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Lance Yang In-Reply-To: <20250701141705.ff1a446e6a25d7970b209c3e@linux-foundation.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 2025/7/2 05:17, Andrew Morton wrote: > On Tue, 1 Jul 2025 22:31:00 +0800 Lance Yang wrote: > >> - Add Reported-by + Closes tags (per David) >> - Pick RB from Lorenzo - thanks! >> - Pick AB from David - thanks! > > It generally isn't necessary to resend a patch to add these > things - I update the changelog in place as they come in. > > In this case I'll grab that Reported-by: and Closes:, thanks. Ah, good to know that. Thanks for adding these tags!