lkml.org 
[lkml]   [2022]   [Jun]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH v10 09/69] mm: add VMA iterator
Date
* Matthew Wilcox <willy@infradead.org> [220623 13:03]:
> On Tue, Jun 21, 2022 at 11:10:09PM +0200, David Hildenbrand wrote:
> > > +#define VMA_ITERATOR(name, mm, addr) \
> > > + struct vma_iterator name = { \
> > > + .mas = { \
> > > + .tree = &mm->mm_mt, \
> > > + .index = addr, \
> > > + .node = MAS_START, \
> > > + }, \
> > > + }
> > > +
> >
> > No __* and () macro magic?
> >
> > I'd have expected at least
> >
> > tree = &(__mm)->mm_mt,
> > .index = (__addr),
> >
> > ;)
>
> Fair, fair. Just testing that change now. I always forget to do those
> things until they bite me.
>
> > Reviewed-by: David Hildenbrand <david@redhat.com>
>
> Appreciate the review!


I'll also do the same underscores for the maple tree defines where
necessary.

Thanks David.

>
> diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
> index acbd8d03e01e..8bcbffefdc02 100644
> --- a/include/linux/mm_types.h
> +++ b/include/linux/mm_types.h
> @@ -686,11 +686,11 @@ struct vma_iterator {
> struct ma_state mas;
> };
>
> -#define VMA_ITERATOR(name, mm, addr) \
> +#define VMA_ITERATOR(name, _mm, _addr) \
> struct vma_iterator name = { \
> .mas = { \
> - .tree = &mm->mm_mt, \
> - .index = addr, \
> + .tree = &(_mm)->mm_mt, \
> + .index = (_addr), \
> .node = MAS_START, \
> }, \
> }
\
 
 \ /
  Last update: 2022-06-24 16:32    [W:0.182 / U:0.440 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site