summaryrefslogtreecommitdiffstats
path: root/sys/net/ethernet.h
diff options
context:
space:
mode:
authoremaste <emaste@FreeBSD.org>2008-08-27 17:10:37 +0000
committeremaste <emaste@FreeBSD.org>2008-08-27 17:10:37 +0000
commit9fc003a7629974c6e6aa667c52c5aabb96b0962d (patch)
treedfb3be4d55a3146207e18e8e237fb3ddc270ae9c /sys/net/ethernet.h
parentfff9c7a248c5a7b446ddbf66aac2ae4d61bc7994 (diff)
downloadFreeBSD-src-9fc003a7629974c6e6aa667c52c5aabb96b0962d.zip
FreeBSD-src-9fc003a7629974c6e6aa667c52c5aabb96b0962d.tar.gz
Move CTASSERT of ether header sizes out of the header file and into
if_ethersubr.c. CTASSERT is implemented using a dummy typedef, which if used in a header file may conflict with another CTASSERT in a source file using that header. I'll make a note of this in CTASSERT's man page. Approved by: imp
Diffstat (limited to 'sys/net/ethernet.h')
-rw-r--r--sys/net/ethernet.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/net/ethernet.h b/sys/net/ethernet.h
index 685f3d6..1cb57ad 100644
--- a/sys/net/ethernet.h
+++ b/sys/net/ethernet.h
@@ -70,11 +70,6 @@ struct ether_addr {
u_char octet[ETHER_ADDR_LEN];
} __packed;
-#ifdef CTASSERT
-CTASSERT(sizeof (struct ether_header) == ETHER_ADDR_LEN * 2 + 2);
-CTASSERT(sizeof (struct ether_addr) == ETHER_ADDR_LEN);
-#endif
-
#define ETHER_IS_MULTICAST(addr) (*(addr) & 0x01) /* is address mcast/bcast? */
/*
OpenPOWER on IntegriCloud