From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-179.mta1.migadu.com (out-179.mta1.migadu.com [95.215.58.179]) (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 87CD8385D99 for ; Tue, 23 Jun 2026 14:34:25 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.179 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782225267; cv=none; b=hQHOakWvP7Gbe16tK0h8HSROG6Y1HZBcn9hpkYgQUMBQgrxEDl6zy6QrMpIBly6AyZXit6QE20CgAMLF0y+tUB5OKPfa6na53CbC28hY83Y0hhB2f46OicPwwBUhYNdb2A1kSv4wJ8X0mzXdF8CDRGFSbhPP/V2Tr707mZwcVJM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782225267; c=relaxed/simple; bh=b4TpjoGtEsAKOxZuWsrXL/4UtSyP7izycMtLWBYnEZo=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version:Content-Type; b=QL4u4XRuzIdU/Zz47lulVu8IcI/DEX2xXwYaaYQgaZR0C07QcQsea67cBgre0nYexINCc60aQPyCllK7xsaUVFnq8/hRiu1wb9hzZ5VrmvFx3XhkcMZhPspr+rhWUwgDOleuufRmsLPqNzvnkctpH5WZuw3e2ON0TzDvGbuBWfk= 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=RtfBwYtV; arc=none smtp.client-ip=95.215.58.179 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="RtfBwYtV" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1782225263; 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=b4TpjoGtEsAKOxZuWsrXL/4UtSyP7izycMtLWBYnEZo=; b=RtfBwYtVStDXM11fmxTFnH83StfyYH3mPT7ItDfEo0tJLUPKqAHpaHguGN1Lj3uU3I+++1 k0W8Ez4b7F/Ej+ENgHZPefDC2WKnZCfwRwJPyt7TwC2siDE9GCMQQanlf310jn+6fjm1jh D9Y1lKo9XhzJHFkVQ/2Ss6QwooBMQVU= From: Lance Yang To: dev.jain@arm.com Cc: akpm@linux-foundation.org, chrisl@kernel.org, kasong@tencent.com, liam@infradead.org, ljs@kernel.org, shikemeng@huaweicloud.com, nphamcs@gmail.com, baoquan.he@linux.dev, baohua@kernel.org, youngjun.park@lge.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org, vbabka@kernel.org, jannh@google.com, pfalcato@suse.de, ryan.roberts@arm.com, anshuman.khandual@arm.com, david@kernel.org, Lance Yang Subject: Re: [PATCH 2/2] mm/mprotect: drop 'sub' from batching context Date: Tue, 23 Jun 2026 22:34:00 +0800 Message-Id: <20260623143400.67238-1-lance.yang@linux.dev> In-Reply-To: <20260623125723.2503832-3-dev.jain@arm.com> References: <20260623125723.2503832-3-dev.jain@arm.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT On Tue, Jun 23, 2026 at 12:57:22PM +0000, Dev Jain wrote: >Shorten the name of page_anon_exclusive_sub_batch by dropping the >"sub-batch" context - the function itself doesn't need this context. >Similarly, drop "sub" from sub_batch_idx, it is unnecessary and the >usage is clear enough. > >Signed-off-by: Dev Jain >--- Rename-only cleanup. Nothing jumped out, feel free to add: Reviewed-by: Lance Yang