diff options
author | 2014-03-27 12:19:55 +0000 | |
---|---|---|
committer | 2014-03-27 12:19:55 +0000 | |
commit | bb52f9e6fb779f26befb1d16b2dd78ebbb8480fc (patch) | |
tree | fce98d909def766e9417d5c1bfd1b49f94da7139 /sys/dev/pci/mpiireg.h | |
parent | When enforcing TOS (Traffic Class), preserve the ECN bits, just as we do (diff) | |
download | wireguard-openbsd-bb52f9e6fb779f26befb1d16b2dd78ebbb8480fc.tar.xz wireguard-openbsd-bb52f9e6fb779f26befb1d16b2dd78ebbb8480fc.zip |
last of the htolem32 bits
Diffstat (limited to 'sys/dev/pci/mpiireg.h')
-rw-r--r-- | sys/dev/pci/mpiireg.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/dev/pci/mpiireg.h b/sys/dev/pci/mpiireg.h index e77da002a0f..6d4e5c18279 100644 --- a/sys/dev/pci/mpiireg.h +++ b/sys/dev/pci/mpiireg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mpiireg.h,v 1.8 2014/03/27 11:21:01 dlg Exp $ */ +/* $OpenBSD: mpiireg.h,v 1.9 2014/03/27 12:19:55 dlg Exp $ */ /* * Copyright (c) 2010 Mike Belopuhov * Copyright (c) 2009 James Giannoules @@ -345,11 +345,14 @@ struct mpii_msg_iocinit_request { u_int32_t system_reply_address_high; - u_int64_t system_request_frame_base_address; + u_int32_t system_request_frame_base_address_lo; + u_int32_t system_request_frame_base_address_hi; - u_int64_t reply_descriptor_post_queue_address; + u_int32_t reply_descriptor_post_queue_address_lo; + u_int32_t reply_descriptor_post_queue_address_hi; - u_int64_t reply_free_queue_address; + u_int32_t reply_free_queue_address_lo; + u_int32_t reply_free_queue_address_hi; u_int64_t timestamp; } __packed __aligned(4); |