lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20180405042655.GA13233@altlinux.org> Date: Thu, 5 Apr 2018 07:26:55 +0300 From: "Dmitry V. Levin" <ldv@...linux.org> To: Felix Kuehling <Felix.Kuehling@....com>, "Shaoyun.liu" <shaoyun.liu@....com>, Jay Cornwall <Jay.Cornwall@....com>, Oded Gabbay <oded.gabbay@...il.com> Cc: dri-devel@...ts.freedesktop.org, linux-kernel@...r.kernel.org Subject: [PATCH] uapi: fix linux/kfd_ioctl.h userspace compilation errors Consistently use types provided by <linux/types.h> via <drm/drm.h> to fix the following linux/kfd_ioctl.h userspace compilation errors: /usr/include/linux/kfd_ioctl.h:266:2: error: unknown type name 'uint64_t' uint64_t tba_addr; /* to KFD */ /usr/include/linux/kfd_ioctl.h:267:2: error: unknown type name 'uint64_t' uint64_t tma_addr; /* to KFD */ /usr/include/linux/kfd_ioctl.h:268:2: error: unknown type name 'uint32_t' uint32_t gpu_id; /* to KFD */ /usr/include/linux/kfd_ioctl.h:269:2: error: unknown type name 'uint32_t' uint32_t pad; Fixes: d7b9bd2248d79 ("drm/amdkfd: Add support for user-mode trap handlers") Cc: <stable@...r.kernel.org> # v4.16 Signed-off-by: Dmitry V. Levin <ldv@...linux.org> --- include/uapi/linux/kfd_ioctl.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/uapi/linux/kfd_ioctl.h b/include/uapi/linux/kfd_ioctl.h index f4cab5b3ba9a..111d73ba2d96 100644 --- a/include/uapi/linux/kfd_ioctl.h +++ b/include/uapi/linux/kfd_ioctl.h @@ -263,10 +263,10 @@ struct kfd_ioctl_get_tile_config_args { }; struct kfd_ioctl_set_trap_handler_args { - uint64_t tba_addr; /* to KFD */ - uint64_t tma_addr; /* to KFD */ - uint32_t gpu_id; /* to KFD */ - uint32_t pad; + __u64 tba_addr; /* to KFD */ + __u64 tma_addr; /* to KFD */ + __u32 gpu_id; /* to KFD */ + __u32 pad; }; #define AMDKFD_IOCTL_BASE 'K' -- ldv
Powered by blists - more mailing lists