Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 369259
b: refs/heads/master
c: 14b57a1
h: refs/heads/master
i:
  369257: 9e881e0
  369255: 2f86e1c
v: v3
  • Loading branch information
Thomas Graf authored and Jesse Gross committed Mar 30, 2013
1 parent 1c132a2 commit 2825584
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ed661185859cecfcbe3a0e585563525498b3f405
refs/heads/master: 14b57a10553b5b768f77b247e6dd285c65816064
13 changes: 7 additions & 6 deletions trunk/include/linux/openvswitch.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#define _LINUX_OPENVSWITCH_H 1

#include <linux/types.h>
#include <linux/if_ether.h>

/**
* struct ovs_header - header for OVS Generic Netlink messages.
Expand Down Expand Up @@ -269,8 +270,8 @@ enum ovs_frag_type {
#define OVS_FRAG_TYPE_MAX (__OVS_FRAG_TYPE_MAX - 1)

struct ovs_key_ethernet {
__u8 eth_src[6];
__u8 eth_dst[6];
__u8 eth_src[ETH_ALEN];
__u8 eth_dst[ETH_ALEN];
};

struct ovs_key_ipv4 {
Expand Down Expand Up @@ -316,14 +317,14 @@ struct ovs_key_arp {
__be32 arp_sip;
__be32 arp_tip;
__be16 arp_op;
__u8 arp_sha[6];
__u8 arp_tha[6];
__u8 arp_sha[ETH_ALEN];
__u8 arp_tha[ETH_ALEN];
};

struct ovs_key_nd {
__u32 nd_target[4];
__u8 nd_sll[6];
__u8 nd_tll[6];
__u8 nd_sll[ETH_ALEN];
__u8 nd_tll[ETH_ALEN];
};

/**
Expand Down

0 comments on commit 2825584

Please sign in to comment.