diff options
author | Steve Wise <swise@opengridcomputing.com> | 2019-02-15 22:03:57 +0300 |
---|---|---|
committer | Jason Gunthorpe <jgg@mellanox.com> | 2019-02-20 06:52:19 +0300 |
commit | 66920e1b25861d5bd99192489f6da7183529285e (patch) | |
tree | 010438d4c296abab5e304240dc3346be5c56e227 /drivers/infiniband/sw/rxe/rxe_net.h | |
parent | 3856ec4b93c9463d36ee39098dde1fbbd29ec6dd (diff) | |
download | linux-66920e1b25861d5bd99192489f6da7183529285e.tar.xz |
rdma_rxe: Use netlink messages to add/delete links
Add support for the RDMA_NLDEV_CMD_NEWLINK/DELLINK messages which allow
dynamically adding new RXE links. Deprecate the old module options for
now.
Cc: Moni Shoua <monis@mellanox.com>
Reviewed-by: Yanjun Zhu <yanjun.zhu@oracle.com>
Signed-off-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'drivers/infiniband/sw/rxe/rxe_net.h')
-rw-r--r-- | drivers/infiniband/sw/rxe/rxe_net.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/sw/rxe/rxe_net.h b/drivers/infiniband/sw/rxe/rxe_net.h index ad79514191bb..2ca71d3d245c 100644 --- a/drivers/infiniband/sw/rxe/rxe_net.h +++ b/drivers/infiniband/sw/rxe/rxe_net.h @@ -43,7 +43,7 @@ struct rxe_recv_sockets { struct socket *sk6; }; -int rxe_net_add(struct net_device *ndev); +int rxe_net_add(const char *ibdev_name, struct net_device *ndev); int rxe_net_init(void); void rxe_net_exit(void); |