dpif-linux: Avoid null dereference if all ports disappear.
[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     uint32_t dp_hash;           /* Packet hash. */
31 };
32
33 struct dpif_packet *dpif_packet_new_with_headroom(size_t size,
34                                                   size_t headroom);
35
36 struct dpif_packet *dpif_packet_clone_from_ofpbuf(const struct ofpbuf *b);
37
38 struct dpif_packet *dpif_packet_clone(struct dpif_packet *p);
39
40 static inline void dpif_packet_delete(struct dpif_packet *p)
41 {
42     struct ofpbuf *buf = &p->ofpbuf;
43
44     ofpbuf_delete(buf);
45 }
46
47 #ifdef  __cplusplus
48 }
49 #endif
50
51 #endif /* packet-dpif.h */