diff options
author | Moni Shoua <monis@mellanox.com> | 2015-07-30 18:33:29 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2015-08-30 18:12:20 -0400 |
commit | e26be1bfef81a2314a075f54dd8930cf5e8656df (patch) | |
tree | 89a59f6c1d2cd1185a542ceaeba4d28b867dccab /include/rdma | |
parent | 79857cd31fe70145ff007d4e968557af342c8ccd (diff) | |
download | op-kernel-dev-e26be1bfef81a2314a075f54dd8930cf5e8656df.zip op-kernel-dev-e26be1bfef81a2314a075f54dd8930cf5e8656df.tar.gz |
IB/mlx4: Implement ib_device callbacks
get_netdev: get the net_device on the physical port of the IB transport port. In
port aggregation mode it is required to return the netdev of the active port.
modify_gid: note for a change in the RoCE gid cache. Handle this by writing to
the harsware GID table. It is possible that indexes in cahce and hardware tables
won't match so a translation is required when modifying a QP or creating an
address handle.
Signed-off-by: Moni Shoua <monis@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'include/rdma')
-rw-r--r-- | include/rdma/ib_verbs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index 2de5683..5eff55c 100644 --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h @@ -65,6 +65,8 @@ union ib_gid { } global; }; +extern union ib_gid zgid; + struct ib_gid_attr { struct net_device *ndev; }; |