diff options
author | 2019-12-29 09:34:43 +0000 | |
---|---|---|
committer | 2019-12-29 09:34:43 +0000 | |
commit | e0fb840d78dfbd942efc8e899cf8d7965b4a8427 (patch) | |
tree | 3945b7646460494513cf7082321af5cc0420d549 | |
parent | Wake up knote waiters in knote_drop(). This lets the blocked (diff) | |
download | wireguard-openbsd-e0fb840d78dfbd942efc8e899cf8d7965b4a8427.tar.xz wireguard-openbsd-e0fb840d78dfbd942efc8e899cf8d7965b4a8427.zip |
The name field of struct mpii_cfg_raid_vol_pg1 is 16 bytes, not 32.
tested by and ok kn@
-rw-r--r-- | sys/dev/pci/mpiireg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/mpiireg.h b/sys/dev/pci/mpiireg.h index 638f31171d1..af26cdffd58 100644 --- a/sys/dev/pci/mpiireg.h +++ b/sys/dev/pci/mpiireg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mpiireg.h,v 1.14 2019/09/12 22:22:53 jmatthew Exp $ */ +/* $OpenBSD: mpiireg.h,v 1.15 2019/12/29 09:34:43 jmatthew Exp $ */ /* * Copyright (c) 2010 Mike Belopuhov * Copyright (c) 2009 James Giannoules @@ -1355,7 +1355,7 @@ struct mpii_cfg_raid_vol_pg1 { u_int8_t guid[24]; - u_int8_t name[32]; + u_int8_t name[16]; u_int64_t wwid; |