Commit 2d65f49f authored by Parav Pandit's avatar Parav Pandit Committed by Jason Gunthorpe

RDMA/core: Use simpler spin lock irq API from blocking context

add_client_context(), ib_unregister_device() and ib_unregister_client()
are designed to call from blocking context.  There is no need to save and
restore last interrupt state when called from such blocking context.  Even
though this is not a performance path, using the right spin lock API is
desired for code clarity.

To avoid checkpatch warning while removing flags, sizeof() is used.
Signed-off-by: default avatarParav Pandit <parav@mellanox.com>
Reviewed-by: default avatarDaniel Jurgens <danielj@mellanox.com>
Signed-off-by: default avatarLeon Romanovsky <leonro@mellanox.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent 4512acd0
......@@ -297,9 +297,8 @@ EXPORT_SYMBOL(ib_dealloc_device);
static int add_client_context(struct ib_device *device, struct ib_client *client)
{
struct ib_client_data *context;
unsigned long flags;
context = kmalloc(sizeof *context, GFP_KERNEL);
context = kmalloc(sizeof(*context), GFP_KERNEL);
if (!context)
return -ENOMEM;
......@@ -308,9 +307,9 @@ static int add_client_context(struct ib_device *device, struct ib_client *client
context->going_down = false;
down_write(&lists_rwsem);
spin_lock_irqsave(&device->client_data_lock, flags);
spin_lock_irq(&device->client_data_lock);
list_add(&context->list, &device->client_data_list);
spin_unlock_irqrestore(&device->client_data_lock, flags);
spin_unlock_irq(&device->client_data_lock);
up_write(&lists_rwsem);
return 0;
......@@ -587,10 +586,10 @@ void ib_unregister_device(struct ib_device *device)
down_write(&lists_rwsem);
list_del(&device->core_list);
spin_lock_irqsave(&device->client_data_lock, flags);
spin_lock_irq(&device->client_data_lock);
list_for_each_entry(context, &device->client_data_list, list)
context->going_down = true;
spin_unlock_irqrestore(&device->client_data_lock, flags);
spin_unlock_irq(&device->client_data_lock);
downgrade_write(&lists_rwsem);
list_for_each_entry(context, &device->client_data_list, list) {
......@@ -668,7 +667,6 @@ void ib_unregister_client(struct ib_client *client)
{
struct ib_client_data *context;
struct ib_device *device;
unsigned long flags;
mutex_lock(&device_mutex);
......@@ -680,14 +678,14 @@ void ib_unregister_client(struct ib_client *client)
struct ib_client_data *found_context = NULL;
down_write(&lists_rwsem);
spin_lock_irqsave(&device->client_data_lock, flags);
spin_lock_irq(&device->client_data_lock);
list_for_each_entry(context, &device->client_data_list, list)
if (context->client == client) {
context->going_down = true;
found_context = context;
break;
}
spin_unlock_irqrestore(&device->client_data_lock, flags);
spin_unlock_irq(&device->client_data_lock);
up_write(&lists_rwsem);
if (client->remove)
......@@ -701,9 +699,9 @@ void ib_unregister_client(struct ib_client *client)
}
down_write(&lists_rwsem);
spin_lock_irqsave(&device->client_data_lock, flags);
spin_lock_irq(&device->client_data_lock);
list_del(&found_context->list);
spin_unlock_irqrestore(&device->client_data_lock, flags);
spin_unlock_irq(&device->client_data_lock);
up_write(&lists_rwsem);
kfree(found_context);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment