From 2d7d8c05e7404fbebf1f0fe24c13bc5bb58d2338 Mon Sep 17 00:00:00 2001 From: jeff Date: Mon, 21 Mar 2011 09:40:01 +0000 Subject: - Merge changes to the base system to support OFED. These include a wider arg2 for sysctl, updates to vlan code, IFT_INFINIBAND, and other miscellaneous small features. --- sys/net/if_llatbl.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sys/net/if_llatbl.h') diff --git a/sys/net/if_llatbl.h b/sys/net/if_llatbl.h index babe743..9ed09f4 100644 --- a/sys/net/if_llatbl.h +++ b/sys/net/if_llatbl.h @@ -30,6 +30,8 @@ __FBSDID("$FreeBSD$"); #ifndef _NET_IF_LLATBL_H_ #define _NET_IF_LLATBL_H_ +#include "opt_ofed.h" + #include #include @@ -72,6 +74,9 @@ struct llentry { union { uint64_t mac_aligned; uint16_t mac16[3]; +#ifdef OFED + uint8_t mac8[20]; /* IB needs 20 bytes. */ +#endif } ll_addr; /* XXX af-private? */ -- cgit v1.1