From: Stefan Hajnoczi <stefanha@gmail.com>
To: Dmitry Fleytman <dmitry@daynix.com>
Cc: Yan Vugenfirer <yan@daynix.com>,
Gerhard Wiesinger <lists@wiesinger.com>,
qemu-devel@nongnu.org, Anthony Liguori <anthony@codemonkey.ws>,
Paolo Bonzini <pbonzini@redhat.com>
Subject: Re: [Qemu-devel] [PATCH V8 4/5] Adding packet abstraction for VMWARE network devices
Date: Mon, 7 Jan 2013 15:35:17 +0100 [thread overview]
Message-ID: <20130107143517.GD18749@stefanha-thinkpad.redhat.com> (raw)
In-Reply-To: <1354878909-21369-5-git-send-email-dmitry@daynix.com>
On Fri, Dec 07, 2012 at 01:15:08PM +0200, Dmitry Fleytman wrote:
> +void vmxnet_tx_pkt_uninit(struct VmxnetTxPkt *pkt)
> +{
> + if (pkt) {
> + if (pkt->vec) {
> + g_free(pkt->vec);
> + }
> +
> + if (pkt->raw) {
> + g_free(pkt->raw);
> + }
g_free(NULL) is a nop so the conditional is not necessary.
> +static size_t vmxnet_tx_pkt_do_sw_fragmentation(struct VmxnetTxPkt *pkt,
> + NetClientState *nc)
> +{
> + struct iovec fragment[VMXNET_MAX_FRAG_SG_LIST];
> + size_t fragment_len = 0;
> + bool more_frags = false;
> + /* some poiners for shorter code */
> + void *l2_iov_base, *l3_iov_base;
> + size_t l2_iov_len, l3_iov_len;
> + int src_idx = VMXNET_TX_PKT_PL_START_FRAG, dst_idx;
> + size_t src_offset = 0;
> + size_t bytes_sent = 0;
> + size_t fragment_offset = 0;
> +
> + l2_iov_base = pkt->vec[VMXNET_TX_PKT_L2HDR_FRAG].iov_base;
> + l2_iov_len = pkt->vec[VMXNET_TX_PKT_L2HDR_FRAG].iov_len;
> + l3_iov_base = pkt->vec[VMXNET_TX_PKT_L3HDR_FRAG].iov_base;
> + l3_iov_len = pkt->vec[VMXNET_TX_PKT_L3HDR_FRAG].iov_len;
> +
> + /* Copy headers */
> + fragment[VMXNET_TX_PKT_FRAGMENT_L2_HDR_POS].iov_base = l2_iov_base;
> + fragment[VMXNET_TX_PKT_FRAGMENT_L2_HDR_POS].iov_len = l2_iov_len;
> + fragment[VMXNET_TX_PKT_FRAGMENT_L3_HDR_POS].iov_base = l3_iov_base;
> + fragment[VMXNET_TX_PKT_FRAGMENT_L3_HDR_POS].iov_len = l3_iov_len;
> +
> +
> + /* Put as much data as possible and send */
> + do {
> + fragment_len = vmxnet_tx_pkt_fetch_fragment(pkt, &src_idx, &src_offset,
> + fragment, &dst_idx);
> +
> + more_frags = (fragment_offset + fragment_len < pkt->payload_len);
> +
> + eth_setup_ip4_fragmentation(l2_iov_base, l2_iov_len, l3_iov_base,
> + l3_iov_len, fragment_len, fragment_offset, more_frags);
> +
> + eth_fix_ip4_checksum(l3_iov_base, l3_iov_len);
> +
> + bytes_sent += qemu_sendv_packet(nc, fragment, dst_idx);
The return values from qemu_sendv_packet() are:
Positive - Number of bytes successfully sent
0 - Packet queued for deferred transmission
Negative - Error
Accumulating bytes_sent is not safe against negative return values and
also questionable for 0 return values.
Stefan
next prev parent reply other threads:[~2013-01-07 14:35 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-07 11:15 [Qemu-devel] [PATCH V8 0/5] VMXNET3 paravirtual NIC device implementation Dmitry Fleytman
2012-12-07 11:15 ` [Qemu-devel] [PATCH V8 1/5] Adding utility function net_checksum_add_cont() that allows checksum calculation of scattered data with odd chunk sizes Dmitry Fleytman
2012-12-07 11:15 ` [Qemu-devel] [PATCH V8 2/5] Adding utility function net_checksum_add_iov() for iovec checksum calculation Dmitry Fleytman
2013-01-07 14:04 ` Stefan Hajnoczi
2013-01-11 13:33 ` Dmitry Fleytman
2012-12-07 11:15 ` [Qemu-devel] [PATCH V8 3/5] Adding common definitions for VMWARE devices Dmitry Fleytman
2013-01-07 14:17 ` Stefan Hajnoczi
2013-01-11 13:35 ` Dmitry Fleytman
2013-01-11 15:42 ` Stefan Hajnoczi
2013-01-12 16:14 ` Dmitry Fleytman
2012-12-07 11:15 ` [Qemu-devel] [PATCH V8 4/5] Adding packet abstraction for VMWARE network devices Dmitry Fleytman
2013-01-07 14:35 ` Stefan Hajnoczi [this message]
2013-01-12 16:16 ` Dmitry Fleytman
2012-12-07 11:15 ` [Qemu-devel] [PATCH V8 5/5] Adding VMXNET3 device implementation Dmitry Fleytman
2013-01-07 14:52 ` Stefan Hajnoczi
2013-01-12 16:17 ` Dmitry Fleytman
2013-03-27 14:43 ` Alexander Graf
2012-12-26 9:26 ` [Qemu-devel] [PATCH V8 0/5] VMXNET3 paravirtual NIC " Dmitry Fleytman
2013-01-07 15:01 ` Stefan Hajnoczi
2013-01-09 16:16 ` Dmitry Fleytman
2013-01-07 14:14 ` Stefan Hajnoczi
2013-01-12 16:20 ` Dmitry Fleytman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130107143517.GD18749@stefanha-thinkpad.redhat.com \
--to=stefanha@gmail.com \
--cc=anthony@codemonkey.ws \
--cc=dmitry@daynix.com \
--cc=lists@wiesinger.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=yan@daynix.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).