Message ID | 7177e938f13dae3e44fd77d39f1f1b3e935e4908.1720006125.git.lorenzo.stoakes@oracle.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Make core VMA operations internal and testable | expand |
On 7/3/24 1:57 PM, Lorenzo Stoakes wrote: > The vma files contain logic split from mmap.c for the most part and are all > relevant to VMA logic, so maintain the same reviewers for both. But it's still related to mmap.c a lot, so why not just rename that existing "MEMORY MAPPING" appropriately (how? haha) and expand it with the new files? > Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com> > --- > MAINTAINERS | 13 +++++++++++++ > 1 file changed, 13 insertions(+) > > diff --git a/MAINTAINERS b/MAINTAINERS > index 098d214f78d9..ff3e113ed081 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -23971,6 +23971,19 @@ F: include/uapi/linux/vsockmon.h > F: net/vmw_vsock/ > F: tools/testing/vsock/ > > +VMA > +M: Andrew Morton <akpm@linux-foundation.org> > +R: Liam R. Howlett <Liam.Howlett@oracle.com> > +R: Vlastimil Babka <vbabka@suse.cz> > +R: Lorenzo Stoakes <lorenzo.stoakes@oracle.com> > +L: linux-mm@kvack.org > +S: Maintained > +W: https://www.linux-mm.org > +T: git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm > +F: mm/vma.c > +F: mm/vma.h > +F: mm/vma_internal.h > + > VMALLOC > M: Andrew Morton <akpm@linux-foundation.org> > R: Uladzislau Rezki <urezki@gmail.com> > -- > 2.45.2
On Thu, Jul 04, 2024 at 09:39:14AM GMT, Vlastimil Babka wrote: > On 7/3/24 1:57 PM, Lorenzo Stoakes wrote: > > The vma files contain logic split from mmap.c for the most part and are all > > relevant to VMA logic, so maintain the same reviewers for both. > > But it's still related to mmap.c a lot, so why not just rename that existing > "MEMORY MAPPING" appropriately (how? haha) and expand it with the new files? Yeah it's debatable, but I think going forward we may wish to to further separate the concept of memory mapping logic and VMA manipulation in which case it makes sense to keep them separated :) > > > Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com> > > --- > > MAINTAINERS | 13 +++++++++++++ > > 1 file changed, 13 insertions(+) > > > > diff --git a/MAINTAINERS b/MAINTAINERS > > index 098d214f78d9..ff3e113ed081 100644 > > --- a/MAINTAINERS > > +++ b/MAINTAINERS > > @@ -23971,6 +23971,19 @@ F: include/uapi/linux/vsockmon.h > > F: net/vmw_vsock/ > > F: tools/testing/vsock/ > > > > +VMA > > +M: Andrew Morton <akpm@linux-foundation.org> > > +R: Liam R. Howlett <Liam.Howlett@oracle.com> > > +R: Vlastimil Babka <vbabka@suse.cz> > > +R: Lorenzo Stoakes <lorenzo.stoakes@oracle.com> > > +L: linux-mm@kvack.org > > +S: Maintained > > +W: https://www.linux-mm.org > > +T: git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm > > +F: mm/vma.c > > +F: mm/vma.h > > +F: mm/vma_internal.h > > + > > VMALLOC > > M: Andrew Morton <akpm@linux-foundation.org> > > R: Uladzislau Rezki <urezki@gmail.com> > > -- > > 2.45.2 >
diff --git a/MAINTAINERS b/MAINTAINERS index 098d214f78d9..ff3e113ed081 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -23971,6 +23971,19 @@ F: include/uapi/linux/vsockmon.h F: net/vmw_vsock/ F: tools/testing/vsock/ +VMA +M: Andrew Morton <akpm@linux-foundation.org> +R: Liam R. Howlett <Liam.Howlett@oracle.com> +R: Vlastimil Babka <vbabka@suse.cz> +R: Lorenzo Stoakes <lorenzo.stoakes@oracle.com> +L: linux-mm@kvack.org +S: Maintained +W: https://www.linux-mm.org +T: git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm +F: mm/vma.c +F: mm/vma.h +F: mm/vma_internal.h + VMALLOC M: Andrew Morton <akpm@linux-foundation.org> R: Uladzislau Rezki <urezki@gmail.com>
The vma files contain logic split from mmap.c for the most part and are all relevant to VMA logic, so maintain the same reviewers for both. Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com> --- MAINTAINERS | 13 +++++++++++++ 1 file changed, 13 insertions(+) -- 2.45.2