From 2cdcd7f6a2bbf3d39b53b2eb6c82822f46d43d00 Mon Sep 17 00:00:00 2001 From: Joshua Cha Date: Fri, 18 Apr 2025 07:31:11 +0900 Subject: [PATCH] nvsciipc: update kernel message level update kernel message level from error to info for nvsciipc_ioctl_reserve_ep. Bug 5228447 Bug 5119903 JIRA NVIPC-3423 JIRA NVIPC-3427 Change-Id: I75bf39f4bf0b04f8d1e3d527293c1f796fad60dc Signed-off-by: Joshua Cha Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3343579 GVS: buildbot_gerritrpt Reviewed-by: Jeungwoo Yoo Reviewed-by: svcacv Reviewed-by: Simon Je --- drivers/misc/nvsciipc/nvsciipc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/misc/nvsciipc/nvsciipc.c b/drivers/misc/nvsciipc/nvsciipc.c index f82ba482..92c1738e 100644 --- a/drivers/misc/nvsciipc/nvsciipc.c +++ b/drivers/misc/nvsciipc/nvsciipc.c @@ -401,7 +401,7 @@ static int nvsciipc_ioctl_reserve_ep(struct nvsciipc *ctx, unsigned int cmd, /* endpoint is reserved and process is running */ if (ctx->stat[i]->reserved && task) { - ERR("%s:RES %s is already reserved by %d\n", __func__, + INFO("%s:RES %s is already reserved by %d\n", __func__, reserve_ep.ep_name, ctx->stat[i]->owner_pid); mutex_unlock(&ep_mutex); return -EBUSY; @@ -424,7 +424,7 @@ static int nvsciipc_ioctl_reserve_ep(struct nvsciipc *ctx, unsigned int cmd, if (ctx->stat[i]->reserved && ((ctx->stat[i]->owner_pid != current_pid) && task)) { - ERR("%s:REL %s is already reserved by %d\n", __func__, + INFO("%s:REL %s is already reserved by %d\n", __func__, reserve_ep.ep_name, ctx->stat[i]->owner_pid); mutex_unlock(&ep_mutex); return -EPERM;