From: Jason Wang <jasowang@redhat.com>
To: Zhang Chen <zhangchen.fnst@cn.fujitsu.com>,
qemu devel <qemu-devel@nongnu.org>
Cc: zhanghailiang <zhang.zhanghailiang@huawei.com>,
weifuqiang <weifuqiang@huawei.com>,
"eddie . dong" <eddie.dong@intel.com>,
bian naimeng <biannm@cn.fujitsu.com>,
Li Zhijian <lizhijian@cn.fujitsu.com>
Subject: Re: [Qemu-devel] [PATCH V4 07/12] net/colo.c: Make vnet_hdr_len as packet property
Date: Mon, 15 May 2017 12:05:05 +0800 [thread overview]
Message-ID: <8779a4c4-17eb-c643-6a44-6f20f55cb6f7@redhat.com> (raw)
In-Reply-To: <1494553288-30764-8-git-send-email-zhangchen.fnst@cn.fujitsu.com>
On 2017年05月12日 09:41, Zhang Chen wrote:
> We can use this property flush and send packet with vnet_hdr_len.
>
> Signed-off-by: Zhang Chen <zhangchen.fnst@cn.fujitsu.com>
Then I think it's not necessary to store vnet_hdr_len in SocketReadState?
Thanks
> ---
> net/colo-compare.c | 8 ++++++--
> net/colo.c | 3 ++-
> net/colo.h | 4 +++-
> net/filter-rewriter.c | 2 +-
> 4 files changed, 12 insertions(+), 5 deletions(-)
>
> diff --git a/net/colo-compare.c b/net/colo-compare.c
> index 99a6912..87a9529 100644
> --- a/net/colo-compare.c
> +++ b/net/colo-compare.c
> @@ -122,9 +122,13 @@ static int packet_enqueue(CompareState *s, int mode)
> Connection *conn;
>
> if (mode == PRIMARY_IN) {
> - pkt = packet_new(s->pri_rs.buf, s->pri_rs.packet_len);
> + pkt = packet_new(s->pri_rs.buf,
> + s->pri_rs.packet_len,
> + s->pri_rs.vnet_hdr_len);
> } else {
> - pkt = packet_new(s->sec_rs.buf, s->sec_rs.packet_len);
> + pkt = packet_new(s->sec_rs.buf,
> + s->sec_rs.packet_len,
> + s->sec_rs.vnet_hdr_len);
> }
>
> if (parse_packet_early(pkt)) {
> diff --git a/net/colo.c b/net/colo.c
> index 8cc166b..180eaed 100644
> --- a/net/colo.c
> +++ b/net/colo.c
> @@ -153,13 +153,14 @@ void connection_destroy(void *opaque)
> g_slice_free(Connection, conn);
> }
>
> -Packet *packet_new(const void *data, int size)
> +Packet *packet_new(const void *data, int size, int vnet_hdr_len)
> {
> Packet *pkt = g_slice_new(Packet);
>
> pkt->data = g_memdup(data, size);
> pkt->size = size;
> pkt->creation_ms = qemu_clock_get_ms(QEMU_CLOCK_HOST);
> + pkt->vnet_hdr_len = vnet_hdr_len;
>
> return pkt;
> }
> diff --git a/net/colo.h b/net/colo.h
> index 7c524f3..caedb0d 100644
> --- a/net/colo.h
> +++ b/net/colo.h
> @@ -43,6 +43,8 @@ typedef struct Packet {
> int size;
> /* Time of packet creation, in wall clock ms */
> int64_t creation_ms;
> + /* Get vnet_hdr_len from filter */
> + uint32_t vnet_hdr_len;
> } Packet;
>
> typedef struct ConnectionKey {
> @@ -82,7 +84,7 @@ Connection *connection_get(GHashTable *connection_track_table,
> ConnectionKey *key,
> GQueue *conn_list);
> void connection_hashtable_reset(GHashTable *connection_track_table);
> -Packet *packet_new(const void *data, int size);
> +Packet *packet_new(const void *data, int size, int vnet_hdr_len);
> void packet_destroy(void *opaque, void *user_data);
>
> #endif /* QEMU_COLO_PROXY_H */
> diff --git a/net/filter-rewriter.c b/net/filter-rewriter.c
> index afa06e8..63256c7 100644
> --- a/net/filter-rewriter.c
> +++ b/net/filter-rewriter.c
> @@ -158,7 +158,7 @@ static ssize_t colo_rewriter_receive_iov(NetFilterState *nf,
> char *buf = g_malloc0(size);
>
> iov_to_buf(iov, iovcnt, 0, buf, size);
> - pkt = packet_new(buf, size);
> + pkt = packet_new(buf, size, 0);
> g_free(buf);
>
> /*
next prev parent reply other threads:[~2017-05-15 4:05 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-12 1:41 [Qemu-devel] [PATCH V4 00/12] Add COLO-proxy virtio-net support Zhang Chen
2017-05-12 1:41 ` [Qemu-devel] [PATCH V4 01/12] net: Add vnet_hdr_len related arguments in NetClientState Zhang Chen
2017-05-13 21:24 ` Philippe Mathieu-Daudé
2017-05-15 3:24 ` Jason Wang
2017-05-15 6:56 ` Zhang Chen
2017-05-15 8:06 ` Jason Wang
2017-05-15 8:14 ` Zhang Chen
2017-05-16 6:49 ` Jason Wang
2017-05-23 12:06 ` Zhang Chen
2017-05-12 1:41 ` [Qemu-devel] [PATCH V4 02/12] net/filter-mirror.c: Add new option to enable vnet support for filter-mirror Zhang Chen
2017-05-13 1:49 ` Hailiang Zhang
2017-05-14 14:31 ` Zhang Chen
2017-05-15 3:26 ` Jason Wang
2017-05-15 6:57 ` Zhang Chen
2017-05-12 1:41 ` [Qemu-devel] [PATCH V4 03/12] net/filter-mirror.c: Make filter_mirror_send support vnet support Zhang Chen
2017-05-15 3:28 ` Jason Wang
2017-05-15 7:34 ` Zhang Chen
2017-05-12 1:41 ` [Qemu-devel] [PATCH V4 04/12] net/filter-mirror.c: Add new option to enable vnet support for filter-redirector Zhang Chen
2017-05-15 3:31 ` Jason Wang
2017-05-15 7:47 ` Zhang Chen
2017-05-12 1:41 ` [Qemu-devel] [PATCH V4 05/12] net/net.c: Add vnet_hdr support in SocketReadState Zhang Chen
2017-05-15 4:02 ` Jason Wang
2017-05-15 7:49 ` Zhang Chen
2017-05-12 1:41 ` [Qemu-devel] [PATCH V4 06/12] net/colo-compare.c: Add new option to enable vnet support for colo-compare Zhang Chen
2017-05-15 4:03 ` Jason Wang
2017-05-15 7:55 ` Zhang Chen
2017-05-12 1:41 ` [Qemu-devel] [PATCH V4 07/12] net/colo.c: Make vnet_hdr_len as packet property Zhang Chen
2017-05-15 4:05 ` Jason Wang [this message]
2017-05-15 8:03 ` Zhang Chen
2017-05-15 8:18 ` Jason Wang
2017-05-23 11:59 ` Zhang Chen
2017-05-12 1:41 ` [Qemu-devel] [PATCH V4 08/12] net/colo-compare.c: Make colo-compare support vnet_hdr_len Zhang Chen
2017-05-12 1:41 ` [Qemu-devel] [PATCH V4 09/12] net/colo.c: Add vnet packet parse feature in colo-proxy Zhang Chen
2017-05-12 1:41 ` [Qemu-devel] [PATCH V4 10/12] net/colo-compare.c: Add vnet packet's tcp/udp/icmp compare Zhang Chen
2017-05-15 4:11 ` Jason Wang
2017-05-15 8:04 ` Zhang Chen
2017-05-12 1:41 ` [Qemu-devel] [PATCH V4 11/12] net/filter-rewriter.c: Add new option to enable vnet support for filter-rewriter Zhang Chen
2017-05-15 4:12 ` Jason Wang
2017-05-15 8:05 ` Zhang Chen
2017-05-12 1:41 ` [Qemu-devel] [PATCH V4 12/12] net/filter-rewriter.c: Make filter-rewriter support vnet_hdr_len Zhang Chen
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=8779a4c4-17eb-c643-6a44-6f20f55cb6f7@redhat.com \
--to=jasowang@redhat.com \
--cc=biannm@cn.fujitsu.com \
--cc=eddie.dong@intel.com \
--cc=lizhijian@cn.fujitsu.com \
--cc=qemu-devel@nongnu.org \
--cc=weifuqiang@huawei.com \
--cc=zhang.zhanghailiang@huawei.com \
--cc=zhangchen.fnst@cn.fujitsu.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).