From: Dmitry Fleytman <dmitry@daynix.com>
To: qemu-devel@nongnu.org
Cc: Dmitry Fleytman <dmitry@daynix.com>,
Yan Vugenfirer <yan@daynix.com>,
Gerhard Wiesinger <lists@wiesinger.com>
Subject: [Qemu-devel] [PATCH V7 1/6] Adding utility function net_checksum_add_cont() that allows checksum calculation of scattered data with odd chunk sizes
Date: Fri, 16 Nov 2012 15:55:30 +0200 [thread overview]
Message-ID: <1353074135-9674-2-git-send-email-dmitry@daynix.com> (raw)
In-Reply-To: <1353074135-9674-1-git-send-email-dmitry@daynix.com>
Adding utility function net_raw_checksum() that calculates checksum
of buffer given
Signed-off-by: Dmitry Fleytman <dmitry@daynix.com>
Signed-off-by: Yan Vugenfirer <yan@daynix.com>
---
net/checksum.c | 13 +++++++------
net/checksum.h | 14 +++++++++++++-
2 files changed, 20 insertions(+), 7 deletions(-)
diff --git a/net/checksum.c b/net/checksum.c
index 9919b2e..4fa5563 100644
--- a/net/checksum.c
+++ b/net/checksum.c
@@ -20,16 +20,17 @@
#define PROTO_TCP 6
#define PROTO_UDP 17
-uint32_t net_checksum_add(int len, uint8_t *buf)
+uint32_t net_checksum_add_cont(int len, uint8_t *buf, int seq)
{
uint32_t sum = 0;
int i;
- for (i = 0; i < len; i++) {
- if (i & 1)
- sum += (uint32_t)buf[i];
- else
- sum += (uint32_t)buf[i] << 8;
+ for (i = seq; i < seq + len; i++) {
+ if (i & 1) {
+ sum += (uint32_t)buf[i - seq];
+ } else {
+ sum += (uint32_t)buf[i - seq] << 8;
+ }
}
return sum;
}
diff --git a/net/checksum.h b/net/checksum.h
index 1f05298..171924c 100644
--- a/net/checksum.h
+++ b/net/checksum.h
@@ -20,10 +20,22 @@
#include <stdint.h>
-uint32_t net_checksum_add(int len, uint8_t *buf);
+uint32_t net_checksum_add_cont(int len, uint8_t *buf, int seq);
uint16_t net_checksum_finish(uint32_t sum);
uint16_t net_checksum_tcpudp(uint16_t length, uint16_t proto,
uint8_t *addrs, uint8_t *buf);
void net_checksum_calculate(uint8_t *data, int length);
+static inline uint32_t
+net_checksum_add(int len, uint8_t *buf)
+{
+ return net_checksum_add_cont(len, buf, 0);
+}
+
+static inline uint16_t
+net_raw_checksum(uint8_t *data, int length)
+{
+ return net_checksum_finish(net_checksum_add(length, data));
+}
+
#endif /* QEMU_NET_CHECKSUM_H */
--
1.7.11.7
next prev parent reply other threads:[~2012-11-16 14:09 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-16 13:55 [Qemu-devel] [PATCH V7 0/6] VMXNET3 paravirtual NIC device implementation Dmitry Fleytman
2012-11-16 13:55 ` Dmitry Fleytman [this message]
2012-11-16 13:55 ` [Qemu-devel] [PATCH V7 2/6] Adding utility function iov_net_csum_add() for iovec checksum calculation Adding utility function iov_rebuild() for smart iovec copy Dmitry Fleytman
2012-11-30 15:35 ` Stefan Hajnoczi
2012-11-16 13:55 ` [Qemu-devel] [PATCH V7 3/6] Adding common definitions for VMWARE devices Dmitry Fleytman
2012-11-16 13:55 ` [Qemu-devel] [PATCH V7 4/6] Adding common code for VMWARE network devices Dmitry Fleytman
2012-11-30 15:56 ` Stefan Hajnoczi
2012-11-16 13:55 ` [Qemu-devel] [PATCH V7 5/6] Adding packet abstraction " Dmitry Fleytman
2012-11-30 16:23 ` Stefan Hajnoczi
2012-11-16 13:55 ` [Qemu-devel] [PATCH V7 6/6] Adding VMXNET3 device implementation Dmitry Fleytman
2012-11-30 16:37 ` Stefan Hajnoczi
2012-12-02 8:33 ` Dmitry Fleytman
2012-11-21 8:37 ` [Qemu-devel] [PATCH V7 0/6] VMXNET3 paravirtual NIC " Stefan Hajnoczi
2012-11-21 8:50 ` Dmitry Fleytman
2012-11-29 17:45 ` Stefan Hajnoczi
2012-11-29 19:10 ` Dmitry Fleytman
2012-11-30 14:14 ` Paolo Bonzini
2012-11-30 16:17 ` Anthony Liguori
2012-12-02 8:31 ` 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=1353074135-9674-2-git-send-email-dmitry@daynix.com \
--to=dmitry@daynix.com \
--cc=lists@wiesinger.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).