[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH V15 04/12] Jhash: add linux kernel jhashtable in qem
From: |
Zhang Chen |
Subject: |
[Qemu-devel] [PATCH V15 04/12] Jhash: add linux kernel jhashtable in qemu |
Date: |
Tue, 27 Sep 2016 10:22:28 +0800 |
Jhash will be used by colo-compare and filter-rewriter
to save and lookup net connection info
Signed-off-by: Zhang Chen <address@hidden>
Signed-off-by: Li Zhijian <address@hidden>
Signed-off-by: Wen Congyang <address@hidden>
---
include/qemu/jhash.h | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++
net/colo.h | 1 +
2 files changed, 60 insertions(+)
create mode 100644 include/qemu/jhash.h
diff --git a/include/qemu/jhash.h b/include/qemu/jhash.h
new file mode 100644
index 0000000..7222242
--- /dev/null
+++ b/include/qemu/jhash.h
@@ -0,0 +1,59 @@
+/* jhash.h: Jenkins hash support.
+ *
+ * Copyright (C) 2006. Bob Jenkins (address@hidden)
+ *
+ * http://burtleburtle.net/bob/hash/
+ *
+ * These are the credits from Bob's sources:
+ *
+ * lookup3.c, by Bob Jenkins, May 2006, Public Domain.
+ *
+ * These are functions for producing 32-bit hashes for hash table lookup.
+ * hashword(), hashlittle(), hashlittle2(), hashbig(), mix(), and final()
+ * are externally useful functions. Routines to test the hash are included
+ * if SELF_TEST is defined. You can use this free for any purpose. It's in
+ * the public domain. It has no warranty.
+ *
+ * Copyright (C) 2009-2010 Jozsef Kadlecsik (address@hidden)
+ *
+ * I've modified Bob's hash to be useful in the Linux kernel, and
+ * any bugs present are my fault.
+ * Jozsef
+ */
+
+#ifndef QEMU_JHASH_H__
+#define QEMU_JHASH_H__
+
+#include "qemu/bitops.h"
+
+/*
+ * hashtable relation copy from linux kernel jhash
+ */
+
+/* __jhash_mix -- mix 3 32-bit values reversibly. */
+#define __jhash_mix(a, b, c) \
+{ \
+ a -= c; a ^= rol32(c, 4); c += b; \
+ b -= a; b ^= rol32(a, 6); a += c; \
+ c -= b; c ^= rol32(b, 8); b += a; \
+ a -= c; a ^= rol32(c, 16); c += b; \
+ b -= a; b ^= rol32(a, 19); a += c; \
+ c -= b; c ^= rol32(b, 4); b += a; \
+}
+
+/* __jhash_final - final mixing of 3 32-bit values (a,b,c) into c */
+#define __jhash_final(a, b, c) \
+{ \
+ c ^= b; c -= rol32(b, 14); \
+ a ^= c; a -= rol32(c, 11); \
+ b ^= a; b -= rol32(a, 25); \
+ c ^= b; c -= rol32(b, 16); \
+ a ^= c; a -= rol32(c, 4); \
+ b ^= a; b -= rol32(a, 14); \
+ c ^= b; c -= rol32(b, 24); \
+}
+
+/* An arbitrary initial parameter */
+#define JHASH_INITVAL 0xdeadbeef
+
+#endif /* QEMU_JHASH_H__ */
diff --git a/net/colo.h b/net/colo.h
index e211eda..05dc0b6 100644
--- a/net/colo.h
+++ b/net/colo.h
@@ -16,6 +16,7 @@
#define QEMU_COLO_PROXY_H
#include "slirp/slirp.h"
+#include "qemu/jhash.h"
#define HASHTABLE_MAX_SIZE 16384
--
2.7.4
- [Qemu-devel] [PATCH V15 00/12] Introduce COLO-Proxy, Zhang Chen, 2016/09/26
- [Qemu-devel] [PATCH V15 04/12] Jhash: add linux kernel jhashtable in qemu,
Zhang Chen <=
- [Qemu-devel] [PATCH V15 01/12] qemu-char: Add qemu_chr_add_handlers_full() for GMaincontext, Zhang Chen, 2016/09/26
- [Qemu-devel] [PATCH V15 09/12] filter-rewriter: track connection and parse packet, Zhang Chen, 2016/09/26
- [Qemu-devel] [PATCH V15 07/12] colo-compare: add TCP, UDP, ICMP packet comparison, Zhang Chen, 2016/09/26
- [Qemu-devel] [PATCH V15 03/12] net/colo.c: add colo.c to define and handle packet, Zhang Chen, 2016/09/26
- [Qemu-devel] [PATCH V15 06/12] colo-compare: introduce packet comparison thread, Zhang Chen, 2016/09/26
- [Qemu-devel] [PATCH V15 08/12] filter-rewriter: introduce filter-rewriter initialization, Zhang Chen, 2016/09/26
- [Qemu-devel] [PATCH V15 11/12] MAINTAINERS: add maintainer for COLO-proxy, Zhang Chen, 2016/09/26
- [Qemu-devel] [PATCH V15 05/12] colo-compare: track connection and enqueue packet, Zhang Chen, 2016/09/26
- [Qemu-devel] [PATCH V15 02/12] colo-compare: introduce colo compare initialization, Zhang Chen, 2016/09/26
- [Qemu-devel] [PATCH V15 12/12] docs: Add documentation for COLO-proxy, Zhang Chen, 2016/09/26