diff options
author | Michael Brown <mcb30@ipxe.org> | 2015-11-30 16:24:23 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2015-11-30 22:13:27 +0000 |
commit | 475cc92b0bfc3158514c5ec816a4d80f86ef51fc (patch) | |
tree | 47289c93106394d43a88c6d6b9740ff1dc7174ad /src/include/ipxe/ib_packet.h | |
parent | 8aa2026a9ff09538effe687feee9f48746bff6e8 (diff) | |
download | ipxe-475cc92b0bfc3158514c5ec816a4d80f86ef51fc.tar.gz |
[infiniband] Add qword accessors for ib_guid and ib_gid
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/ib_packet.h')
-rw-r--r-- | src/include/ipxe/ib_packet.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/ipxe/ib_packet.h b/src/include/ipxe/ib_packet.h index f275fcb09..2cea016bd 100644 --- a/src/include/ipxe/ib_packet.h +++ b/src/include/ipxe/ib_packet.h @@ -19,6 +19,7 @@ union ib_guid { uint8_t bytes[8]; uint16_t words[4]; uint32_t dwords[2]; + uint64_t qword; }; /** Infiniband Globally Unique Identifier debug message format */ @@ -33,6 +34,7 @@ union ib_gid { uint8_t bytes[16]; uint16_t words[8]; uint32_t dwords[4]; + uint64_t qwords[2]; struct { union ib_guid prefix; union ib_guid guid; |