summaryrefslogtreecommitdiffstats
path: root/target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch
blob: 4b9a4d35aca0d926f2b3ce32b8c1a5aed69194ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
 drivers/input/evdev.c |   10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

Index: linux-3.1/drivers/input/evdev.c
===================================================================
--- linux-3.1.orig/drivers/input/evdev.c	2011-10-30 00:48:28.025057860 +0200
+++ linux-3.1/drivers/input/evdev.c	2011-10-30 00:48:55.309039009 +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);