input/hog: Fix double registering report value callbacks
authorSonny Sasaka <sonnysasaka@chromium.org>
Mon, 25 Jan 2021 19:33:54 +0000 (11:33 -0800)
committerAyush Garg <ayush.garg@samsung.com>
Fri, 11 Mar 2022 13:38:34 +0000 (19:08 +0530)
In commit 23b69ab3e484 ("input/hog: Cache the HID report map"), we
optimized HOG reconnection by registering report value callbacks early,
but there was a bug where we also re-register the same report value
callbacks after at CCC write callback. We should handle this case by
avoiding the second callback register if we know we have done it
earlier.

Signed-off-by: Anuj Jain <anuj01.jain@samsung.com>
Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
profiles/input/hog-lib.c

index 1f132aa..6ac14e4 100755 (executable)
@@ -336,6 +336,9 @@ static void report_ccc_written_cb(guint8 status, const guint8 *pdu,
                return;
        }
 
+       if (report->notifyid)
+               return;
+
        report->notifyid = g_attrib_register(hog->attrib,
                                        ATT_OP_HANDLE_NOTIFY,
                                        report->value_handle,
@@ -1697,6 +1700,9 @@ bool bt_hog_attach(struct bt_hog *hog, void *gatt)
        for (l = hog->reports; l; l = l->next) {
                struct report *r = l->data;
 
+               if (r->notifyid)
+                       continue;
+
                r->notifyid = g_attrib_register(hog->attrib,
                                        ATT_OP_HANDLE_NOTIFY,
                                        r->value_handle,