netdev-dpdk: fix mbuf leaks
[cascardo/ovs.git] / datapath-windows / ovsext / Jhash.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2012, 2014 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __JHASH_H_
18 #define __JHASH_H_ 1
19
20 /* This is the public domain lookup3 hash by Bob Jenkins from
21  * http://burtleburtle.net/bob/c/lookup3.c, modified for style.
22  *
23  * Use the functions in hash.h instead if you can.  These are here just for
24  * places where we've exposed a hash function "on the wire" and don't want it
25  * to change. */
26
27 uint32_t OvsJhashWords(const uint32_t *, size_t n_word, uint32_t basis);
28 uint32_t OvsJhashBytes(const void *, size_t n_bytes, uint32_t basis);
29
30 #endif /* __JHASH_H_ */