Commit 452f9bdd authored by Yong Zhao's avatar Yong Zhao Committed by Alex Deucher

drm/amdkfd: Improve KFD IOCTL printing

The code use hex define, so should the printing.
Signed-off-by: default avatarYong Zhao <Yong.Zhao@amd.com>
Reviewed-by: default avatarFelix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent e7956997
...@@ -1829,7 +1829,7 @@ static long kfd_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) ...@@ -1829,7 +1829,7 @@ static long kfd_ioctl(struct file *filep, unsigned int cmd, unsigned long arg)
} else } else
goto err_i1; goto err_i1;
dev_dbg(kfd_device, "ioctl cmd 0x%x (#%d), arg 0x%lx\n", cmd, nr, arg); dev_dbg(kfd_device, "ioctl cmd 0x%x (#0x%x), arg 0x%lx\n", cmd, nr, arg);
process = kfd_get_process(current); process = kfd_get_process(current);
if (IS_ERR(process)) { if (IS_ERR(process)) {
...@@ -1884,7 +1884,8 @@ static long kfd_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) ...@@ -1884,7 +1884,8 @@ static long kfd_ioctl(struct file *filep, unsigned int cmd, unsigned long arg)
kfree(kdata); kfree(kdata);
if (retcode) if (retcode)
dev_dbg(kfd_device, "ret = %d\n", retcode); dev_dbg(kfd_device, "ioctl cmd (#0x%x), arg 0x%lx, ret = %d\n",
nr, arg, retcode);
return retcode; return retcode;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment