Commit cf123b01 authored by Takashi Sakamoto's avatar Takashi Sakamoto

firewire: core: use guard macro to maintain isochronous context for userspace client

The core function allows one isochronous contexts per userspace client.
The concurrent access to the context is protected by spinlock in the
instance of client.

This commit uses guard macro to maintain the spinlock.

Link: https://lore.kernel.org/r/20240805085408.251763-12-o-takashi@sakamocchi.jpSigned-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
parent d3816b8b
...@@ -1062,10 +1062,10 @@ static int ioctl_create_iso_context(struct client *client, union ioctl_arg *arg) ...@@ -1062,10 +1062,10 @@ static int ioctl_create_iso_context(struct client *client, union ioctl_arg *arg)
if (client->version < FW_CDEV_VERSION_AUTO_FLUSH_ISO_OVERFLOW) if (client->version < FW_CDEV_VERSION_AUTO_FLUSH_ISO_OVERFLOW)
context->drop_overflow_headers = true; context->drop_overflow_headers = true;
/* We only support one context at this time. */ // We only support one context at this time.
spin_lock_irq(&client->lock); guard(spinlock_irq)(&client->lock);
if (client->iso_context != NULL) { if (client->iso_context != NULL) {
spin_unlock_irq(&client->lock);
fw_iso_context_destroy(context); fw_iso_context_destroy(context);
return -EBUSY; return -EBUSY;
...@@ -1075,7 +1075,6 @@ static int ioctl_create_iso_context(struct client *client, union ioctl_arg *arg) ...@@ -1075,7 +1075,6 @@ static int ioctl_create_iso_context(struct client *client, union ioctl_arg *arg)
client->device->card, client->device->card,
iso_dma_direction(context)); iso_dma_direction(context));
if (ret < 0) { if (ret < 0) {
spin_unlock_irq(&client->lock);
fw_iso_context_destroy(context); fw_iso_context_destroy(context);
return ret; return ret;
...@@ -1084,7 +1083,6 @@ static int ioctl_create_iso_context(struct client *client, union ioctl_arg *arg) ...@@ -1084,7 +1083,6 @@ static int ioctl_create_iso_context(struct client *client, union ioctl_arg *arg)
} }
client->iso_closure = a->closure; client->iso_closure = a->closure;
client->iso_context = context; client->iso_context = context;
spin_unlock_irq(&client->lock);
a->handle = 0; a->handle = 0;
...@@ -1806,16 +1804,15 @@ static int fw_device_op_mmap(struct file *file, struct vm_area_struct *vma) ...@@ -1806,16 +1804,15 @@ static int fw_device_op_mmap(struct file *file, struct vm_area_struct *vma)
if (ret < 0) if (ret < 0)
return ret; return ret;
spin_lock_irq(&client->lock); scoped_guard(spinlock_irq, &client->lock) {
if (client->iso_context) { if (client->iso_context) {
ret = fw_iso_buffer_map_dma(&client->buffer, ret = fw_iso_buffer_map_dma(&client->buffer, client->device->card,
client->device->card, iso_dma_direction(client->iso_context));
iso_dma_direction(client->iso_context)); if (ret < 0)
client->buffer_is_mapped = (ret == 0); goto fail;
client->buffer_is_mapped = true;
}
} }
spin_unlock_irq(&client->lock);
if (ret < 0)
goto fail;
ret = vm_map_pages_zero(vma, client->buffer.pages, ret = vm_map_pages_zero(vma, client->buffer.pages,
client->buffer.page_count); client->buffer.page_count);
......
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