[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] common: __u8 is history
commit aea61dbb8eed4374bd35d5878b24b9e968ab19c1 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Wed Aug 9 15:56:44 2023 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Wed Aug 9 15:56:44 2023 +0200 common: __u8 is history With the last uses gone, move the type to linux-compat.h. No functional change intended. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- xen/include/xen/linux-compat.h | 1 + xen/include/xen/types.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/xen/include/xen/linux-compat.h b/xen/include/xen/linux-compat.h index 2c7c046d4c..8d06bb6dc9 100644 --- a/xen/include/xen/linux-compat.h +++ b/xen/include/xen/linux-compat.h @@ -12,6 +12,7 @@ #include <xen/types.h> typedef int8_t __s8; +typedef uint8_t __u8; typedef int16_t __s16; typedef int32_t __s32; typedef int64_t __s64; diff --git a/xen/include/xen/types.h b/xen/include/xen/types.h index e6fe35db99..aea259db1e 100644 --- a/xen/include/xen/types.h +++ b/xen/include/xen/types.h @@ -6,7 +6,7 @@ /* Linux inherited types which are being phased out */ typedef int8_t s8; -typedef uint8_t u8, __u8; +typedef uint8_t u8; typedef int16_t s16; typedef uint16_t u16, __u16; typedef int32_t s32; -- generated by git-patchbot for /home/xen/git/xen.git#master
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |