Imported Upstream version 17.05
[deb_dpdk.git] / lib / librte_port / rte_port_kni.c
index 08f4ac2..2515fb2 100644 (file)
@@ -66,7 +66,7 @@ static void *
 rte_port_kni_reader_create(void *params, int socket_id)
 {
        struct rte_port_kni_reader_params *conf =
-                       (struct rte_port_kni_reader_params *) params;
+                       params;
        struct rte_port_kni_reader *port;
 
        /* Check input parameters */
@@ -93,7 +93,7 @@ static int
 rte_port_kni_reader_rx(void *port, struct rte_mbuf **pkts, uint32_t n_pkts)
 {
        struct rte_port_kni_reader *p =
-                       (struct rte_port_kni_reader *) port;
+                       port;
        uint16_t rx_pkt_cnt;
 
        rx_pkt_cnt = rte_kni_rx_burst(p->kni, pkts, n_pkts);
@@ -118,7 +118,7 @@ static int rte_port_kni_reader_stats_read(void *port,
        struct rte_port_in_stats *stats, int clear)
 {
        struct rte_port_kni_reader *p =
-                       (struct rte_port_kni_reader *) port;
+                       port;
 
        if (stats != NULL)
                memcpy(stats, &p->stats, sizeof(p->stats));
@@ -160,7 +160,7 @@ static void *
 rte_port_kni_writer_create(void *params, int socket_id)
 {
        struct rte_port_kni_writer_params *conf =
-                       (struct rte_port_kni_writer_params *) params;
+                       params;
        struct rte_port_kni_writer *port;
 
        /* Check input parameters */
@@ -207,7 +207,7 @@ static int
 rte_port_kni_writer_tx(void *port, struct rte_mbuf *pkt)
 {
        struct rte_port_kni_writer *p =
-                       (struct rte_port_kni_writer *) port;
+                       port;
 
        p->tx_buf[p->tx_buf_count++] = pkt;
        RTE_PORT_KNI_WRITER_STATS_PKTS_IN_ADD(p, 1);
@@ -223,7 +223,7 @@ rte_port_kni_writer_tx_bulk(void *port,
        uint64_t pkts_mask)
 {
        struct rte_port_kni_writer *p =
-                       (struct rte_port_kni_writer *) port;
+                       port;
        uint64_t bsz_mask = p->bsz_mask;
        uint32_t tx_buf_count = p->tx_buf_count;
        uint64_t expr = (pkts_mask & (pkts_mask + 1)) |
@@ -268,7 +268,7 @@ static int
 rte_port_kni_writer_flush(void *port)
 {
        struct rte_port_kni_writer *p =
-                       (struct rte_port_kni_writer *) port;
+                       port;
 
        if (p->tx_buf_count > 0)
                send_burst(p);
@@ -294,7 +294,7 @@ static int rte_port_kni_writer_stats_read(void *port,
        struct rte_port_out_stats *stats, int clear)
 {
        struct rte_port_kni_writer *p =
-                       (struct rte_port_kni_writer *) port;
+                       port;
 
        if (stats != NULL)
                memcpy(stats, &p->stats, sizeof(p->stats));
@@ -337,7 +337,7 @@ static void *
 rte_port_kni_writer_nodrop_create(void *params, int socket_id)
 {
        struct rte_port_kni_writer_nodrop_params *conf =
-               (struct rte_port_kni_writer_nodrop_params *) params;
+               params;
        struct rte_port_kni_writer_nodrop *port;
 
        /* Check input parameters */
@@ -410,7 +410,7 @@ static int
 rte_port_kni_writer_nodrop_tx(void *port, struct rte_mbuf *pkt)
 {
        struct rte_port_kni_writer_nodrop *p =
-                       (struct rte_port_kni_writer_nodrop *) port;
+                       port;
 
        p->tx_buf[p->tx_buf_count++] = pkt;
        RTE_PORT_KNI_WRITER_STATS_PKTS_IN_ADD(p, 1);
@@ -426,7 +426,7 @@ rte_port_kni_writer_nodrop_tx_bulk(void *port,
        uint64_t pkts_mask)
 {
        struct rte_port_kni_writer_nodrop *p =
-                       (struct rte_port_kni_writer_nodrop *) port;
+                       port;
 
        uint64_t bsz_mask = p->bsz_mask;
        uint32_t tx_buf_count = p->tx_buf_count;
@@ -478,7 +478,7 @@ static int
 rte_port_kni_writer_nodrop_flush(void *port)
 {
        struct rte_port_kni_writer_nodrop *p =
-               (struct rte_port_kni_writer_nodrop *) port;
+               port;
 
        if (p->tx_buf_count > 0)
                send_burst_nodrop(p);
@@ -504,7 +504,7 @@ static int rte_port_kni_writer_nodrop_stats_read(void *port,
        struct rte_port_out_stats *stats, int clear)
 {
        struct rte_port_kni_writer_nodrop *p =
-                       (struct rte_port_kni_writer_nodrop *) port;
+                       port;
 
        if (stats != NULL)
                memcpy(stats, &p->stats, sizeof(p->stats));