netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] tools/virtio: Add dma sync api for virtio test
@ 2023-09-26  5:00 liming.wu
  2023-09-26  5:00 ` [PATCH 2/2] tools/virtio: Add hints when module is not installed liming.wu
  2023-10-08  4:37 ` [PATCH 1/2] tools/virtio: Add dma sync api for virtio test Jason Wang
  0 siblings, 2 replies; 11+ messages in thread
From: liming.wu @ 2023-09-26  5:00 UTC (permalink / raw)
  To: Michael S . Tsirkin, Jason Wang
  Cc: kvm, virtualization, netdev, linux-kernel, 398776277, Liming Wu

From: Liming Wu <liming.wu@jaguarmicro.com>

Fixes: 8bd2f71054bd ("virtio_ring: introduce dma sync api for virtqueue")
also add dma sync api for virtio test.

Signed-off-by: Liming Wu <liming.wu@jaguarmicro.com>
---
 tools/virtio/linux/dma-mapping.h | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/tools/virtio/linux/dma-mapping.h b/tools/virtio/linux/dma-mapping.h
index 834a90bd3270..822ecaa8e4df 100644
--- a/tools/virtio/linux/dma-mapping.h
+++ b/tools/virtio/linux/dma-mapping.h
@@ -24,11 +24,23 @@ enum dma_data_direction {
 #define dma_map_page(d, p, o, s, dir) (page_to_phys(p) + (o))
 
 #define dma_map_single(d, p, s, dir) (virt_to_phys(p))
+#define dma_map_single_attrs(d, p, s, dir, a) (virt_to_phys(p))
 #define dma_mapping_error(...) (0)
 
 #define dma_unmap_single(d, a, s, r) do { (void)(d); (void)(a); (void)(s); (void)(r); } while (0)
 #define dma_unmap_page(d, a, s, r) do { (void)(d); (void)(a); (void)(s); (void)(r); } while (0)
 
+#define sg_dma_address(sg) (0)
+#define dma_need_sync(v, a) (0)
+#define dma_unmap_single_attrs(d, a, s, r, t) do { \
+	(void)(d); (void)(a); (void)(s); (void)(r); (void)(t); \
+} while (0)
+#define dma_sync_single_range_for_cpu(d, a, o, s, r) do { \
+	(void)(d); (void)(a); (void)(o); (void)(s); (void)(r); \
+} while (0)
+#define dma_sync_single_range_for_device(d, a, o, s, r) do { \
+	(void)(d); (void)(a); (void)(o); (void)(s); (void)(r); \
+} while (0)
 #define dma_max_mapping_size(...) SIZE_MAX
 
 #endif
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 2/2] tools/virtio: Add hints when module is not installed
  2023-09-26  5:00 [PATCH 1/2] tools/virtio: Add dma sync api for virtio test liming.wu
@ 2023-09-26  5:00 ` liming.wu
  2023-09-27 15:20   ` Michael S. Tsirkin
  2023-10-08  4:35   ` [PATCH 2/2] tools/virtio: Add hints when module is not installed Jason Wang
  2023-10-08  4:37 ` [PATCH 1/2] tools/virtio: Add dma sync api for virtio test Jason Wang
  1 sibling, 2 replies; 11+ messages in thread
From: liming.wu @ 2023-09-26  5:00 UTC (permalink / raw)
  To: Michael S . Tsirkin, Jason Wang
  Cc: kvm, virtualization, netdev, linux-kernel, 398776277, Liming Wu

From: Liming Wu <liming.wu@jaguarmicro.com>

Need to insmod vhost_test.ko before run virtio_test.
Give some hints to users.

Signed-off-by: Liming Wu <liming.wu@jaguarmicro.com>
---
 tools/virtio/virtio_test.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c
index 028f54e6854a..ce2c4d93d735 100644
--- a/tools/virtio/virtio_test.c
+++ b/tools/virtio/virtio_test.c
@@ -135,6 +135,10 @@ static void vdev_info_init(struct vdev_info* dev, unsigned long long features)
 	dev->buf = malloc(dev->buf_size);
 	assert(dev->buf);
 	dev->control = open("/dev/vhost-test", O_RDWR);
+
+	if (dev->control < 0)
+		fprintf(stderr, "Install vhost_test module" \
+		"(./vhost_test/vhost_test.ko) firstly\n");
 	assert(dev->control >= 0);
 	r = ioctl(dev->control, VHOST_SET_OWNER, NULL);
 	assert(r >= 0);
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH 2/2] tools/virtio: Add hints when module is not installed
  2023-09-26  5:00 ` [PATCH 2/2] tools/virtio: Add hints when module is not installed liming.wu
@ 2023-09-27 15:20   ` Michael S. Tsirkin
  2023-10-07  6:55     ` [PATCH v2 1/2] tools/virtio: Add dma sync api for virtio test liming.wu
  2023-10-08  4:35   ` [PATCH 2/2] tools/virtio: Add hints when module is not installed Jason Wang
  1 sibling, 1 reply; 11+ messages in thread
From: Michael S. Tsirkin @ 2023-09-27 15:20 UTC (permalink / raw)
  To: liming.wu
  Cc: Jason Wang, kvm, virtualization, netdev, linux-kernel, 398776277

On Tue, Sep 26, 2023 at 01:00:20PM +0800, liming.wu@jaguarmicro.com wrote:
> From: Liming Wu <liming.wu@jaguarmicro.com>
> 
> Need to insmod vhost_test.ko before run virtio_test.
> Give some hints to users.
> 
> Signed-off-by: Liming Wu <liming.wu@jaguarmicro.com>
> ---
>  tools/virtio/virtio_test.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c
> index 028f54e6854a..ce2c4d93d735 100644
> --- a/tools/virtio/virtio_test.c
> +++ b/tools/virtio/virtio_test.c
> @@ -135,6 +135,10 @@ static void vdev_info_init(struct vdev_info* dev, unsigned long long features)
>  	dev->buf = malloc(dev->buf_size);
>  	assert(dev->buf);
>  	dev->control = open("/dev/vhost-test", O_RDWR);
> +
> +	if (dev->control < 0)
> +		fprintf(stderr, "Install vhost_test module" \
> +		"(./vhost_test/vhost_test.ko) firstly\n");

Thanks!

things to improve:

firstly -> first
add space before (
End sentence with a dot
align "" on the two lines

>  	assert(dev->control >= 0);
>  	r = ioctl(dev->control, VHOST_SET_OWNER, NULL);
>  	assert(r >= 0);
> -- 
> 2.34.1


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH v2 1/2] tools/virtio: Add dma sync api for virtio test
  2023-09-27 15:20   ` Michael S. Tsirkin
@ 2023-10-07  6:55     ` liming.wu
  2023-10-07  6:55       ` [PATCH v2 2/2] tools/virtio: Add hints when module is not installed liming.wu
  2023-10-08  2:19       ` [PATCH v2 1/2] tools/virtio: Add dma sync api for virtio test Xuan Zhuo
  0 siblings, 2 replies; 11+ messages in thread
From: liming.wu @ 2023-10-07  6:55 UTC (permalink / raw)
  To: Michael S . Tsirkin, Jason Wang
  Cc: kvm, virtualization, netdev, linux-kernel, Liming Wu

From: Liming Wu <liming.wu@jaguarmicro.com>

Fixes: 8bd2f71054bd ("virtio_ring: introduce dma sync api for virtqueue")
also add dma sync api for virtio test.

Signed-off-by: Liming Wu <liming.wu@jaguarmicro.com>
---
 tools/virtio/linux/dma-mapping.h | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/tools/virtio/linux/dma-mapping.h b/tools/virtio/linux/dma-mapping.h
index 834a90bd3270..822ecaa8e4df 100644
--- a/tools/virtio/linux/dma-mapping.h
+++ b/tools/virtio/linux/dma-mapping.h
@@ -24,11 +24,23 @@ enum dma_data_direction {
 #define dma_map_page(d, p, o, s, dir) (page_to_phys(p) + (o))
 
 #define dma_map_single(d, p, s, dir) (virt_to_phys(p))
+#define dma_map_single_attrs(d, p, s, dir, a) (virt_to_phys(p))
 #define dma_mapping_error(...) (0)
 
 #define dma_unmap_single(d, a, s, r) do { (void)(d); (void)(a); (void)(s); (void)(r); } while (0)
 #define dma_unmap_page(d, a, s, r) do { (void)(d); (void)(a); (void)(s); (void)(r); } while (0)
 
+#define sg_dma_address(sg) (0)
+#define dma_need_sync(v, a) (0)
+#define dma_unmap_single_attrs(d, a, s, r, t) do { \
+	(void)(d); (void)(a); (void)(s); (void)(r); (void)(t); \
+} while (0)
+#define dma_sync_single_range_for_cpu(d, a, o, s, r) do { \
+	(void)(d); (void)(a); (void)(o); (void)(s); (void)(r); \
+} while (0)
+#define dma_sync_single_range_for_device(d, a, o, s, r) do { \
+	(void)(d); (void)(a); (void)(o); (void)(s); (void)(r); \
+} while (0)
 #define dma_max_mapping_size(...) SIZE_MAX
 
 #endif
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v2 2/2] tools/virtio: Add hints when module is not installed
  2023-10-07  6:55     ` [PATCH v2 1/2] tools/virtio: Add dma sync api for virtio test liming.wu
@ 2023-10-07  6:55       ` liming.wu
  2023-10-08  2:19       ` [PATCH v2 1/2] tools/virtio: Add dma sync api for virtio test Xuan Zhuo
  1 sibling, 0 replies; 11+ messages in thread
From: liming.wu @ 2023-10-07  6:55 UTC (permalink / raw)
  To: Michael S . Tsirkin, Jason Wang
  Cc: kvm, virtualization, netdev, linux-kernel, Liming Wu

From: Liming Wu <liming.wu@jaguarmicro.com>

Need to insmod vhost_test.ko before run virtio_test.
Give some hints to users.

Signed-off-by: Liming Wu <liming.wu@jaguarmicro.com>
---
 tools/virtio/virtio_test.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c
index 028f54e6854a..13572a677c35 100644
--- a/tools/virtio/virtio_test.c
+++ b/tools/virtio/virtio_test.c
@@ -135,6 +135,10 @@ static void vdev_info_init(struct vdev_info* dev, unsigned long long features)
 	dev->buf = malloc(dev->buf_size);
 	assert(dev->buf);
 	dev->control = open("/dev/vhost-test", O_RDWR);
+
+	if (dev->control < 0)
+		fprintf(stderr,
+			"Install vhost_test module (/vhost_test/vhost_test.ko) first.\n");
 	assert(dev->control >= 0);
 	r = ioctl(dev->control, VHOST_SET_OWNER, NULL);
 	assert(r >= 0);
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 1/2] tools/virtio: Add dma sync api for virtio test
  2023-10-07  6:55     ` [PATCH v2 1/2] tools/virtio: Add dma sync api for virtio test liming.wu
  2023-10-07  6:55       ` [PATCH v2 2/2] tools/virtio: Add hints when module is not installed liming.wu
@ 2023-10-08  2:19       ` Xuan Zhuo
  2023-10-08  3:03         ` Liming Wu
  1 sibling, 1 reply; 11+ messages in thread
From: Xuan Zhuo @ 2023-10-08  2:19 UTC (permalink / raw)
  To: liming.wu
  Cc: kvm, virtualization, netdev, linux-kernel, Liming Wu,
	Michael S . Tsirkin, Jason Wang

On Sat,  7 Oct 2023 14:55:46 +0800, liming.wu@jaguarmicro.com wrote:
> From: Liming Wu <liming.wu@jaguarmicro.com>
>
> Fixes: 8bd2f71054bd ("virtio_ring: introduce dma sync api for virtqueue")
> also add dma sync api for virtio test.
>
> Signed-off-by: Liming Wu <liming.wu@jaguarmicro.com>

You should post a new thread.

Thanks.


> ---
>  tools/virtio/linux/dma-mapping.h | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>
> diff --git a/tools/virtio/linux/dma-mapping.h b/tools/virtio/linux/dma-mapping.h
> index 834a90bd3270..822ecaa8e4df 100644
> --- a/tools/virtio/linux/dma-mapping.h
> +++ b/tools/virtio/linux/dma-mapping.h
> @@ -24,11 +24,23 @@ enum dma_data_direction {
>  #define dma_map_page(d, p, o, s, dir) (page_to_phys(p) + (o))
>
>  #define dma_map_single(d, p, s, dir) (virt_to_phys(p))
> +#define dma_map_single_attrs(d, p, s, dir, a) (virt_to_phys(p))
>  #define dma_mapping_error(...) (0)
>
>  #define dma_unmap_single(d, a, s, r) do { (void)(d); (void)(a); (void)(s); (void)(r); } while (0)
>  #define dma_unmap_page(d, a, s, r) do { (void)(d); (void)(a); (void)(s); (void)(r); } while (0)
>
> +#define sg_dma_address(sg) (0)
> +#define dma_need_sync(v, a) (0)
> +#define dma_unmap_single_attrs(d, a, s, r, t) do { \
> +	(void)(d); (void)(a); (void)(s); (void)(r); (void)(t); \
> +} while (0)
> +#define dma_sync_single_range_for_cpu(d, a, o, s, r) do { \
> +	(void)(d); (void)(a); (void)(o); (void)(s); (void)(r); \
> +} while (0)
> +#define dma_sync_single_range_for_device(d, a, o, s, r) do { \
> +	(void)(d); (void)(a); (void)(o); (void)(s); (void)(r); \
> +} while (0)
>  #define dma_max_mapping_size(...) SIZE_MAX
>
>  #endif
> --
> 2.34.1
>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: [PATCH v2 1/2] tools/virtio: Add dma sync api for virtio test
  2023-10-08  2:19       ` [PATCH v2 1/2] tools/virtio: Add dma sync api for virtio test Xuan Zhuo
@ 2023-10-08  3:03         ` Liming Wu
  0 siblings, 0 replies; 11+ messages in thread
From: Liming Wu @ 2023-10-08  3:03 UTC (permalink / raw)
  To: Xuan Zhuo
  Cc: kvm@vger.kernel.org, virtualization@lists.linux-foundation.org,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
	Michael S . Tsirkin, Jason Wang



> -----Original Message-----
> From: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
> Sent: Sunday, October 8, 2023 10:19 AM
> To: Liming Wu <liming.wu@jaguarmicro.com>
> Cc: kvm@vger.kernel.org; virtualization@lists.linux-foundation.org;
> netdev@vger.kernel.org; linux-kernel@vger.kernel.org; Liming Wu
> <liming.wu@jaguarmicro.com>; Michael S . Tsirkin <mst@redhat.com>;
> Jason Wang <jasowang@redhat.com>
> Subject: Re: [PATCH v2 1/2] tools/virtio: Add dma sync api for virtio test
> 
> On Sat,  7 Oct 2023 14:55:46 +0800, liming.wu@jaguarmicro.com wrote:
> > From: Liming Wu <liming.wu@jaguarmicro.com>
> >
> > Fixes: 8bd2f71054bd ("virtio_ring: introduce dma sync api for
> > virtqueue") also add dma sync api for virtio test.
> >
> > Signed-off-by: Liming Wu <liming.wu@jaguarmicro.com>
> 
> You should post a new thread.

OK,  Thanks.
> 
> Thanks.
> 
> 
> > ---
> >

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 2/2] tools/virtio: Add hints when module is not installed
  2023-09-26  5:00 ` [PATCH 2/2] tools/virtio: Add hints when module is not installed liming.wu
  2023-09-27 15:20   ` Michael S. Tsirkin
@ 2023-10-08  4:35   ` Jason Wang
  2023-10-09  2:44     ` Liming Wu
  1 sibling, 1 reply; 11+ messages in thread
From: Jason Wang @ 2023-10-08  4:35 UTC (permalink / raw)
  To: liming.wu
  Cc: Michael S . Tsirkin, kvm, virtualization, netdev, linux-kernel,
	398776277

On Tue, Sep 26, 2023 at 1:00 PM <liming.wu@jaguarmicro.com> wrote:
>
> From: Liming Wu <liming.wu@jaguarmicro.com>
>
> Need to insmod vhost_test.ko before run virtio_test.
> Give some hints to users.
>
> Signed-off-by: Liming Wu <liming.wu@jaguarmicro.com>
> ---
>  tools/virtio/virtio_test.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c
> index 028f54e6854a..ce2c4d93d735 100644
> --- a/tools/virtio/virtio_test.c
> +++ b/tools/virtio/virtio_test.c
> @@ -135,6 +135,10 @@ static void vdev_info_init(struct vdev_info* dev, unsigned long long features)
>         dev->buf = malloc(dev->buf_size);
>         assert(dev->buf);
>         dev->control = open("/dev/vhost-test", O_RDWR);
> +
> +       if (dev->control < 0)
> +               fprintf(stderr, "Install vhost_test module" \
> +               "(./vhost_test/vhost_test.ko) firstly\n");

There should be many other reasons to fail for open().

Let's use strerror()?

Thanks


>         assert(dev->control >= 0);
>         r = ioctl(dev->control, VHOST_SET_OWNER, NULL);
>         assert(r >= 0);
> --
> 2.34.1
>


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/2] tools/virtio: Add dma sync api for virtio test
  2023-09-26  5:00 [PATCH 1/2] tools/virtio: Add dma sync api for virtio test liming.wu
  2023-09-26  5:00 ` [PATCH 2/2] tools/virtio: Add hints when module is not installed liming.wu
@ 2023-10-08  4:37 ` Jason Wang
  1 sibling, 0 replies; 11+ messages in thread
From: Jason Wang @ 2023-10-08  4:37 UTC (permalink / raw)
  To: liming.wu
  Cc: Michael S . Tsirkin, kvm, virtualization, netdev, linux-kernel,
	398776277

On Tue, Sep 26, 2023 at 1:00 PM <liming.wu@jaguarmicro.com> wrote:
>
> From: Liming Wu <liming.wu@jaguarmicro.com>
>
> Fixes: 8bd2f71054bd ("virtio_ring: introduce dma sync api for virtqueue")
> also add dma sync api for virtio test.
>
> Signed-off-by: Liming Wu <liming.wu@jaguarmicro.com>

Acked-by: Jason Wang <jasowang@redhat.com>

Thanks

> ---
>  tools/virtio/linux/dma-mapping.h | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>
> diff --git a/tools/virtio/linux/dma-mapping.h b/tools/virtio/linux/dma-mapping.h
> index 834a90bd3270..822ecaa8e4df 100644
> --- a/tools/virtio/linux/dma-mapping.h
> +++ b/tools/virtio/linux/dma-mapping.h
> @@ -24,11 +24,23 @@ enum dma_data_direction {
>  #define dma_map_page(d, p, o, s, dir) (page_to_phys(p) + (o))
>
>  #define dma_map_single(d, p, s, dir) (virt_to_phys(p))
> +#define dma_map_single_attrs(d, p, s, dir, a) (virt_to_phys(p))
>  #define dma_mapping_error(...) (0)
>
>  #define dma_unmap_single(d, a, s, r) do { (void)(d); (void)(a); (void)(s); (void)(r); } while (0)
>  #define dma_unmap_page(d, a, s, r) do { (void)(d); (void)(a); (void)(s); (void)(r); } while (0)
>
> +#define sg_dma_address(sg) (0)
> +#define dma_need_sync(v, a) (0)
> +#define dma_unmap_single_attrs(d, a, s, r, t) do { \
> +       (void)(d); (void)(a); (void)(s); (void)(r); (void)(t); \
> +} while (0)
> +#define dma_sync_single_range_for_cpu(d, a, o, s, r) do { \
> +       (void)(d); (void)(a); (void)(o); (void)(s); (void)(r); \
> +} while (0)
> +#define dma_sync_single_range_for_device(d, a, o, s, r) do { \
> +       (void)(d); (void)(a); (void)(o); (void)(s); (void)(r); \
> +} while (0)
>  #define dma_max_mapping_size(...) SIZE_MAX
>
>  #endif
> --
> 2.34.1
>


^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: [PATCH 2/2] tools/virtio: Add hints when module is not installed
  2023-10-08  4:35   ` [PATCH 2/2] tools/virtio: Add hints when module is not installed Jason Wang
@ 2023-10-09  2:44     ` Liming Wu
  2023-10-09 10:52       ` Michael S. Tsirkin
  0 siblings, 1 reply; 11+ messages in thread
From: Liming Wu @ 2023-10-09  2:44 UTC (permalink / raw)
  To: Jason Wang
  Cc: Michael S . Tsirkin, kvm@vger.kernel.org,
	virtualization@lists.linux-foundation.org, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org, 398776277@qq.com



> -----Original Message-----
> From: Jason Wang <jasowang@redhat.com>
> Sent: Sunday, October 8, 2023 12:36 PM
> To: Liming Wu <liming.wu@jaguarmicro.com>
> Cc: Michael S . Tsirkin <mst@redhat.com>; kvm@vger.kernel.org;
> virtualization@lists.linux-foundation.org; netdev@vger.kernel.org; linux-
> kernel@vger.kernel.org; 398776277@qq.com
> Subject: Re: [PATCH 2/2] tools/virtio: Add hints when module is not installed
> 
> On Tue, Sep 26, 2023 at 1:00 PM <liming.wu@jaguarmicro.com> wrote:
> >
> > From: Liming Wu <liming.wu@jaguarmicro.com>
> >
> > Need to insmod vhost_test.ko before run virtio_test.
> > Give some hints to users.
> >
> > Signed-off-by: Liming Wu <liming.wu@jaguarmicro.com>
> > ---
> >  tools/virtio/virtio_test.c | 4 ++++
> >  1 file changed, 4 insertions(+)
> >
> > diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c
> > index 028f54e6854a..ce2c4d93d735 100644
> > --- a/tools/virtio/virtio_test.c
> > +++ b/tools/virtio/virtio_test.c
> > @@ -135,6 +135,10 @@ static void vdev_info_init(struct vdev_info* dev,
> unsigned long long features)
> >         dev->buf = malloc(dev->buf_size);
> >         assert(dev->buf);
> >         dev->control = open("/dev/vhost-test", O_RDWR);
> > +
> > +       if (dev->control < 0)
> > +               fprintf(stderr, "Install vhost_test module" \
> > +               "(./vhost_test/vhost_test.ko) firstly\n");
> 
> There should be many other reasons to fail for open().
> 
> Let's use strerror()?
Yes,  Thanks for the review. 
Please rechecked the code as follow:
--- a/tools/virtio/virtio_test.c
+++ b/tools/virtio/virtio_test.c
@@ -135,6 +135,11 @@ static void vdev_info_init(struct vdev_info* dev, unsigned long long features)
        dev->buf = malloc(dev->buf_size);
        assert(dev->buf);
        dev->control = open("/dev/vhost-test", O_RDWR);
+
+       if (dev->control == NULL)
+               fprintf(stderr,
+                       "%s: Check whether vhost_test.ko is installed.\n",
+                       strerror(errno));
        assert(dev->control >= 0);
        r = ioctl(dev->control, VHOST_SET_OWNER, NULL);
        assert(r >= 0);
 
Thanks


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 2/2] tools/virtio: Add hints when module is not installed
  2023-10-09  2:44     ` Liming Wu
@ 2023-10-09 10:52       ` Michael S. Tsirkin
  0 siblings, 0 replies; 11+ messages in thread
From: Michael S. Tsirkin @ 2023-10-09 10:52 UTC (permalink / raw)
  To: Liming Wu
  Cc: Jason Wang, kvm@vger.kernel.org,
	virtualization@lists.linux-foundation.org, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org, 398776277@qq.com

On Mon, Oct 09, 2023 at 02:44:55AM +0000, Liming Wu wrote:
> 
> 
> > -----Original Message-----
> > From: Jason Wang <jasowang@redhat.com>
> > Sent: Sunday, October 8, 2023 12:36 PM
> > To: Liming Wu <liming.wu@jaguarmicro.com>
> > Cc: Michael S . Tsirkin <mst@redhat.com>; kvm@vger.kernel.org;
> > virtualization@lists.linux-foundation.org; netdev@vger.kernel.org; linux-
> > kernel@vger.kernel.org; 398776277@qq.com
> > Subject: Re: [PATCH 2/2] tools/virtio: Add hints when module is not installed
> > 
> > On Tue, Sep 26, 2023 at 1:00 PM <liming.wu@jaguarmicro.com> wrote:
> > >
> > > From: Liming Wu <liming.wu@jaguarmicro.com>
> > >
> > > Need to insmod vhost_test.ko before run virtio_test.
> > > Give some hints to users.
> > >
> > > Signed-off-by: Liming Wu <liming.wu@jaguarmicro.com>
> > > ---
> > >  tools/virtio/virtio_test.c | 4 ++++
> > >  1 file changed, 4 insertions(+)
> > >
> > > diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c
> > > index 028f54e6854a..ce2c4d93d735 100644
> > > --- a/tools/virtio/virtio_test.c
> > > +++ b/tools/virtio/virtio_test.c
> > > @@ -135,6 +135,10 @@ static void vdev_info_init(struct vdev_info* dev,
> > unsigned long long features)
> > >         dev->buf = malloc(dev->buf_size);
> > >         assert(dev->buf);
> > >         dev->control = open("/dev/vhost-test", O_RDWR);
> > > +
> > > +       if (dev->control < 0)
> > > +               fprintf(stderr, "Install vhost_test module" \
> > > +               "(./vhost_test/vhost_test.ko) firstly\n");
> > 
> > There should be many other reasons to fail for open().
> > 
> > Let's use strerror()?
> Yes,  Thanks for the review. 
> Please rechecked the code as follow:
> --- a/tools/virtio/virtio_test.c
> +++ b/tools/virtio/virtio_test.c
> @@ -135,6 +135,11 @@ static void vdev_info_init(struct vdev_info* dev, unsigned long long features)
>         dev->buf = malloc(dev->buf_size);
>         assert(dev->buf);
>         dev->control = open("/dev/vhost-test", O_RDWR);
> +
> +       if (dev->control == NULL)


???
Why are you comparing a file descriptor to NULL?

> +               fprintf(stderr,
> +                       "%s: Check whether vhost_test.ko is installed.\n",
> +                       strerror(errno));


No, do not suggest checking unconditionally this is just wasting user's
time.  You would have to check the exact errno value. You will either
get ENOENT or ENODEV if module is not loaded. Other errors indicate
other problems.  And what matters is whether it's loaded, not installed
- vhost_test.ko will not get auto-loaded even if installed.


>         assert(dev->control >= 0);
>         r = ioctl(dev->control, VHOST_SET_OWNER, NULL);
>         assert(r >= 0);
>  
> Thanks
> 

In short, I am not applying this patch. If you really want to make
things a bit easier in case of errors, replace all assert r >= 0 with
a macro that prints out strerror(errno), that should be enough.
Maybe print file/line number too while we are at it.

-- 
MST


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2023-10-09 10:52 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-26  5:00 [PATCH 1/2] tools/virtio: Add dma sync api for virtio test liming.wu
2023-09-26  5:00 ` [PATCH 2/2] tools/virtio: Add hints when module is not installed liming.wu
2023-09-27 15:20   ` Michael S. Tsirkin
2023-10-07  6:55     ` [PATCH v2 1/2] tools/virtio: Add dma sync api for virtio test liming.wu
2023-10-07  6:55       ` [PATCH v2 2/2] tools/virtio: Add hints when module is not installed liming.wu
2023-10-08  2:19       ` [PATCH v2 1/2] tools/virtio: Add dma sync api for virtio test Xuan Zhuo
2023-10-08  3:03         ` Liming Wu
2023-10-08  4:35   ` [PATCH 2/2] tools/virtio: Add hints when module is not installed Jason Wang
2023-10-09  2:44     ` Liming Wu
2023-10-09 10:52       ` Michael S. Tsirkin
2023-10-08  4:37 ` [PATCH 1/2] tools/virtio: Add dma sync api for virtio test Jason Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).