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 DCB073090CD for ; Fri, 29 May 2026 00:25:32 +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=1780014333; cv=none; b=ulu3P5gypQ17l+KdSzY+TGMK28+SAzGC3vep6yBJLK4gQHIv2KSNYdejDwXhCqavmMx0t3kSO/w/A5u8aku7i6XyV2j3Sx2WtfNEmFlJUjMjP6CfULr5lR0YJt2dar78jqZjd3MmIZyRQV3NTYCS6qeLYD6ts1AytaVR9D6cYgw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780014333; c=relaxed/simple; bh=iGGA8M7cg7jdK6K5KosymJgrMYTnycHTAKioihpUwSI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=uFUfVIoK+wJPMoceDbt0YnXqRF8Uf6mnAPDGT/ixvPU/B3zK8yFNY2IwoineQzEaIUUr2Ii4hwryoR9ugv3vTKhddcU2ePb8RwSTVp+vNZfKRrnHpjUo5Mb1cxHsHo7QIHc1dVBEwUtfz8Gz33036CIGWiQZSehL0W+JMvTvI3A= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=MUm/5P+P; 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="MUm/5P+P" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3D5351F000E9; Fri, 29 May 2026 00:25:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1780014332; bh=UnopgqY2bbWXtxWqNirNFrJ9L7lhAVtnRuP5BLUuwAM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=MUm/5P+P1FGVS8gjdS/EZG4XyKjy/K/ptSQLrbbN+n3p9iTeoH8Si+nFU7MfOzsqH pM5S7eKMDf4NLW3EUWdaiUA4yubAL73VHIyLgZGEZ35JB2gfHhiiNwbii8pfFNBkE0 BjSa2QAFk8nZzBGqYOFtEzFVhaBKUl5z3OjF5M4Kl0cGRixXqzyb/f5D6W/tg8bbL1 AVlHCNklDzafA9QqEPWNzZbi/FxnCxpaV0XGm+tztwpiqrRwkoeeZ/yyH28WGygqAZ lXF05evKPOcW7wZOGpNLkPwFQDJ5QtV1+obDK+n6qFv5rHECTO5Jb4Bt4PzhVGs30b hwtkt2TUPwJUQ== From: SeongJae Park To: Brian Masney Cc: SeongJae Park , Andrew Morton , David Hildenbrand , Lorenzo Stoakes , "Liam R. Howlett" , Vlastimil Babka , Mike Rapoport , Suren Baghdasaryan , Michal Hocko , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] MAINTAINERS: add vm.rst to memory management core Date: Thu, 28 May 2026 17:25:24 -0700 Message-ID: <20260529002525.7939-1-sj@kernel.org> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260528-mm-vm-rst-maintainers-file-v1-1-306631c0a610@redhat.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, 28 May 2026 09:56:14 -0400 Brian Masney wrote: > The vm.rst file is currently not listed in the MAINTAINERS file, so > let's go ahead and add to the MM core subsystem so that the maintainers > are CCed when changes to the documentation are proposed. Makes sense to me. Probably out of the scope of this patch, but would it make sense to also rename it to mm.rst, like we replaced many 'vm' parts of file names to 'mm', e.g., commit ee65728e103b ("docs: rename Documentation/vm to Documentation/mm") in future? > > Signed-off-by: Brian Masney Reviewed-by: SeongJae Park Thanks, SJ [...]