]> git.droids-corp.org - dpdk.git/blobdiff - examples/vhost_xen/xenstore_parse.c
ethdev: add a missing sanity check for Tx queue setup
[dpdk.git] / examples / vhost_xen / xenstore_parse.c
index 9441639a32ccee717e2d9b0d77ac8dfb007f6544..eb629e2d2942fec4bdcb19503907f63fd6380327 100644 (file)
@@ -49,7 +49,6 @@
 
 #include <rte_common.h>
 #include <rte_memory.h>
-#include <rte_tailq.h>
 #include <rte_eal.h>
 #include <rte_malloc.h>
 #include <rte_string_fns.h>
@@ -248,8 +247,8 @@ parse_gntnode(int dom_id, char *path)
                goto err;
        }
 
-       gntnode = (struct xen_gntnode *)calloc(1, sizeof(struct xen_gntnode));
-       gnt = (struct xen_gnt *)calloc(gref_num, sizeof(struct xen_gnt));
+       gntnode = calloc(1, sizeof(struct xen_gntnode));
+       gnt = calloc(gref_num, sizeof(struct xen_gnt));
        if (gnt == NULL || gntnode == NULL)
                goto err;