Re: [PATCH V3 4/4] vdpa_sim_net: vendor satistics

2022-12-23 Thread Stefano Garzarella

On Fri, Dec 23, 2022 at 01:55:48PM +0800, Jason Wang wrote:

This patch adds support for basic vendor stats that include counters
for tx, rx and cvq.

Acked-by: Eugenio Pérez 
Signed-off-by: Jason Wang 
---
drivers/vdpa/vdpa_sim/vdpa_sim_net.c | 219 ++-
1 file changed, 213 insertions(+), 6 deletions(-)


Little typo in the commit title s/satistics/statistics

Anyway, the patch LGTM:

Reviewed-by: Stefano Garzarella 



diff --git a/drivers/vdpa/vdpa_sim/vdpa_sim_net.c 
b/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
index 5abd4efd9028..e827708adcca 100644
--- a/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
+++ b/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
@@ -15,6 +15,7 @@
#include 
#include 
#include 
+#include 
#include 
#include 

@@ -37,6 +38,34 @@
#define VDPASIM_NET_AS_NUM  2
#define VDPASIM_NET_GROUP_NUM   2

+struct vdpasim_dataq_stats {
+   struct u64_stats_sync syncp;
+   u64 pkts;
+   u64 bytes;
+   u64 drops;
+   u64 errors;
+   u64 overruns;
+};
+
+struct vdpasim_cq_stats {
+   struct u64_stats_sync syncp;
+   u64 requests;
+   u64 successes;
+   u64 errors;
+};
+
+struct vdpasim_net{
+   struct vdpasim vdpasim;
+   struct vdpasim_dataq_stats tx_stats;
+   struct vdpasim_dataq_stats rx_stats;
+   struct vdpasim_cq_stats cq_stats;
+};
+
+static struct vdpasim_net *sim_to_net(struct vdpasim *vdpasim)
+{
+   return container_of(vdpasim, struct vdpasim_net, vdpasim);
+}
+
static void vdpasim_net_complete(struct vdpasim_virtqueue *vq, size_t len)
{
/* Make sure data is wrote before advancing index */
@@ -97,9 +126,11 @@ static virtio_net_ctrl_ack vdpasim_handle_ctrl_mac(struct 
vdpasim *vdpasim,
static void vdpasim_handle_cvq(struct vdpasim *vdpasim)
{
struct vdpasim_virtqueue *cvq = &vdpasim->vqs[2];
+   struct vdpasim_net *net = sim_to_net(vdpasim);
virtio_net_ctrl_ack status = VIRTIO_NET_ERR;
struct virtio_net_ctrl_hdr ctrl;
size_t read, write;
+   u64 requests = 0, errors = 0, successes = 0;
int err;

if (!(vdpasim->features & (1ULL << VIRTIO_NET_F_CTRL_VQ)))
@@ -115,10 +146,13 @@ static void vdpasim_handle_cvq(struct vdpasim *vdpasim)
if (err <= 0)
break;

+   ++requests;
read = vringh_iov_pull_iotlb(&cvq->vring, &cvq->in_iov, &ctrl,
 sizeof(ctrl));
-   if (read != sizeof(ctrl))
+   if (read != sizeof(ctrl)) {
+   ++errors;
break;
+   }

switch (ctrl.class) {
case VIRTIO_NET_CTRL_MAC:
@@ -128,6 +162,11 @@ static void vdpasim_handle_cvq(struct vdpasim *vdpasim)
break;
}

+   if (status == VIRTIO_NET_OK)
+   ++successes;
+   else
+   ++errors;
+
/* Make sure data is wrote before advancing index */
smp_wmb();

@@ -145,6 +184,12 @@ static void vdpasim_handle_cvq(struct vdpasim *vdpasim)
cvq->cb(cvq->private);
local_bh_enable();
}
+
+   u64_stats_update_begin(&net->cq_stats.syncp);
+   net->cq_stats.requests += requests;
+   net->cq_stats.errors += errors;
+   net->cq_stats.successes += successes;
+   u64_stats_update_end(&net->cq_stats.syncp);
}

static void vdpasim_net_work(struct work_struct *work)
@@ -152,8 +197,10 @@ static void vdpasim_net_work(struct work_struct *work)
struct vdpasim *vdpasim = container_of(work, struct vdpasim, work);
struct vdpasim_virtqueue *txq = &vdpasim->vqs[1];
struct vdpasim_virtqueue *rxq = &vdpasim->vqs[0];
+   struct vdpasim_net *net = sim_to_net(vdpasim);
ssize_t read, write;
-   int pkts = 0;
+   u64 tx_pkts = 0, rx_pkts = 0, tx_bytes = 0, rx_bytes = 0;
+   u64 rx_drops = 0, rx_overruns = 0, rx_errors = 0, tx_errors = 0;
int err;

spin_lock(&vdpasim->lock);
@@ -172,14 +219,21 @@ static void vdpasim_net_work(struct work_struct *work)
while (true) {
err = vringh_getdesc_iotlb(&txq->vring, &txq->out_iov, NULL,
   &txq->head, GFP_ATOMIC);
-   if (err <= 0)
+   if (err <= 0) {
+   if (err)
+   ++tx_errors;
break;
+   }

+   ++tx_pkts;
read = vringh_iov_pull_iotlb(&txq->vring, &txq->out_iov,
 vdpasim->buffer,
 PAGE_SIZE);

+   tx_bytes += read;
+
if (!receive_filter(vdpasim, read)) {
+   ++rx_drops;
vdpasim_net_complete(txq, 0);
continue;
}
@@ -187,19 +241,25 @@ stati

[PATCH V3 4/4] vdpa_sim_net: vendor satistics

2022-12-22 Thread Jason Wang
This patch adds support for basic vendor stats that include counters
for tx, rx and cvq.

Acked-by: Eugenio Pérez 
Signed-off-by: Jason Wang 
---
 drivers/vdpa/vdpa_sim/vdpa_sim_net.c | 219 ++-
 1 file changed, 213 insertions(+), 6 deletions(-)

diff --git a/drivers/vdpa/vdpa_sim/vdpa_sim_net.c 
b/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
index 5abd4efd9028..e827708adcca 100644
--- a/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
+++ b/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
@@ -15,6 +15,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -37,6 +38,34 @@
 #define VDPASIM_NET_AS_NUM 2
 #define VDPASIM_NET_GROUP_NUM  2
 
+struct vdpasim_dataq_stats {
+   struct u64_stats_sync syncp;
+   u64 pkts;
+   u64 bytes;
+   u64 drops;
+   u64 errors;
+   u64 overruns;
+};
+
+struct vdpasim_cq_stats {
+   struct u64_stats_sync syncp;
+   u64 requests;
+   u64 successes;
+   u64 errors;
+};
+
+struct vdpasim_net{
+   struct vdpasim vdpasim;
+   struct vdpasim_dataq_stats tx_stats;
+   struct vdpasim_dataq_stats rx_stats;
+   struct vdpasim_cq_stats cq_stats;
+};
+
+static struct vdpasim_net *sim_to_net(struct vdpasim *vdpasim)
+{
+   return container_of(vdpasim, struct vdpasim_net, vdpasim);
+}
+
 static void vdpasim_net_complete(struct vdpasim_virtqueue *vq, size_t len)
 {
/* Make sure data is wrote before advancing index */
@@ -97,9 +126,11 @@ static virtio_net_ctrl_ack vdpasim_handle_ctrl_mac(struct 
vdpasim *vdpasim,
 static void vdpasim_handle_cvq(struct vdpasim *vdpasim)
 {
struct vdpasim_virtqueue *cvq = &vdpasim->vqs[2];
+   struct vdpasim_net *net = sim_to_net(vdpasim);
virtio_net_ctrl_ack status = VIRTIO_NET_ERR;
struct virtio_net_ctrl_hdr ctrl;
size_t read, write;
+   u64 requests = 0, errors = 0, successes = 0;
int err;
 
if (!(vdpasim->features & (1ULL << VIRTIO_NET_F_CTRL_VQ)))
@@ -115,10 +146,13 @@ static void vdpasim_handle_cvq(struct vdpasim *vdpasim)
if (err <= 0)
break;
 
+   ++requests;
read = vringh_iov_pull_iotlb(&cvq->vring, &cvq->in_iov, &ctrl,
 sizeof(ctrl));
-   if (read != sizeof(ctrl))
+   if (read != sizeof(ctrl)) {
+   ++errors;
break;
+   }
 
switch (ctrl.class) {
case VIRTIO_NET_CTRL_MAC:
@@ -128,6 +162,11 @@ static void vdpasim_handle_cvq(struct vdpasim *vdpasim)
break;
}
 
+   if (status == VIRTIO_NET_OK)
+   ++successes;
+   else
+   ++errors;
+
/* Make sure data is wrote before advancing index */
smp_wmb();
 
@@ -145,6 +184,12 @@ static void vdpasim_handle_cvq(struct vdpasim *vdpasim)
cvq->cb(cvq->private);
local_bh_enable();
}
+
+   u64_stats_update_begin(&net->cq_stats.syncp);
+   net->cq_stats.requests += requests;
+   net->cq_stats.errors += errors;
+   net->cq_stats.successes += successes;
+   u64_stats_update_end(&net->cq_stats.syncp);
 }
 
 static void vdpasim_net_work(struct work_struct *work)
@@ -152,8 +197,10 @@ static void vdpasim_net_work(struct work_struct *work)
struct vdpasim *vdpasim = container_of(work, struct vdpasim, work);
struct vdpasim_virtqueue *txq = &vdpasim->vqs[1];
struct vdpasim_virtqueue *rxq = &vdpasim->vqs[0];
+   struct vdpasim_net *net = sim_to_net(vdpasim);
ssize_t read, write;
-   int pkts = 0;
+   u64 tx_pkts = 0, rx_pkts = 0, tx_bytes = 0, rx_bytes = 0;
+   u64 rx_drops = 0, rx_overruns = 0, rx_errors = 0, tx_errors = 0;
int err;
 
spin_lock(&vdpasim->lock);
@@ -172,14 +219,21 @@ static void vdpasim_net_work(struct work_struct *work)
while (true) {
err = vringh_getdesc_iotlb(&txq->vring, &txq->out_iov, NULL,
   &txq->head, GFP_ATOMIC);
-   if (err <= 0)
+   if (err <= 0) {
+   if (err)
+   ++tx_errors;
break;
+   }
 
+   ++tx_pkts;
read = vringh_iov_pull_iotlb(&txq->vring, &txq->out_iov,
 vdpasim->buffer,
 PAGE_SIZE);
 
+   tx_bytes += read;
+
if (!receive_filter(vdpasim, read)) {
+   ++rx_drops;
vdpasim_net_complete(txq, 0);
continue;
}
@@ -187,19 +241,25 @@ static void vdpasim_net_work(struct work_struct *work)
err = vringh_getdesc_iotlb(&rxq->vring, NULL, &rxq->in_iov,