On Thu, Feb 24, 2022 at 9:41 AM David Hildenbrand <david@xxxxxxxxxx> wrote: > > Actually, I thought about doing it similarly to what I did in > page_alloc.c with fpi_t: > > typedef int __bitwise fpi_t; > > #define FPI_NONE ((__force fpi_t)0) > > I can do something similar here. Yeah, that looks good. And then the relevant function declarations and definitions also have that explicit type there instead of 'int', which adds a bit more documentation for people grepping for use. Thanks, Linus