diff options
author | Sean Hefty <sean.hefty@intel.com> | 2009-11-19 15:57:18 -0500 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2009-11-19 15:57:18 -0500 |
commit | c4315d85f9b76834289fd503796c01b8311c4b84 (patch) | |
tree | 12a74b92f3b00c8d515811e131c850402cd1588a /drivers/infiniband | |
parent | d2e0886245aa9eebc1a4710c861d263b09eac493 (diff) |
IB/addr: Store net_device type instead of translating to RDMA transport
The struct rdma_dev_addr stores net_device address information:
the source device address, destination hardware address, and
broadcast address. For consistency, store the net_device type
rather than converting it to the rdma_node_type.
The type indicates the format of the various hardware addresses,
which is what we're concerned with, and not the RDMA node type
that the address may map to.
Signed-off-by: Sean Hefty <sean.hefty@intel.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/core/addr.c | 13 | ||||
-rw-r--r-- | drivers/infiniband/core/cma.c | 6 |
2 files changed, 4 insertions, 15 deletions
diff --git a/drivers/infiniband/core/addr.c b/drivers/infiniband/core/addr.c index b59ba7ccef0e..de5fe161a1b9 100644 --- a/drivers/infiniband/core/addr.c +++ b/drivers/infiniband/core/addr.c | |||
@@ -36,7 +36,6 @@ | |||
36 | #include <linux/mutex.h> | 36 | #include <linux/mutex.h> |
37 | #include <linux/inetdevice.h> | 37 | #include <linux/inetdevice.h> |
38 | #include <linux/workqueue.h> | 38 | #include <linux/workqueue.h> |
39 | #include <linux/if_arp.h> | ||
40 | #include <net/arp.h> | 39 | #include <net/arp.h> |
41 | #include <net/neighbour.h> | 40 | #include <net/neighbour.h> |
42 | #include <net/route.h> | 41 | #include <net/route.h> |
@@ -92,17 +91,7 @@ EXPORT_SYMBOL(rdma_addr_unregister_client); | |||
92 | int rdma_copy_addr(struct rdma_dev_addr *dev_addr, struct net_device *dev, | 91 | int rdma_copy_addr(struct rdma_dev_addr *dev_addr, struct net_device *dev, |
93 | const unsigned char *dst_dev_addr) | 92 | const unsigned char *dst_dev_addr) |
94 | { | 93 | { |
95 | switch (dev->type) { | 94 | dev_addr->dev_type = dev->type; |
96 | case ARPHRD_INFINIBAND: | ||
97 | dev_addr->dev_type = RDMA_NODE_IB_CA; | ||
98 | break; | ||
99 | case ARPHRD_ETHER: | ||
100 | dev_addr->dev_type = RDMA_NODE_RNIC; | ||
101 | break; | ||
102 | default: | ||
103 | return -EADDRNOTAVAIL; | ||
104 | } | ||
105 | |||
106 | memcpy(dev_addr->src_dev_addr, dev->dev_addr, MAX_ADDR_LEN); | 95 | memcpy(dev_addr->src_dev_addr, dev->dev_addr, MAX_ADDR_LEN); |
107 | memcpy(dev_addr->broadcast, dev->broadcast, MAX_ADDR_LEN); | 96 | memcpy(dev_addr->broadcast, dev->broadcast, MAX_ADDR_LEN); |
108 | if (dst_dev_addr) | 97 | if (dst_dev_addr) |
diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c index 699ad12b3a2f..b305b5c17f8d 100644 --- a/drivers/infiniband/core/cma.c +++ b/drivers/infiniband/core/cma.c | |||
@@ -330,11 +330,11 @@ static int cma_acquire_dev(struct rdma_id_private *id_priv) | |||
330 | union ib_gid gid; | 330 | union ib_gid gid; |
331 | int ret = -ENODEV; | 331 | int ret = -ENODEV; |
332 | 332 | ||
333 | switch (rdma_node_get_transport(dev_addr->dev_type)) { | 333 | switch (dev_addr->dev_type) { |
334 | case RDMA_TRANSPORT_IB: | 334 | case ARPHRD_INFINIBAND: |
335 | ib_addr_get_sgid(dev_addr, &gid); | 335 | ib_addr_get_sgid(dev_addr, &gid); |
336 | break; | 336 | break; |
337 | case RDMA_TRANSPORT_IWARP: | 337 | case ARPHRD_ETHER: |
338 | iw_addr_get_sgid(dev_addr, &gid); | 338 | iw_addr_get_sgid(dev_addr, &gid); |
339 | break; | 339 | break; |
340 | default: | 340 | default: |