diff options
author | Or Gerlitz <ogerlitz@mellanox.com> | 2015-12-18 09:59:50 +0100 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2015-12-22 23:01:40 +0100 |
commit | 182a2da0c768a9ec64abb0d6009667057f1c06af (patch) | |
tree | 4aaa1aaa6c6787a3db4b3a126cf1c104df09bf2c /drivers | |
parent | staging/o2iblnd: Avoid calling ib_query_device (diff) | |
download | linux-182a2da0c768a9ec64abb0d6009667057f1c06af.tar.xz linux-182a2da0c768a9ec64abb0d6009667057f1c06af.zip |
IB/core: Remove ib_query_device
The copy of the attributes present on the device is now used by all consumers
except for uverbs in case of serving user-space query, where dev->query_device
is called.
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/infiniband/core/device.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/drivers/infiniband/core/device.c b/drivers/infiniband/core/device.c index 568592e31b44..6def2f78aa32 100644 --- a/drivers/infiniband/core/device.c +++ b/drivers/infiniband/core/device.c @@ -636,25 +636,6 @@ void ib_dispatch_event(struct ib_event *event) EXPORT_SYMBOL(ib_dispatch_event); /** - * ib_query_device - Query IB device attributes - * @device:Device to query - * @device_attr:Device attributes - * - * ib_query_device() returns the attributes of a device through the - * @device_attr pointer. - */ -int ib_query_device(struct ib_device *device, - struct ib_device_attr *device_attr) -{ - struct ib_udata uhw = {.outlen = 0, .inlen = 0}; - - memset(device_attr, 0, sizeof(*device_attr)); - - return device->query_device(device, device_attr, &uhw); -} -EXPORT_SYMBOL(ib_query_device); - -/** * ib_query_port - Query IB port attributes * @device:Device to query * @port_num:Port number to query |