[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/cpuid: correct parameter types for cpuid_count()
commit edfd64ea799cd4d29c2efc2d5961ee68ca5fc022 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Tue Jan 20 10:41:18 2015 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Tue Jan 20 10:41:18 2015 +0100 x86/cpuid: correct parameter types for cpuid_count() About half of the cpuid space has the top bit of op set, and op it always specified with unsigned integers. There are no problematic uses in tree at the moment. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- xen/include/asm-x86/processor.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/include/asm-x86/processor.h b/xen/include/asm-x86/processor.h index f98eaf5..20eade6 100644 --- a/xen/include/asm-x86/processor.h +++ b/xen/include/asm-x86/processor.h @@ -234,8 +234,8 @@ unsigned int apicid_to_socket(unsigned int); /* Some CPUID calls want 'count' to be placed in ecx */ static inline void cpuid_count( - int op, - int count, + unsigned int op, + unsigned int count, unsigned int *eax, unsigned int *ebx, unsigned int *ecx, -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |