mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
netdev: Remove useless cutlen.
Cutlen already applied while processing OVS_ACTION_ATTR_OUTPUT. Acked-by: Eelco Chaudron <echaudro@redhat.com> Signed-off-by: Ilya Maximets <i.maximets@samsung.com> Signed-off-by: Ian Stokes <ian.stokes@intel.com
This commit is contained in:
committed by
Ian Stokes
parent
b30896c969
commit
ad8b0b4fe7
@@ -1198,7 +1198,7 @@ netdev_linux_sock_batch_send(int sock, int ifindex,
|
||||
struct dp_packet *packet;
|
||||
DP_PACKET_BATCH_FOR_EACH (packet, batch) {
|
||||
iov[i].iov_base = dp_packet_data(packet);
|
||||
iov[i].iov_len = dp_packet_get_send_len(packet);
|
||||
iov[i].iov_len = dp_packet_size(packet);
|
||||
mmsg[i].msg_hdr = (struct msghdr) { .msg_name = &sll,
|
||||
.msg_namelen = sizeof sll,
|
||||
.msg_iov = &iov[i],
|
||||
@@ -1235,7 +1235,7 @@ netdev_linux_tap_batch_send(struct netdev *netdev_,
|
||||
struct netdev_linux *netdev = netdev_linux_cast(netdev_);
|
||||
struct dp_packet *packet;
|
||||
DP_PACKET_BATCH_FOR_EACH (packet, batch) {
|
||||
size_t size = dp_packet_get_send_len(packet);
|
||||
size_t size = dp_packet_size(packet);
|
||||
ssize_t retval;
|
||||
int error;
|
||||
|
||||
|
Reference in New Issue
Block a user