netlink-socket: add support for OVS_WIN_NETDEV_FAMILY
[cascardo/ovs.git] / lib / packet-dpif.h
1 /*
2  * Copyright (c) 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 PACKET_DPIF_H
18 #define PACKET_DPIF_H 1
19
20 #include "ofpbuf.h"
21
22 #ifdef  __cplusplus
23 extern "C" {
24 #endif
25
26 /* A packet received from a netdev and passed to a dpif. */
27
28 struct dpif_packet {
29     struct ofpbuf ofpbuf;       /* Packet data. */
30 #ifndef DPDK_NETDEV
31     uint32_t dp_hash;           /* Packet hash. */
32 #endif
33 };
34
35 struct dpif_packet *dpif_packet_new_with_headroom(size_t size,
36                                                   size_t headroom);
37
38 struct dpif_packet *dpif_packet_clone_from_ofpbuf(const struct ofpbuf *b);
39
40 struct dpif_packet *dpif_packet_clone(struct dpif_packet *p);
41
42 static inline void dpif_packet_delete(struct dpif_packet *p)
43 {
44     struct ofpbuf *buf = &p->ofpbuf;
45
46     ofpbuf_delete(buf);
47 }
48
49 static inline uint32_t dpif_packet_get_dp_hash(struct dpif_packet *p)
50 {
51 #ifdef DPDK_NETDEV
52     return p->ofpbuf.mbuf.pkt.hash.rss;
53 #else
54     return p->dp_hash;
55 #endif
56 }
57
58 static inline void dpif_packet_set_dp_hash(struct dpif_packet *p,
59                                            uint32_t hash)
60 {
61 #ifdef DPDK_NETDEV
62     p->ofpbuf.mbuf.pkt.hash.rss = hash;
63 #else
64     p->dp_hash = hash;
65 #endif
66 }
67
68 #ifdef  __cplusplus
69 }
70 #endif
71
72 #endif /* packet-dpif.h */