Skip to content

Commit d8f0cd0

Browse files
committed
SWDEV-238077
drm/amdkfd: Reduce debugger message level to debug The ioctl is expected to return an error sometimes to the debugger, so this message can be confusing if the user isn't aware. So we will print this message at debug level. Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com> Acked-by: Rajneesh Bhardwaj <rajneesh.bhardwaj@amd.com> Change-Id: Ida2dd4f0439a68d31535d4a308efa043bb23d4cd Signed-off-by: Philip Cox <Philip.Cox@amd.com>
1 parent 6117bb2 commit d8f0cd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/amd/amdkfd/kfd_chardev.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2671,7 +2671,7 @@ static int kfd_ioctl_dbg_set_debug_trap(struct file *filep,
26712671

26722672
pid = find_get_pid(args->pid);
26732673
if (!pid) {
2674-
pr_err("Cannot find pid info for %i\n",
2674+
pr_debug("Cannot find pid info for %i\n",
26752675
args->pid);
26762676
r = -ESRCH;
26772677
goto out;

0 commit comments

Comments
 (0)