diff options
author | 2009-06-17 03:43:30 +0000 | |
---|---|---|
committer | 2009-06-17 03:43:30 +0000 | |
commit | 9a5bbe9d28089e154ab236d031058513636b95f6 (patch) | |
tree | 902874aa414229802efd276529573fc814cd5c84 | |
parent | sync (diff) | |
download | wireguard-openbsd-9a5bbe9d28089e154ab236d031058513636b95f6.tar.xz wireguard-openbsd-9a5bbe9d28089e154ab236d031058513636b95f6.zip |
Remove __packed from memory structure. No idea what in the wolrd I was
smoking but it sure as heck wasn't good.
Issue found by jsing on sparc64; tested by jsing and me on various arches.
ok deraadt jsing
-rw-r--r-- | sys/dev/softraidvar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/softraidvar.h b/sys/dev/softraidvar.h index e96f6a3ef26..634bac0ce17 100644 --- a/sys/dev/softraidvar.h +++ b/sys/dev/softraidvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: softraidvar.h,v 1.74 2009/06/12 23:56:02 jordan Exp $ */ +/* $OpenBSD: softraidvar.h,v 1.75 2009/06/17 03:43:30 marco Exp $ */ /* * Copyright (c) 2006 Marco Peereboom <marco@peereboom.us> * Copyright (c) 2008 Chris Kuethe <ckuethe@openbsd.org> @@ -239,7 +239,7 @@ struct sr_ccb { void *ccb_opaque; /* discipline usable pointer */ TAILQ_ENTRY(sr_ccb) ccb_link; -} __packed; +}; TAILQ_HEAD(sr_ccb_list, sr_ccb); |