ANDROID: input: keychord: log when keychord triggered
authorJP Abgrall <jpa@google.com>
Tue, 5 Mar 2013 22:25:36 +0000 (14:25 -0800)
committerAmit Pundir <amit.pundir@linaro.org>
Mon, 18 Dec 2017 15:41:22 +0000 (21:11 +0530)
log keychord id at info level just before waking up processes.

Signed-off-by: JP Abgrall <jpa@google.com>
[AmitP: Rename task_list in wait_queue_head{} to align with upstream commit
        2055da97389a ("sched/wait: Disambiguate wq_entry->task_list and wq_head->task_list naming")]
Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
drivers/input/misc/keychord.c

index 3ffab6da411b54ec7d7a7012fd051df803b8e8d2..9e568b0a09013699faf2c26531dc1c8a76913ece 100644 (file)
@@ -126,8 +126,12 @@ static void keychord_event(struct input_handle *handle, unsigned int type,
 done:
        spin_unlock_irqrestore(&kdev->lock, flags);
 
-       if (got_chord)
+       if (got_chord) {
+               pr_info("keychord: got keychord id %d. Any tasks: %d\n",
+                       keychord->id,
+                       !list_empty_careful(&kdev->waitq.head));
                wake_up_interruptible(&kdev->waitq);
+       }
 }
 
 static int keychord_connect(struct input_handler *handler,