* Thomas Gleixner <t...@linutronix.de> wrote: > > + */ > > +static inline bool pgd_userspace_access(pgd_t pgd) > > +{ > > + return (pgd.pgd & _PAGE_USER); > > +}
Also a nit: the parentheses are superfluous - these aren't macros. Thanks, Ingo
* Thomas Gleixner <t...@linutronix.de> wrote: > > + */ > > +static inline bool pgd_userspace_access(pgd_t pgd) > > +{ > > + return (pgd.pgd & _PAGE_USER); > > +}
Also a nit: the parentheses are superfluous - these aren't macros. Thanks, Ingo