Global replace of Nicira Networks.
[sliver-openvswitch.git] / include / openvswitch / types.h
1 /*
2  * Copyright (c) 2010, 2011 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 OPENVSWITCH_TYPES_H
18 #define OPENVSWITCH_TYPES_H 1
19
20 #include <linux/types.h>
21 #include <sys/types.h>
22 #include <stdint.h>
23
24 #ifdef __CHECKER__
25 #define OVS_BITWISE __attribute__((bitwise))
26 #define OVS_FORCE __attribute__((force))
27 #else
28 #define OVS_BITWISE
29 #define OVS_FORCE
30 #endif
31
32 /* The ovs_be<N> types indicate that an object is in big-endian, not
33  * native-endian, byte order.  They are otherwise equivalent to uint<N>_t.
34  *
35  * We bootstrap these from the Linux __be<N> types.  If we instead define our
36  * own independently then __be<N> and ovs_be<N> become mutually
37  * incompatible. */
38 typedef __be16 ovs_be16;
39 typedef __be32 ovs_be32;
40 typedef __be64 ovs_be64;
41 \f
42 /* Netlink and OpenFlow both contain 64-bit values that are only guaranteed to
43  * be aligned on 32-bit boundaries.  These types help.
44  *
45  * lib/unaligned.h has helper functions for accessing these. */
46
47 /* A 64-bit value, in host byte order, that is only aligned on a 32-bit
48  * boundary.  */
49 typedef struct {
50 #ifdef WORDS_BIGENDIAN
51         uint32_t hi, lo;
52 #else
53         uint32_t lo, hi;
54 #endif
55 } ovs_32aligned_u64;
56
57 /* A 64-bit value, in network byte order, that is only aligned on a 32-bit
58  * boundary. */
59 typedef struct {
60         ovs_be32 hi, lo;
61 } ovs_32aligned_be64;
62
63 #endif /* openvswitch/types.h */