qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
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 v9 4/5] Adding packet abstraction for VMWARE network devices
Date: Wed, 16 Jan 2013 15:48:00 +0100	[thread overview]
Message-ID: <20130116144800.GB9679@stefanha-thinkpad.redhat.com> (raw)
In-Reply-To: <1358006986-7248-5-git-send-email-dmitry@daynix.com>

On Sat, Jan 12, 2013 at 06:09:45PM +0200, Dmitry Fleytman wrote:
> ---
>  hw/vmxnet_rx_pkt.c | 187 ++++++++++++++++++
>  hw/vmxnet_rx_pkt.h | 173 ++++++++++++++++
>  hw/vmxnet_tx_pkt.c | 567 +++++++++++++++++++++++++++++++++++++++++++++++++++++
>  hw/vmxnet_tx_pkt.h | 148 ++++++++++++++
>  4 files changed, 1075 insertions(+)
>  create mode 100644 hw/vmxnet_rx_pkt.c
>  create mode 100644 hw/vmxnet_rx_pkt.h
>  create mode 100644 hw/vmxnet_tx_pkt.c
>  create mode 100644 hw/vmxnet_tx_pkt.h

There are other VMware-specific hw/ files.  Please create hw/vmware/ and
put source files in there without the prefix.  Check hw/pci/ or other
subdirectories for how to setup Makefile.objs, it's pretty simple.

> diff --git a/hw/vmxnet_rx_pkt.c b/hw/vmxnet_rx_pkt.c
> new file mode 100644
> index 0000000..947042a
> --- /dev/null
> +++ b/hw/vmxnet_rx_pkt.c
> @@ -0,0 +1,187 @@
> +/*
> + * QEMU VMWARE VMXNET* paravirtual NICs - RX packets abstractions
> + *
> + * Copyright (c) 2012 Ravello Systems LTD (http://ravellosystems.com)
> + *
> + * Developed by Daynix Computing LTD (http://www.daynix.com)
> + *
> + * Authors:
> + * Dmitry Fleytman <dmitry@daynix.com>
> + * Tamir Shomer <tamirs@daynix.com>
> + * Yan Vugenfirer <yan@daynix.com>
> + *
> + * This work is licensed under the terms of the GNU GPL, version 2 or later.
> + * See the COPYING file in the top-level directory.
> + *
> + */
> +
> +#include "vmxnet_rx_pkt.h"
> +#include "qemu/eth.h"
> +#include "qemu-common.h"
> +#include "qemu/iov.h"
> +#include "net/checksum.h"
> +#include "net/tap.h"
> +
> +/*
> + * RX packet may contain up to 2 fragments - rebuilt eth header
> + * in case of VLAN tag stripping
> + * and payload received from QEMU - in any case
> + */
> +#define VMXNET_MAX_RX_PACKET_FRAGMENTS (2)
> +
> +struct VmxnetRxPkt{
> +    struct virtio_net_hdr virt_hdr;
> +    uint8_t ehdr_buf[ETH_MAX_L2_HDR_LEN];
> +    struct iovec vec[VMXNET_MAX_RX_PACKET_FRAGMENTS];
> +    uint16_t vec_len;
> +    uint32_t tot_len;
> +    uint16_t tci;
> +    bool vlan_stripped;
> +    bool has_virt_hdr;
> +    eth_pkt_types_e packet_type;
> +
> +    /* Analysis results */
> +    bool isip4;
> +    bool isip6;
> +    bool isudp;
> +    bool istcp;
> +};
> +
> +void vmxnet_rx_pkt_init(struct VmxnetRxPkt **pkt, bool has_virt_hdr)
> +{
> +    struct VmxnetRxPkt *p = g_malloc0(sizeof *p);
> +    p->has_virt_hdr = has_virt_hdr;
> +    *pkt = p;
> +}
> +
> +void vmxnet_rx_pkt_uninit(struct VmxnetRxPkt *pkt)
> +{
> +     g_free(pkt);

4-space indentation please.

  reply	other threads:[~2013-01-16 14:48 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-12 16:09 [Qemu-devel] [PATCH V9 0/5] VMXNET3 paravirtual NIC device implementation Dmitry Fleytman
2013-01-12 16:09 ` [Qemu-devel] [PATCH v9 1/5] Adding utility function net_checksum_add_cont() that allows checksum calculation of scattered data with odd chunk sizes Dmitry Fleytman
2013-01-16 14:27   ` Stefan Hajnoczi
2013-01-21 12:01     ` Dmitry Fleytman
2013-01-21 12:48   ` Markus Armbruster
2013-01-12 16:09 ` [Qemu-devel] [PATCH v9 2/5] Adding utility function net_checksum_add_iov() for iovec checksum calculation Dmitry Fleytman
2013-01-12 16:09 ` [Qemu-devel] [PATCH v9 3/5] Adding common definitions for VMWARE devices Dmitry Fleytman
2013-01-16 15:24   ` Stefan Hajnoczi
2013-01-21 12:16     ` Dmitry Fleytman
2013-01-12 16:09 ` [Qemu-devel] [PATCH v9 4/5] Adding packet abstraction for VMWARE network devices Dmitry Fleytman
2013-01-16 14:48   ` Stefan Hajnoczi [this message]
2013-01-16 15:33     ` Paolo Bonzini
2013-01-17 10:24       ` Stefan Hajnoczi
2013-01-21 12:07         ` Dmitry Fleytman
2013-01-12 16:09 ` [Qemu-devel] [PATCH v9 5/5] Adding VMXNET3 device implementation Dmitry Fleytman
2013-01-16 15:16   ` Stefan Hajnoczi
2013-01-21 12:06     ` 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=20130116144800.GB9679@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).