49 lines
1.9 KiB
Diff
49 lines
1.9 KiB
Diff
From a7aaf4cad4ad6e6913e2c1d6720563bc14a801eb Mon Sep 17 00:00:00 2001
|
|
From: linmin <linmin@eswincomputing.com>
|
|
Date: Tue, 10 Sep 2024 15:19:33 +0800
|
|
Subject: [PATCH 169/219] chore:Reduce print in mmz_vb
|
|
|
|
Changelogs:
|
|
1.Decrease the printing level of some code in mmz_vb.c to reduce
|
|
log.
|
|
|
|
Signed-off-by: linmin <linmin@eswincomputing.com>
|
|
---
|
|
drivers/memory/eswin/es_mmz_vb/mmz_vb.c | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/drivers/memory/eswin/es_mmz_vb/mmz_vb.c b/drivers/memory/eswin/es_mmz_vb/mmz_vb.c
|
|
index 2c2f829817ad..8fad791695d7 100644
|
|
--- a/drivers/memory/eswin/es_mmz_vb/mmz_vb.c
|
|
+++ b/drivers/memory/eswin/es_mmz_vb/mmz_vb.c
|
|
@@ -1147,7 +1147,7 @@ static int mmz_vb_do_destory_pool(struct esVB_K_POOL_INFO_S *pool, bool is_lock,
|
|
if (true == is_force) {
|
|
dev_info(mmz_vb_dev, "%s %d, non-empty pool, still destory it!\n",__func__,__LINE__);
|
|
} else {
|
|
- dev_info(mmz_vb_dev, "%s %d, non-empty pool, can not destory!\n",__func__,__LINE__);
|
|
+ dev_dbg(mmz_vb_dev, "%s %d, non-empty pool, can not destory!\n",__func__,__LINE__);
|
|
ret = -ENOTEMPTY;
|
|
goto out;
|
|
}
|
|
@@ -1197,7 +1197,7 @@ static int vb_ioctl_destory_pool(void __user *user_cmd)
|
|
if (-ENOTEMPTY == ret) {
|
|
set_bit(MMZ_VB_POOL_FLAG_DESTORY, &pool->flag);
|
|
up_write(&partitions->idr_lock);
|
|
- dev_info(mmz_vb_dev, "%s %d, pool %d not empty, waiting to destory\n",
|
|
+ dev_dbg(mmz_vb_dev, "%s %d, pool %d not empty, waiting to destory\n",
|
|
__func__,__LINE__, req->PoolId);
|
|
return 0;
|
|
} else if (ret) {
|
|
@@ -1329,7 +1329,7 @@ static int vb_ioctl_get_config(void __user *user_cmd)
|
|
mutex_lock(&vb_priv->cfg_lock[enVbUid]);
|
|
vb_cfg = vb_priv->pVbConfig[enVbUid];
|
|
if (NULL == vb_cfg) {
|
|
- dev_err(mmz_vb_dev, "%s %d, uid %d cfg not exist!\n", __func__,__LINE__, enVbUid);
|
|
+ dev_dbg(mmz_vb_dev, "%s %d, uid %d cfg not exist!\n", __func__,__LINE__, enVbUid);
|
|
ret = -EFAULT;
|
|
goto out_unlock;
|
|
}
|
|
--
|
|
2.47.0
|
|
|