From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Zhang Chen <zhangchen.fnst@cn.fujitsu.com>
Cc: Li Zhijian <lizhijian@cn.fujitsu.com>,
Gui jianfeng <guijianfeng@cn.fujitsu.com>,
Jason Wang <jasowang@redhat.com>,
"eddie.dong" <eddie.dong@intel.com>,
qemu devel <qemu-devel@nongnu.org>,
Huang peng <peter.huangpeng@huawei.com>,
Gong lei <arei.gonglei@huawei.com>,
Stefan Hajnoczi <stefanha@redhat.com>,
jan.kiszka@siemens.com,
Yang Hongyang <hongyang.yang@easystack.cn>,
zhanghailiang <zhang.zhanghailiang@huawei.com>
Subject: Re: [Qemu-devel] [RFC PATCH v2 02/10] Jhash: add linux kernel jhashtable in qemu
Date: Tue, 12 Jan 2016 08:58:40 +0000 [thread overview]
Message-ID: <20160112085840.GA2455@work-vm> (raw)
In-Reply-To: <56945DD5.8050305@cn.fujitsu.com>
* Zhang Chen (zhangchen.fnst@cn.fujitsu.com) wrote:
>
>
> On 01/11/2016 08:50 PM, Dr. David Alan Gilbert wrote:
> >* Zhang Chen (zhangchen.fnst@cn.fujitsu.com) wrote:
> >>
> >>On 01/08/2016 08:08 PM, Dr. David Alan Gilbert wrote:
> >>>* Zhang Chen (zhangchen.fnst@cn.fujitsu.com) wrote:
> >>>>From: zhangchen <zhangchen.fnst@cn.fujitsu.com>
> >>>>
> >>>>Jhash used by colo-proxy to save and lookup
> >>>>net connection info
> >>>>
> >>>>Signed-off-by: zhangchen <zhangchen.fnst@cn.fujitsu.com>
> >>>>Signed-off-by: zhanghailiang <zhang.zhanghailiang@huawei.com>
> >>>>---
> >>>> include/qemu/jhash.h | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++
> >>>> 1 file changed, 61 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..5b82d02
> >>>>--- /dev/null
> >>>>+++ b/include/qemu/jhash.h
> >>>>@@ -0,0 +1,61 @@
> >>>>+/* jhash.h: Jenkins hash support.
> >>>>+ *
> >>>>+ * Copyright (C) 2006. Bob Jenkins (bob_jenkins@burtleburtle.net)
> >>>>+ *
> >>>>+ * 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 (kadlec@blackhole.kfki.hu)
> >>>>+ *
> >>>>+ * 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/bitopt.h"
> >>>That does not build, the header in qemu is bitop*s*.h.
> >>>
> >>>Dave
> >>I'm very sorry for it, fix it to
> >>
> >>#include "qemu/bitopts.h"
> >No! It's:
> >
> >#include "qemu/bitops.h"
> >
> >Please at least build test this code!
> >
> >Dave
>
> Fix it to #include "qemu/bitops.h"
> I have rebuild this code,but qemu makefile did't check the .h
> I don't know whether it is a qemu bug.
> you can try change it to #include "qemu/bitops.h" and make.
> then change it to #include "qemu/bitopts.h" and make.
> repeat it twice, now, you can change it to #include "everything"
> in jhash.h. gcc don't check the .h and report error.////
gcc/makefile don't check these things; it's when you include the
next patch in your series, that #include "qemu/jhash.h" in colo-proxy.c
which is where it will break.
Dave
>
>
> Thanks
> zhangchen
>
>
> >>Thanks
> >>zhangchen
> >>
> >>
> >>>>+
> >>>>+/*
> >>>>+ * 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__ */
> >>>>--
> >>>>1.9.1
> >>>>
> >>>>
> >>>>
> >>>--
> >>>Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
> >>>
> >>>
> >>>.
> >>>
> >>--
> >>Thanks
> >>zhangchen
> >>
> >>
> >>
> >--
> >Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
> >
> >
> >.
> >
>
> --
> Thanks
> zhangchen
>
>
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2016-01-12 8:58 UTC|newest]
Thread overview: 75+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-22 10:42 [Qemu-devel] [RFC PATCH v2 00/10] Add colo-proxy based on netfilter Zhang Chen
2015-12-22 10:42 ` [Qemu-devel] [RFC PATCH v2 01/10] Init colo-proxy object " Zhang Chen
2016-01-15 18:21 ` Dr. David Alan Gilbert
2016-01-18 7:08 ` Zhang Chen
2015-12-22 10:42 ` [Qemu-devel] [RFC PATCH v2 02/10] Jhash: add linux kernel jhashtable in qemu Zhang Chen
2016-01-08 12:08 ` Dr. David Alan Gilbert
2016-01-11 1:49 ` Zhang Chen
2016-01-11 12:50 ` Dr. David Alan Gilbert
2016-01-12 1:58 ` Zhang Chen
2016-01-12 8:58 ` Dr. David Alan Gilbert [this message]
2015-12-22 10:42 ` [Qemu-devel] [RFC PATCH v2 03/10] Colo-proxy: add colo-proxy framework Zhang Chen
2016-02-19 19:57 ` Dr. David Alan Gilbert
2016-02-22 3:04 ` Zhang Chen
2015-12-22 10:42 ` [Qemu-devel] [RFC PATCH v2 04/10] Colo-proxy: add data structure and jhash func Zhang Chen
2015-12-22 10:42 ` [Qemu-devel] [RFC PATCH v2 05/10] net/colo-proxy: Add colo interface to use proxy Zhang Chen
2016-02-19 19:58 ` Dr. David Alan Gilbert
2016-02-22 3:08 ` Zhang Chen
2015-12-22 10:42 ` [Qemu-devel] [RFC PATCH v2 06/10] net/colo-proxy: add socket used by forward func Zhang Chen
2016-02-19 20:01 ` Dr. David Alan Gilbert
2016-02-22 5:51 ` Zhang Chen
2015-12-22 10:42 ` [Qemu-devel] [RFC PATCH v2 07/10] net/colo-proxy: Add packet enqueue & handle func Zhang Chen
2015-12-22 10:42 ` [Qemu-devel] [RFC PATCH v2 08/10] net/colo-proxy: Handle packet and connection Zhang Chen
2016-02-19 20:04 ` Dr. David Alan Gilbert
2016-02-22 6:41 ` Zhang Chen
2016-02-22 19:54 ` Dr. David Alan Gilbert
2016-02-23 17:58 ` Dr. David Alan Gilbert
2016-02-24 2:01 ` Zhang Chen
2015-12-22 10:42 ` [Qemu-devel] [RFC PATCH v2 09/10] net/colo-proxy: Compare pri pkt to sec pkt Zhang Chen
2016-02-19 20:07 ` Dr. David Alan Gilbert
2015-12-22 10:42 ` [Qemu-devel] [RFC PATCH v2 10/10] net/colo-proxy: Colo-proxy do checkpoint and clear Zhang Chen
2015-12-29 6:31 ` [Qemu-devel] [RFC PATCH v2 00/10] Add colo-proxy based on netfilter Zhang Chen
2015-12-29 6:58 ` Jason Wang
2015-12-29 7:08 ` Zhang Chen
2015-12-31 2:36 ` Jason Wang
2015-12-31 8:02 ` Li Zhijian
2016-01-04 2:08 ` Jason Wang
2015-12-31 8:40 ` Zhang Chen
2016-01-04 5:37 ` Jason Wang
2016-01-04 8:16 ` Zhang Chen
2016-01-04 9:46 ` Jason Wang
2016-01-04 11:17 ` Zhang Chen
2016-01-06 5:16 ` Jason Wang
2016-01-18 7:05 ` Zhang Chen
2016-01-18 9:29 ` Jason Wang
2016-01-20 3:29 ` Zhang Chen
2016-01-20 6:54 ` Jason Wang
2016-01-20 7:44 ` Wen Congyang
2016-01-20 9:20 ` Jason Wang
2016-01-20 9:49 ` Wen Congyang
2016-01-20 10:03 ` Jason Wang
2016-01-20 10:34 ` Wen Congyang
2016-01-22 5:33 ` Jason Wang
2016-01-22 5:57 ` Wen Congyang
2016-01-20 10:01 ` Wen Congyang
2016-01-20 10:19 ` Jason Wang
2016-01-20 10:30 ` Wen Congyang
2016-01-22 3:15 ` Jason Wang
2016-01-22 3:28 ` Wen Congyang
2016-01-22 5:41 ` Jason Wang
2016-01-22 5:56 ` Wen Congyang
2016-01-22 6:21 ` Jason Wang
2016-01-22 6:47 ` Wen Congyang
2016-01-22 7:42 ` Jason Wang
2016-01-22 7:46 ` Wen Congyang
2016-01-27 15:22 ` Eric Blake
2016-01-04 16:52 ` Dr. David Alan Gilbert
2016-01-06 5:20 ` Jason Wang
2016-01-06 9:10 ` Dr. David Alan Gilbert
2016-01-08 11:19 ` Dr. David Alan Gilbert
2016-01-11 1:30 ` Zhang Chen
2016-01-11 12:59 ` Dr. David Alan Gilbert
2016-01-12 7:32 ` Zhang Chen
2016-02-29 20:04 ` Dr. David Alan Gilbert
2016-03-01 2:39 ` Li Zhijian
2016-03-01 10:48 ` Dr. David Alan Gilbert
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=20160112085840.GA2455@work-vm \
--to=dgilbert@redhat.com \
--cc=arei.gonglei@huawei.com \
--cc=eddie.dong@intel.com \
--cc=guijianfeng@cn.fujitsu.com \
--cc=hongyang.yang@easystack.cn \
--cc=jan.kiszka@siemens.com \
--cc=jasowang@redhat.com \
--cc=lizhijian@cn.fujitsu.com \
--cc=peter.huangpeng@huawei.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.