diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2009-06-17 03:43:31 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2009-06-17 03:43:31 +0000 |
commit | 3308619ca9dfc72c278750a58eea03702e0c2441 (patch) | |
tree | fa7c13a28cf54301d0f3e47c6f4c066cfc9c940e | |
parent | 96a4a962bbffa880518f7d24003701abb439d9b9 (diff) |
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); |