[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230105070357.274-1-liming.wu@jaguarmicro.com>
Date: Thu, 5 Jan 2023 15:03:56 +0800
From: liming.wu@...uarmicro.com
To: "Michael S . Tsirkin" <mst@...hat.com>,
Jason Wang <jasowang@...hat.com>
Cc: kvm@...r.kernel.org, virtualization@...ts.linux-foundation.org,
netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
398776277@...com, Liming Wu <liming.wu@...uarmicro.com>
Subject: [PATCH] vhost-test: remove meaningless debug info
From: Liming Wu <liming.wu@...uarmicro.com>
remove printk as it is meaningless.
Signed-off-by: Liming Wu <liming.wu@...uarmicro.com>
---
drivers/vhost/test.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/drivers/vhost/test.c b/drivers/vhost/test.c
index bc8e7fb1e635..42c955a5b211 100644
--- a/drivers/vhost/test.c
+++ b/drivers/vhost/test.c
@@ -333,13 +333,10 @@ static long vhost_test_ioctl(struct file *f, unsigned int ioctl,
return -EFAULT;
return 0;
case VHOST_SET_FEATURES:
- printk(KERN_ERR "1\n");
if (copy_from_user(&features, featurep, sizeof features))
return -EFAULT;
- printk(KERN_ERR "2\n");
if (features & ~VHOST_FEATURES)
return -EOPNOTSUPP;
- printk(KERN_ERR "3\n");
return vhost_test_set_features(n, features);
case VHOST_RESET_OWNER:
return vhost_test_reset_owner(n);
--
2.25.1
Powered by blists - more mailing lists