X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=lib%2Fnetdev.c;h=cfd979a0d41712b1cadc22cc5d7bee3a2f454c68;hb=e14deea0bd133796872d06f39a14d0393880f5bb;hp=2bda77f51a5bbf6076a73559baf4c15b9b15aa26;hpb=5aa5d00e989c31650501d96c38c835e256c47593;p=cascardo%2Fovs.git diff --git a/lib/netdev.c b/lib/netdev.c index 2bda77f51..cfd979a0d 100644 --- a/lib/netdev.c +++ b/lib/netdev.c @@ -641,7 +641,7 @@ netdev_rxq_close(struct netdev_rxq *rx) * This function may be set to null if it would always return EOPNOTSUPP * anyhow. */ int -netdev_rxq_recv(struct netdev_rxq *rx, struct dpif_packet **buffers, int *cnt) +netdev_rxq_recv(struct netdev_rxq *rx, struct dp_packet **buffers, int *cnt) { int retval; @@ -716,7 +716,7 @@ netdev_set_multiq(struct netdev *netdev, unsigned int n_txq, * Some network devices may not implement support for this function. In such * cases this function will always return EOPNOTSUPP. */ int -netdev_send(struct netdev *netdev, int qid, struct dpif_packet **buffers, +netdev_send(struct netdev *netdev, int qid, struct dp_packet **buffers, int cnt, bool may_steal) { int error; @@ -731,7 +731,7 @@ netdev_send(struct netdev *netdev, int qid, struct dpif_packet **buffers, } int -netdev_pop_header(struct netdev *netdev, struct dpif_packet **buffers, int cnt) +netdev_pop_header(struct netdev *netdev, struct dp_packet **buffers, int cnt) { return (netdev->netdev_class->pop_header ? netdev->netdev_class->pop_header(netdev, buffers, cnt) @@ -749,7 +749,7 @@ netdev_build_header(const struct netdev *netdev, struct ovs_action_push_tnl *dat int netdev_push_header(const struct netdev *netdev, - struct dpif_packet **buffers, int cnt, + struct dp_packet **buffers, int cnt, const struct ovs_action_push_tnl *data) { if (netdev->netdev_class->push_header) {