Skip to content
  • Dmitry V. Levin's avatar
    uapi: fix linux/kfd_ioctl.h userspace compilation errors · b4d08520
    Dmitry V. Levin authored
    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:236:2: error: unknown type name 'uint64_t'
      uint64_t va_addr; /* to KFD */
    /usr/include/linux/kfd_ioctl.h:237:2: error: unknown type name 'uint32_t'
      uint32_t gpu_id; /* to KFD */
    /usr/include/linux/kfd_ioctl.h:238:2: error: unknown type name 'uint32_t'
      uint32_t pad;
    /usr/include/linux/kfd_ioctl.h:243:2: error: unknown type name 'uint64_t'
      uint64_t tile_config_ptr;
    /usr/include/linux/kfd_ioctl.h:245:2: error: unknown type name 'uint64_t'
      uint64_t macro_tile_config_ptr;
    /usr/include/linux/kfd_ioctl.h:249:2: error: unknown type name 'uint32_t'
      uint32_t num_tile_configs;
    /usr/include/linux/kfd_ioctl.h:253:2: error: unknown type name 'uint32_t'
      uint32_t num_macro_tile_configs;
    /usr/include/linux/kfd_ioctl.h:255:2: error: unknown type name 'uint32_t'
      uint32_t gpu_id;  /* to KFD */
    /usr/include/linux/kfd_ioctl.h:256:2: error: unknown type name 'uint32_t'
      uint32_t gb_addr_config; /* from KFD */
    /usr/include/linux/kfd_ioctl.h:257:2: error: unknown type name 'uint32_t'
      uint32_t num_banks;  /* from KFD */
    /usr/include/linux/kfd_ioctl.h:258:2: error: unknown type name 'uint32_t'
      uint32_t num_ranks;  /* from KFD */
    
    Fixes: 6a1c9510 ("drm/amdkfd: Adding new IOCTL for scratch memory v2")
    Fixes: 5d71dbc3
    
     ("drm/amdkfd: Implement image tiling mode support v2")
    Signed-off-by: default avatarDmitry V. Levin <ldv@altlinux.org>
    Signed-off-by: default avatarOded Gabbay <oded.gabbay@gmail.com>
    b4d08520