From: Dmitry Fleytman <dmitry@daynix.com>
To: qemu-devel@nongnu.org
Cc: Dmitry Fleytman <dmitry@daynix.com>,
Yan Vugenfirer <yan@daynix.com>,
Anthony Liguori <anthony@codemonkey.ws>,
Gerhard Wiesinger <lists@wiesinger.com>,
Paolo Bonzini <pbonzini@redhat.com>
Subject: [Qemu-devel] [PATCH v9 2/5] Adding utility function net_checksum_add_iov() for iovec checksum calculation
Date: Sat, 12 Jan 2013 18:09:43 +0200 [thread overview]
Message-ID: <1358006986-7248-3-git-send-email-dmitry@daynix.com> (raw)
In-Reply-To: <1358006986-7248-1-git-send-email-dmitry@daynix.com>
Signed-off-by: Dmitry Fleytman <dmitry@daynix.com>
Signed-off-by: Yan Vugenfirer <yan@daynix.com>
---
include/net/checksum.h | 8 ++++++++
net/checksum.c | 28 ++++++++++++++++++++++++++++
2 files changed, 36 insertions(+)
diff --git a/include/net/checksum.h b/include/net/checksum.h
index 171924c..289c16c 100644
--- a/include/net/checksum.h
+++ b/include/net/checksum.h
@@ -19,6 +19,7 @@
#define QEMU_NET_CHECKSUM_H
#include <stdint.h>
+#include "qemu-common.h"
uint32_t net_checksum_add_cont(int len, uint8_t *buf, int seq);
uint16_t net_checksum_finish(uint32_t sum);
@@ -38,4 +39,11 @@ net_raw_checksum(uint8_t *data, int length)
return net_checksum_finish(net_checksum_add(length, data));
}
+/**
+ * Checksum calculation for scatter-gather vector
+ */
+uint32_t net_checksum_add_iov(const struct iovec *iov,
+ const unsigned int iov_cnt,
+ uint32_t iov_off, uint32_t size);
+
#endif /* QEMU_NET_CHECKSUM_H */
diff --git a/net/checksum.c b/net/checksum.c
index 4fa5563..9c813ff 100644
--- a/net/checksum.c
+++ b/net/checksum.c
@@ -84,3 +84,31 @@ void net_checksum_calculate(uint8_t *data, int length)
data[14+hlen+csum_offset] = csum >> 8;
data[14+hlen+csum_offset+1] = csum & 0xff;
}
+
+uint32_t
+net_checksum_add_iov(const struct iovec *iov, const unsigned int iov_cnt,
+ uint32_t iov_off, uint32_t size)
+{
+ size_t iovec_off, buf_off;
+ unsigned int i;
+ uint32_t res = 0;
+ uint32_t seq = 0;
+
+ iovec_off = 0;
+ buf_off = 0;
+ for (i = 0; i < iov_cnt && size; i++) {
+ if (iov_off < (iovec_off + iov[i].iov_len)) {
+ size_t len = MIN((iovec_off + iov[i].iov_len) - iov_off , size);
+ void *chunk_buf = iov[i].iov_base + (iov_off - iovec_off);
+
+ res += net_checksum_add_cont(len, chunk_buf, seq);
+ seq += len;
+
+ buf_off += len;
+ iov_off += len;
+ size -= len;
+ }
+ iovec_off += iov[i].iov_len;
+ }
+ return res;
+}
--
1.7.11.7
next prev parent reply other threads:[~2013-01-12 16:25 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 ` Dmitry Fleytman [this message]
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
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=1358006986-7248-3-git-send-email-dmitry@daynix.com \
--to=dmitry@daynix.com \
--cc=anthony@codemonkey.ws \
--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).