aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-opa.c
AgeCommit message (Collapse)AuthorFilesLines
2018-06-28opa: Add support for TID RDMA protocolAdam Goldman1-61/+336
Change-Id: I04a4333e64a8fc9efc96bd351c55b293986629e2 Signed-off-by: Goldman, Adam <adam.goldman@intel.com> Reviewed-on: https://code.wireshark.org/review/28504 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-02-12dissectors: use SPDX identifiers.Dario Lombardo1-13/+1
Change-Id: I92c94448e6641716d03158a5f332c8b53709423a Reviewed-on: https://code.wireshark.org/review/25756 Petri-Dish: Dario Lombardo <lomato@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2017-03-06opa: fix this statement may fall through [-Werror=implicit-fallthrough=] ↵Alexis La Goutte1-0/+1
found by gcc7 Change-Id: I1edb5a3f7c9ac94c2a922058ca54d4b3e9218b0e Reviewed-on: https://code.wireshark.org/review/20408 Reviewed-by: Adam Goldman <adam.goldman@intel.com> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2017-01-10Rename tvb_new_subset() to tvb_new_subset_length_caplen().Guy Harris1-1/+1
This emphasizes that there is no such thing as *the* routine to construct a subset tvbuff; you need to choose one of tvb_new_subset_remaining() (if you want a new tvbuff that contains everything past a certain point in an existing tvbuff), tvb_new_subset_length() (if you want a subset that contains everything past a certain point, for some number of bytes, in an existing tvbuff), and tvb_new_subset_length_caplen() (for all other cases). Many of the calls to tvb_new_subset_length_caplen() should really be calling one of the other routines; that's the next step. (This also makes it easier to find the calls that need fixing.) Change-Id: Ieb3d676d8cda535451c119487d7cd3b559221f2b Reviewed-on: https://code.wireshark.org/review/19597 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2016-06-04opa: Fix LIDs not being byte swappedAdam Goldman1-2/+7
Change-Id: I897099bf9f6ee38d0ec9a7a5e9fb3bba43b5fe0f Reviewed-on: https://code.wireshark.org/review/15704 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Adam Goldman <adam.goldman@intel.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
2016-05-17opa: Add dissectors for Intel’s Omni-Path Architecture (OPA)Adam Goldman1-0/+1743
Added dissectors for OPA Fabric Executive (FE) Header, OPA Snoop and Capture (SnC) MetaData Header, OPA 9B Packets, and OPA MAD Packets. Bug: 12114 Change-Id: I6acd3c9e266e4b638167abbdd275ec7c1d472b4f Reviewed-on: https://code.wireshark.org/review/13473 Reviewed-by: Adam Goldman <adam.goldman@intel.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net>