Message ID | 0319419d965adc03bf22fee66e39244fc3d65528.1719584707.git.lstoakes@gmail.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Make core VMA operations internal and testable | expand |
Hi Lorenzo, On Fri, 28 Jun 2024 15:35:26 +0100 Lorenzo Stoakes <lstoakes@gmail.com> 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. > > Signed-off-by: Lorenzo Stoakes <lstoakes@gmail.com> > --- > MAINTAINERS | 13 +++++++++++++ > 1 file changed, 13 insertions(+) > > diff --git a/MAINTAINERS b/MAINTAINERS > index 098d214f78d9..0847cb5903ab 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 <lstoakes@gmail.com> > +L: linux-mm@kvack.org > +S: Maintained > +W: http://www.linux-mm.org I know this is just copy-pasted. But, what about using https instead of http? > +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.1 > > Thanks, SJ
On Tue, Jul 02, 2024 at 04:19:32PM GMT, SeongJae Park wrote: > Hi Lorenzo, > > On Fri, 28 Jun 2024 15:35:26 +0100 Lorenzo Stoakes <lstoakes@gmail.com> 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. > > > > Signed-off-by: Lorenzo Stoakes <lstoakes@gmail.com> > > --- > > MAINTAINERS | 13 +++++++++++++ > > 1 file changed, 13 insertions(+) > > > > diff --git a/MAINTAINERS b/MAINTAINERS > > index 098d214f78d9..0847cb5903ab 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 <lstoakes@gmail.com> > > +L: linux-mm@kvack.org > > +S: Maintained > > +W: http://www.linux-mm.org > > I know this is just copy-pasted. But, what about using https instead of http? Sure will update. > > > +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.1 > > > > > > > Thanks, > SJ
diff --git a/MAINTAINERS b/MAINTAINERS index 098d214f78d9..0847cb5903ab 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 <lstoakes@gmail.com> +L: linux-mm@kvack.org +S: Maintained +W: http://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 <lstoakes@gmail.com> --- MAINTAINERS | 13 +++++++++++++ 1 file changed, 13 insertions(+)