On Tue, Dec 14, 2021 at 06:14:34PM -0600, Venu Busireddy wrote: > diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h > index 2c5f12ae7d04..41b096f28d02 100644 > --- a/arch/x86/include/asm/processor.h > +++ b/arch/x86/include/asm/processor.h > @@ -224,6 +224,43 @@ static inline void native_cpuid(unsigned int *eax, unsigned int *ebx, > : "memory"); > } > > +/* > + * Returns the pagetable bit position in pt_bit_pos, > + * iff the specified features are supported. > + */ > +static inline int get_pagetable_bit_pos(unsigned long *pt_bit_pos, > + unsigned long features) You can simply return pt_bit_pos: static inline unsigned int get_pagetable_bit_pos(unsigned long features) and return a negative value on error. Also, the only duplication this is saving is visual - that function will get inlined at the call sites. Also, I'd love to separate the compressed kernel headers from the kernel proper ones but I'm afraid that ship has sailed. But if I could, that would have to be in a special header that gets included by both stages... So I don't mind this but I'd let Brijesh and Tom have a look at it too. Thx. -- Regards/Gruss, Boris. https://people.kernel.org/tglx/notes-about-netiquette