Re: [PATCH v2 1/7] x86/hyper-v: Do some housekeeping in hyperv-tlfs.h

2018-12-10 Thread Thomas Gleixner
On Mon, 10 Dec 2018, Vitaly Kuznetsov wrote: > hyperv-tlfs.h is a bit messy: CPUID feature bits are not always sorted, > it's hard to get which CPUID they belong to, some items are duplicated > (e.g. HV_X64_MSR_CRASH_CTL_NOTIFY/HV_CRASH_CTL_CRASH_NOTIFY). > > Do some housekeeping work. While on i

[PATCH v2 1/7] x86/hyper-v: Do some housekeeping in hyperv-tlfs.h

2018-12-10 Thread Vitaly Kuznetsov
hyperv-tlfs.h is a bit messy: CPUID feature bits are not always sorted, it's hard to get which CPUID they belong to, some items are duplicated (e.g. HV_X64_MSR_CRASH_CTL_NOTIFY/HV_CRASH_CTL_CRASH_NOTIFY). Do some housekeeping work. While on it, replace all (1 << X) with BIT(X) macro. Signed-off-b