diff options
author | Michael S. Tsirkin <mst@mellanox.co.il> | 2006-09-18 15:17:08 -0400 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2006-09-22 18:22:55 -0400 |
commit | aec79fcc3ea3b536a2788b4e22b7ebabbb176485 (patch) | |
tree | 3ae94bd1003362c52aa6118897fbeacfd0b4128a /include/rdma | |
parent | 5755d6dad95808a24a65dd9e61e23c305f9b077c (diff) |
IB/sa: fix ib_sa_selector names
Relevant SA queries are actually "greater than" / "less than", not
"greater than or equal" / "less than or equal" as the names imply.
(See IB spec 1.2 Vol 1, 15.2.5.16 PATHRECORD/Table 205 PathRecord)
Signed-off-by: Michael S. Tsirkin <mst@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'include/rdma')
-rw-r--r-- | include/rdma/ib_sa.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rdma/ib_sa.h b/include/rdma/ib_sa.h index 58bb5f716fe3..97715b0c20b6 100644 --- a/include/rdma/ib_sa.h +++ b/include/rdma/ib_sa.h | |||
@@ -83,8 +83,8 @@ enum { | |||
83 | }; | 83 | }; |
84 | 84 | ||
85 | enum ib_sa_selector { | 85 | enum ib_sa_selector { |
86 | IB_SA_GTE = 0, | 86 | IB_SA_GT = 0, |
87 | IB_SA_LTE = 1, | 87 | IB_SA_LT = 1, |
88 | IB_SA_EQ = 2, | 88 | IB_SA_EQ = 2, |
89 | /* | 89 | /* |
90 | * The meaning of "best" depends on the attribute: for | 90 | * The meaning of "best" depends on the attribute: for |