event/opdl: fix error sign
authorDilshod Urazov <dilshod.urazov@oktetlabs.ru>
Thu, 4 Jul 2019 10:03:32 +0000 (11:03 +0100)
committerJerin Jacob <jerinj@marvell.com>
Sun, 7 Jul 2019 11:24:12 +0000 (13:24 +0200)
Fixes: 0bf298e39286 ("event/opdl: add event port config get/set")
Fixes: 3c7f3dcfb099 ("event/opdl: add PMD main body and helper function")
Fixes: 4236ce9bf5bf ("event/opdl: add OPDL ring infrastructure library")
Cc: stable@dpdk.org
Signed-off-by: Dilshod Urazov <dilshod.urazov@oktetlabs.ru>
Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Reviewed-by: David Marchand <david.marchand@redhat.com>
drivers/event/opdl/opdl_evdev.c
drivers/event/opdl/opdl_evdev_init.c
drivers/event/opdl/opdl_ring.c

index d2d2be4..3beca89 100644 (file)
@@ -102,7 +102,7 @@ opdl_port_link(struct rte_eventdev *dev,
                             dev->data->dev_id,
                                queues[0],
                                p->id);
-               rte_errno = -EINVAL;
+               rte_errno = EINVAL;
                return 0;
        }
 
@@ -113,7 +113,7 @@ opdl_port_link(struct rte_eventdev *dev,
                             dev->data->dev_id,
                                num,
                                p->id);
-               rte_errno = -EDQUOT;
+               rte_errno = EDQUOT;
                return 0;
        }
 
@@ -123,7 +123,7 @@ opdl_port_link(struct rte_eventdev *dev,
                             dev->data->dev_id,
                                p->id,
                                queues[0]);
-               rte_errno = -EINVAL;
+               rte_errno = EINVAL;
                return 0;
        }
 
@@ -134,7 +134,7 @@ opdl_port_link(struct rte_eventdev *dev,
                                p->id,
                                p->external_qid,
                                queues[0]);
-               rte_errno = -EINVAL;
+               rte_errno = EINVAL;
                return 0;
        }
 
@@ -160,7 +160,7 @@ opdl_port_unlink(struct rte_eventdev *dev,
                             dev->data->dev_id,
                             queues[0],
                             p->id);
-               rte_errno = -EINVAL;
+               rte_errno = EINVAL;
                return 0;
        }
        RTE_SET_USED(nb_unlinks);
index 582ad69..15aae47 100644 (file)
@@ -35,7 +35,7 @@ enqueue_check(struct opdl_port *p,
                                             p->id,
                                             ev[i].queue_id,
                                             p->next_external_qid);
-                               rte_errno = -EINVAL;
+                               rte_errno = EINVAL;
                                return 0;
                        }
                }
@@ -63,7 +63,7 @@ enqueue_check(struct opdl_port *p,
        } else {
                if (num > 0 &&
                                ev[0].queue_id != p->next_external_qid) {
-                       rte_errno = -EINVAL;
+                       rte_errno = EINVAL;
                        return 0;
                }
        }
@@ -116,7 +116,7 @@ opdl_rx_error_enqueue(struct opdl_port *p,
        RTE_SET_USED(ev);
        RTE_SET_USED(num);
 
-       rte_errno = -ENOSPC;
+       rte_errno = ENOSPC;
 
        return 0;
 }
@@ -145,7 +145,7 @@ opdl_rx_enqueue(struct opdl_port *p,
 
 
        if (enqueued < num)
-               rte_errno = -ENOSPC;
+               rte_errno = ENOSPC;
 
        return enqueued;
 }
@@ -164,7 +164,7 @@ opdl_tx_error_dequeue(struct opdl_port *p,
        RTE_SET_USED(ev);
        RTE_SET_USED(num);
 
-       rte_errno = -ENOSPC;
+       rte_errno = ENOSPC;
 
        return 0;
 }
@@ -240,7 +240,7 @@ opdl_claim(struct opdl_port *p, struct rte_event ev[], uint16_t num)
                             "Attempt to dequeue num of events larger than port (%d) max",
                             opdl_pmd_dev_id(p->opdl),
                             p->id);
-               rte_errno = -EINVAL;
+               rte_errno = EINVAL;
                return 0;
        }
 
index e988f1c..e8b29e2 100644 (file)
@@ -756,7 +756,7 @@ int
 opdl_stage_disclaim(struct opdl_stage *s, uint32_t num_entries, bool block)
 {
        if (num_entries != s->num_event) {
-               rte_errno = -EINVAL;
+               rte_errno = EINVAL;
                return 0;
        }
        if (s->threadsafe == false) {