From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60009) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fMClE-0006J8-Ss for qemu-devel@nongnu.org; Fri, 25 May 2018 09:28:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fMClE-0000qB-1d for qemu-devel@nongnu.org; Fri, 25 May 2018 09:28:00 -0400 Received: from orth.archaic.org.uk ([2001:8b0:1d0::2]:42170) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fMClD-0000p1-Qz for qemu-devel@nongnu.org; Fri, 25 May 2018 09:27:59 -0400 From: Peter Maydell Date: Fri, 25 May 2018 14:27:51 +0100 Message-Id: <20180525132755.21839-3-peter.maydell@linaro.org> In-Reply-To: <20180525132755.21839-1-peter.maydell@linaro.org> References: <20180525132755.21839-1-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 2/6] scripts/update-linux-headers: Handle __aligned_u64 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: patches@linaro.org, "Michael S . Tsirkin" , Alex Williamson , Paolo Bonzini , Stefan Hajnoczi We'll currently replace any 'u64' with a 'uint64_t' including when it's embedded in an '__aligned_u64', creating a '__aligned_uint64_t' which doesn't exist. We need to instead expand out the kernel's definition of __aligned_u64: #define __aligned_u64 __u64 __attribute__((aligned(8))) before we convert the __u64 to uint64_t. Signed-off-by: Peter Maydell --- scripts/update-linux-headers.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh index 947dec2852..1fe54f8ab1 100755 --- a/scripts/update-linux-headers.sh +++ b/scripts/update-linux-headers.sh @@ -51,7 +51,8 @@ cp_portable() { fi header=$(basename "$f"); - sed -e 's/__u\([0-9][0-9]*\)/uint\1_t/g' \ + sed -e 's/__aligned_u64/__u64 __attribute__((aligned(8)))/g' \ + -e 's/__u\([0-9][0-9]*\)/uint\1_t/g' \ -e 's/u\([0-9][0-9]*\)/uint\1_t/g' \ -e 's/__s\([0-9][0-9]*\)/int\1_t/g' \ -e 's/__le\([0-9][0-9]*\)/uint\1_t/g' \ -- 2.17.0