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 EA8B1260580 for ; Thu, 25 Jun 2026 23:56:51 +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=1782431812; cv=none; b=USxAtW/4Lk//Cy9VydOUCZ9/nTCYFPLzAibr/qggY995vEEc25/V2xJ6qDGcKz84G7bVcoz2KcUeqRanhjpckUc6qSMiqGknx/5wPq+nTBHqLWIB6N+7zPElb1Wa+6EaDJzED6Z63zvU7rydqoEneIoeULWeZQ9ybdDqZL1PSzs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782431812; c=relaxed/simple; bh=acXiRsZu/YJ3GFAY1F8FwglJyzNWGphOcpKo37jdTbI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=GNaH/maLNKPpjHOjwujQ8d+96ZU6B4NGCTWZZOXerXK9qGsR/9EapCg9DxFjpqEo9IUC1tmLFcOZUWpM3ciDu/j1ysiCRLMoOu1nPnE9mLwBvfX0tr8uXhnA+oslqC6AXFlwXqK5Al4VYRidJvsgq3T/xGPHZwlIaRhqpPnv1Bo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=UqAJO5Uz; 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="UqAJO5Uz" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7C2291F000E9; Thu, 25 Jun 2026 23:56:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1782431811; bh=kl0uaEa7v1YO+p58aWA8kk6kKslV4QuP9YXWBU0Xnvo=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=UqAJO5Uz/AA1XT6fV22zU9FaNbwdYc0Hw/vCstcuJ6ISJ5QIPR8AbjhxcHgkPW7gz 2ha1hMCustlZnEBc5u7WQ7PF5t6P6ZdBuevasAbYUNbyKpUFIbG5yuMQ7leQlSEyIR vTMtJvcPDmejdxApdQ9/VFBYQisOS+Gi9Us/hVomAqlWzV2lZy2wGRy2xXmeZAWQC3 6EhKHaTlcQcTt/g/gDC7P9j0CeN40TxlOZKRcLEG/9XgZhveMbhG/8XotqPwUBSwZI m4nR7VtzmNDcpeT7wfrw3wN/D9J8q+CI2aq27YZovOXQAiwp8I0ea1TGBwzlbmg212 PArQp/AjOxsTQ== From: SeongJae Park To: Suren Baghdasaryan Cc: SeongJae Park , akpm@linux-foundation.org, kent.overstreet@linux.dev, david@kernel.org, ljs@kernel.org, liam@infradead.org, vbabka@kernel.org, rppt@kernel.org, hao.ge@linux.dev, jackmanb@google.com, linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH 2/2] mm: move alloc tag to mm Date: Thu, 25 Jun 2026 16:56:36 -0700 Message-ID: <20260625235637.84801-1-sj@kernel.org> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260625184857.2193482-3-surenb@google.com> References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit On Thu, 25 Jun 2026 11:48:57 -0700 Suren Baghdasaryan wrote: > From: Lorenzo Stoakes > > The alloc tagging work is really mm-specific, so move alloc_tag.c to mm/ > and additionally update the MAINTAINERS entry to place it within memory > management and port over the Kconfig and Makefile code to mm. Makes sense to me. > > Signed-off-by: Lorenzo Stoakes > Signed-off-by: Suren Baghdasaryan Reviewed-by: SeongJae Park Thanks, SJ [...]