From: Jan Beulich Date: Thu, 1 Jun 2017 08:50:25 +0000 (+0200) Subject: x86: partially undo "fix build with gcc 7" X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~2099 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d6d6e4a19dc16f6d82ab9dec0f177f2105ab97ac;p=xen.git x86: partially undo "fix build with gcc 7" While f32400e90c ("x86: fix build with gcc 7")'s change to compat_array_access_ok() is necessary, I had blindly and needlessly also added it to array_access_ok(). There's no conditional expression involved there, so undo it. Signed-off-by: Jan Beulich Reviewed-by: Andrew Cooper --- diff --git a/xen/include/asm-x86/x86_64/uaccess.h b/xen/include/asm-x86/x86_64/uaccess.h index 083ea9d0c3..d7dad4f8bc 100644 --- a/xen/include/asm-x86/x86_64/uaccess.h +++ b/xen/include/asm-x86/x86_64/uaccess.h @@ -42,7 +42,7 @@ extern void *xlat_malloc(unsigned long *xlat_page_current, size_t size); #define array_access_ok(addr, count, size) \ (likely(((count) ?: 0UL) < (~0UL / (size))) && \ - access_ok(addr, 0 + (count) * (size))) + access_ok(addr, (count) * (size))) #define __compat_addr_ok(d, addr) \ ((unsigned long)(addr) < HYPERVISOR_COMPAT_VIRT_START(d))