aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch
diff options
context:
space:
mode:
authorMichael Büsch <mb@bu3sch.de>2011-10-29 19:02:50 +0000
committerMichael Büsch <mb@bu3sch.de>2011-10-29 19:02:50 +0000
commit7d123a86e3126674642c7689927e775a93fb46f7 (patch)
tree296bcc8acc5d27f42b5fe1e50e21ba3648af9f23 /target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch
parent50a22f4f9e981c910c9559c1ee6fc0dab2b52c3d (diff)
downloadupstream-7d123a86e3126674642c7689927e775a93fb46f7.tar.gz
upstream-7d123a86e3126674642c7689927e775a93fb46f7.tar.bz2
upstream-7d123a86e3126674642c7689927e775a93fb46f7.zip
omap24xx: Add 3.1 patchset.
SVN-Revision: 28672
Diffstat (limited to 'target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch')
-rw-r--r--target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch b/target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch
new file mode 100644
index 0000000000..cf14e474cb
--- /dev/null
+++ b/target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch
@@ -0,0 +1,33 @@
+---
+ drivers/input/evdev.c | 10 +++++++---
+ 1 file changed, 7 insertions(+), 3 deletions(-)
+
+Index: linux-3.1-rc4/drivers/input/evdev.c
+===================================================================
+--- linux-3.1-rc4.orig/drivers/input/evdev.c 2011-08-29 06:16:01.000000000 +0200
++++ linux-3.1-rc4/drivers/input/evdev.c 2011-10-27 16:47:54.773182635 +0200
+@@ -92,7 +92,7 @@ static void evdev_event(struct input_han
+ unsigned int type, unsigned int code, int value)
+ {
+ struct evdev *evdev = handle->private;
+- struct evdev_client *client;
++ struct evdev_client *client, *c;
+ struct input_event event;
+
+ do_gettimeofday(&event.time);
+@@ -103,9 +103,13 @@ static void evdev_event(struct input_han
+ rcu_read_lock();
+
+ client = rcu_dereference(evdev->grab);
+- if (client)
++ if (client) {
+ evdev_pass_event(client, &event);
+- else
++ /* Also pass events to clients that did not grab the device. */
++ list_for_each_entry_rcu(c, &evdev->client_list, node)
++ if (c != client)
++ evdev_pass_event(c, &event);
++ } else
+ list_for_each_entry_rcu(client, &evdev->client_list, node)
+ evdev_pass_event(client, &event);
+