Merge tag 'amd-drm-fixes-5.8-2020-06-17' of git://people.freedesktop.org/~agd5f/linux...
authorDave Airlie <airlied@redhat.com>
Fri, 19 Jun 2020 00:02:28 +0000 (10:02 +1000)
committerDave Airlie <airlied@redhat.com>
Fri, 19 Jun 2020 00:02:30 +0000 (10:02 +1000)
amd-drm-fixes-5.8-2020-06-17:

amdgpu:
- Fix kvfree/kfree mixup
- Fix hawaii device id in powertune configuration
- Display FP fixes
- Documentation fixes

amdkfd:
- devcgroup check fix

Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Alex Deucher <alexdeucher@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200617220733.3773183-1-alexander.deucher@amd.com
1  2 
drivers/gpu/drm/amd/amdkfd/kfd_priv.h

@@@ -1073,10 -1074,10 +1074,10 @@@ void kfd_dec_compute_active(struct kfd_
  /* Check with device cgroup if @kfd device is accessible */
  static inline int kfd_devcgroup_check_permission(struct kfd_dev *kfd)
  {
 -#if defined(CONFIG_CGROUP_DEVICE)
 +#if defined(CONFIG_CGROUP_DEVICE) || defined(CONFIG_CGROUP_BPF)
        struct drm_device *ddev = kfd->ddev;
  
-       return devcgroup_check_permission(DEVCG_DEV_CHAR, ddev->driver->major,
+       return devcgroup_check_permission(DEVCG_DEV_CHAR, DRM_MAJOR,
                                          ddev->render->index,
                                          DEVCG_ACC_WRITE | DEVCG_ACC_READ);
  #else