Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/amdkfd: Removed commented line for MQD queue priority

Missed deleting the commented line in the original patch.

Fixes: 73463e26f7e2 ("drm/amdkfd: Disable MQD queue priority")
Signed-off-by: Andrew Martin <andrew.martin@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Andrew Martin and committed by
Alex Deucher
bfe60e53 bea29bb0

-7
-1
drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_cik.c
··· 70 70 static void set_priority(struct cik_mqd *m, struct queue_properties *q) 71 71 { 72 72 m->cp_hqd_pipe_priority = pipe_priority_map[q->priority]; 73 - /* m->cp_hqd_queue_priority = q->priority; */ 74 73 } 75 74 76 75 static struct kfd_mem_obj *allocate_mqd(struct mqd_manager *mm,
-1
drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c
··· 70 70 static void set_priority(struct v10_compute_mqd *m, struct queue_properties *q) 71 71 { 72 72 m->cp_hqd_pipe_priority = pipe_priority_map[q->priority]; 73 - /* m->cp_hqd_queue_priority = q->priority; */ 74 73 } 75 74 76 75 static struct kfd_mem_obj *allocate_mqd(struct mqd_manager *mm,
-1
drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v11.c
··· 96 96 static void set_priority(struct v11_compute_mqd *m, struct queue_properties *q) 97 97 { 98 98 m->cp_hqd_pipe_priority = pipe_priority_map[q->priority]; 99 - /* m->cp_hqd_queue_priority = q->priority; */ 100 99 } 101 100 102 101 static struct kfd_mem_obj *allocate_mqd(struct mqd_manager *mm,
-1
drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v12.c
··· 77 77 static void set_priority(struct v12_compute_mqd *m, struct queue_properties *q) 78 78 { 79 79 m->cp_hqd_pipe_priority = pipe_priority_map[q->priority]; 80 - /* m->cp_hqd_queue_priority = q->priority; */ 81 80 } 82 81 83 82 static struct kfd_mem_obj *allocate_mqd(struct mqd_manager *mm,
-1
drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v12_1.c
··· 131 131 static void set_priority(struct v12_1_compute_mqd *m, struct queue_properties *q) 132 132 { 133 133 m->cp_hqd_pipe_priority = pipe_priority_map[q->priority]; 134 - /* m->cp_hqd_queue_priority = q->priority; */ 135 134 } 136 135 137 136 static struct kfd_mem_obj *allocate_mqd(struct mqd_manager *mm,
-1
drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c
··· 106 106 static void set_priority(struct v9_mqd *m, struct queue_properties *q) 107 107 { 108 108 m->cp_hqd_pipe_priority = pipe_priority_map[q->priority]; 109 - /* m->cp_hqd_queue_priority = q->priority; */ 110 109 } 111 110 112 111 static bool mqd_on_vram(struct amdgpu_device *adev)
-1
drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_vi.c
··· 73 73 static void set_priority(struct vi_mqd *m, struct queue_properties *q) 74 74 { 75 75 m->cp_hqd_pipe_priority = pipe_priority_map[q->priority]; 76 - /* m->cp_hqd_queue_priority = q->priority; */ 77 76 } 78 77 79 78 static struct kfd_mem_obj *allocate_mqd(struct mqd_manager *mm,