test: remove unnecessary cast of void pointer
authorStephen Hemminger <stephen@networkplumber.org>
Fri, 7 Apr 2017 17:44:57 +0000 (13:44 -0400)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 11 Apr 2017 16:05:10 +0000 (18:05 +0200)
Remove unnecessary casts of void * pointers to a specific type.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
test/test-pipeline/pipeline_hash.c
test/test/test_efd.c
test/test/test_interrupts.c
test/test/test_mbuf.c
test/test/test_table.c
test/test/test_table_acl.c
test/test/test_table_pipeline.c
test/test/virtual_pmd.c

index 0c6e04f..991e381 100644 (file)
@@ -480,7 +480,7 @@ uint64_t test_hash(
        __attribute__((unused)) uint32_t key_size,
        __attribute__((unused)) uint64_t seed)
 {
-       uint32_t *k32 = (uint32_t *) key;
+       uint32_t *k32 = key;
        uint32_t ip_dst = rte_be_to_cpu_32(k32[0]);
        uint64_t signature = (ip_dst >> 2) | ((ip_dst & 0x3) << 30);
 
index de49e1d..5443061 100644 (file)
@@ -306,7 +306,7 @@ static int test_five_keys(void)
                key_array[i] = &keys[i];
 
        rte_efd_lookup_bulk(handle, test_socket_id, 5,
-                       (const void **) (void *) &key_array, result);
+                       (void *) &key_array, result);
 
        for (i = 0; i < 5; i++) {
                TEST_ASSERT_EQUAL(result[i], data[i],
index 5377292..e0229e5 100644 (file)
@@ -201,7 +201,7 @@ test_interrupt_handle_compare(struct rte_intr_handle *intr_handle_l,
 static void
 test_interrupt_callback(void *arg)
 {
-       struct rte_intr_handle *intr_handle = (struct rte_intr_handle *)arg;
+       struct rte_intr_handle *intr_handle = arg;
        if (test_intr_type >= TEST_INTERRUPT_HANDLE_MAX) {
                printf("invalid interrupt type\n");
                flag = -1;
@@ -233,7 +233,7 @@ test_interrupt_callback(void *arg)
 static void
 test_interrupt_callback_1(void *arg)
 {
-       struct rte_intr_handle *intr_handle = (struct rte_intr_handle *)arg;
+       struct rte_intr_handle *intr_handle = arg;
        if (test_interrupt_handle_sanity_check(intr_handle) < 0) {
                printf("null or invalid intr_handle for %s\n", __func__);
                flag = -1;
index a2e9bc6..d3ea812 100644 (file)
@@ -692,7 +692,7 @@ test_refcnt_slave(__attribute__((unused)) void *arg)
        while (refcnt_stop_slaves == 0) {
                if (rte_ring_dequeue(refcnt_mbuf_ring, &mp) == 0) {
                        free++;
-                       rte_pktmbuf_free((struct rte_mbuf *)mp);
+                       rte_pktmbuf_free(mp);
                }
        }
 
index 1faa0a6..9e9eed8 100644 (file)
@@ -75,7 +75,7 @@ uint64_t pipeline_test_hash(void *key,
                __attribute__((unused)) uint32_t key_size,
                __attribute__((unused)) uint64_t seed)
 {
-       uint32_t *k32 = (uint32_t *) key;
+       uint32_t *k32 = key;
        uint32_t ip_dst = rte_be_to_cpu_32(k32[0]);
        uint64_t signature = ip_dst;
 
index 4d43be7..08c100f 100644 (file)
@@ -720,7 +720,7 @@ test_pipeline_single_filter(int expected_count)
                } else {
                        printf("Got %d object(s) from ring %d!\n", ret, i);
                        for (j = 0; j < ret; j++) {
-                               mbuf = (struct rte_mbuf *)objs[j];
+                               mbuf = objs[j];
                                rte_hexdump(stdout, "mbuf",
                                        rte_pktmbuf_mtod(mbuf, char *), 64);
                                rte_pktmbuf_free(mbuf);
index b58aa5d..a6fef72 100644 (file)
@@ -501,7 +501,7 @@ test_pipeline_single_filter(int test_type, int expected_count)
                else {
                        printf("Got %d object(s) from ring %d!\n", ret, i);
                        for (j = 0; j < ret; j++) {
-                               mbuf = (struct rte_mbuf *)objs[j];
+                               mbuf = objs[j];
                                rte_hexdump(stdout, "Object:",
                                        rte_pktmbuf_mtod(mbuf, char *),
                                        mbuf->data_len);
index b209355..b8802cd 100644 (file)
@@ -366,7 +366,7 @@ static uint16_t
 virtual_ethdev_tx_burst_success(void *queue, struct rte_mbuf **bufs,
                uint16_t nb_pkts)
 {
-       struct virtual_ethdev_queue *tx_q = (struct virtual_ethdev_queue *)queue;
+       struct virtual_ethdev_queue *tx_q = queue;
 
        struct rte_eth_dev *vrtl_eth_dev;
        struct virtual_ethdev_private *dev_private;
@@ -402,7 +402,7 @@ virtual_ethdev_tx_burst_fail(void *queue, struct rte_mbuf **bufs,
 
        int i;
 
-       tx_q = (struct virtual_ethdev_queue *)queue;
+       tx_q = queue;
        vrtl_eth_dev = &rte_eth_devices[tx_q->port_id];
        dev_private = vrtl_eth_dev->data->dev_private;