summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2014-08-12 16:58:51 +0200
committerDavid Herrmann <dh.herrmann@gmail.com>2014-08-12 18:12:57 +0200
commit75ac53f1bb67ce37d95a2ebb9385d0e72622454a (patch)
treecae0f59ef0cae13110e9d3c2df8790604008e755
parentc5c93729d86257909b8ce643a594c49da7f05615 (diff)
Input: evdev - drop redundant client_listrevoke-experimental
The client_list of evdev devices keeps the same information as the VFS revokable_file list. Drop the redundant list and use the VFS core instead. Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
-rw-r--r--drivers/input/evdev.c31
1 files changed, 15 insertions, 16 deletions
diff --git a/drivers/input/evdev.c b/drivers/input/evdev.c
index 0cab1446941b..f8c305afaae8 100644
--- a/drivers/input/evdev.c
+++ b/drivers/input/evdev.c
@@ -34,7 +34,6 @@ struct evdev {
struct input_handle handle;
wait_queue_head_t wait;
struct evdev_client __rcu *grab;
- struct list_head client_list;
struct mutex mutex;
struct device dev;
struct cdev cdev;
@@ -48,7 +47,6 @@ struct evdev_client {
spinlock_t buffer_lock; /* protects access to buffer, head and tail */
struct fasync_struct *fasync;
struct evdev *evdev;
- struct list_head node;
int clkid;
unsigned int bufsize;
struct input_event buffer[];
@@ -195,6 +193,7 @@ static void evdev_events(struct input_handle *handle,
struct evdev *evdev = handle->private;
struct evdev_client *client;
ktime_t time_mono, time_real;
+ unsigned long flags;
time_mono = ktime_get();
time_real = ktime_mono_to_real(time_mono);
@@ -203,12 +202,17 @@ static void evdev_events(struct input_handle *handle,
client = rcu_dereference(evdev->grab);
- if (client)
+ if (client) {
evdev_pass_values(client, vals, count, time_mono, time_real);
- else
- list_for_each_entry_rcu(client, &evdev->client_list, node)
+ } else {
+ struct revokable_iter iter = REVOKABLE_ITER_INIT;
+
+ spin_lock_irqsave(&evdev->revoke.lock, flags);
+ for_each_revokable_private(client, &iter, &evdev->revoke)
evdev_pass_values(client, vals, count,
time_mono, time_real);
+ spin_unlock_irqrestore(&evdev->revoke.lock, flags);
+ }
rcu_read_unlock();
}
@@ -280,7 +284,6 @@ static int evdev_release(struct inode *inode, struct file *file)
mutex_lock(&evdev->mutex);
evdev_ungrab(evdev, client);
- list_del_rcu(&client->node);
if (!--evdev->open)
input_close_device(&evdev->handle);
mutex_unlock(&evdev->mutex);
@@ -327,13 +330,11 @@ static int evdev_open(struct inode *inode, struct file *file)
if (error)
goto err_free;
- list_add_tail_rcu(&client->node, &evdev->client_list);
-
if (!evdev->open++) {
error = input_open_device(&evdev->handle);
if (error) {
evdev->open--;
- goto err_unlink;
+ goto err_unlock;
}
}
@@ -350,10 +351,8 @@ static int evdev_open(struct inode *inode, struct file *file)
err_close:
if (!--evdev->open)
input_close_device(&evdev->handle);
-err_unlink:
- list_del_rcu(&client->node);
+err_unlock:
mutex_unlock(&evdev->mutex);
- synchronize_rcu();
err_free:
kfree(client);
return error;
@@ -981,6 +980,7 @@ static void evdev_free(struct device *dev)
static void evdev_cleanup(struct evdev *evdev)
{
+ struct revokable_iter iter = REVOKABLE_ITER_INIT;
struct evdev_client *client;
/*
@@ -992,10 +992,10 @@ static void evdev_cleanup(struct evdev *evdev)
cdev_del(&evdev->cdev);
revoke_device(&evdev->revoke);
- rcu_read_lock();
- list_for_each_entry_rcu(client, &evdev->client_list, node)
+ spin_lock_irq(&evdev->revoke.lock);
+ for_each_revokable_private(client, &iter, &evdev->revoke)
kill_fasync(&client->fasync, SIGIO, POLL_HUP);
- rcu_read_unlock();
+ spin_unlock_irq(&evdev->revoke.lock);
wake_up_interruptible(&evdev->wait);
@@ -1027,7 +1027,6 @@ static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
goto err_free_minor;
}
- INIT_LIST_HEAD(&evdev->client_list);
mutex_init(&evdev->mutex);
init_waitqueue_head(&evdev->wait);
init_revokable_device(&evdev->revoke);