]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
HID: wacom: use one work queue per task
authorBenjamin Tissoires <benjamin.tissoires@redhat.com>
Wed, 13 Jul 2016 16:05:52 +0000 (18:05 +0200)
committerJiri Kosina <jkosina@suse.cz>
Fri, 5 Aug 2016 11:39:13 +0000 (13:39 +0200)
Looks like the battery hijacked the wireless worker. That's not fair so
use a work queue per task.

Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Acked-by: Ping Cheng <pingc@wacom.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/wacom.h
drivers/hid/wacom_sys.c
drivers/hid/wacom_wac.c

index 4681a65a4579cf1b9fbcae830f583e4e9c3d4d73..a968fbbbae77a61c2ad888bbb83d9459d7e89195 100644 (file)
 #define USB_VENDOR_ID_WACOM    0x056a
 #define USB_VENDOR_ID_LENOVO   0x17ef
 
+enum wacom_worker {
+       WACOM_WORKER_WIRELESS,
+       WACOM_WORKER_BATTERY,
+};
+
 struct wacom {
        struct usb_device *usbdev;
        struct usb_interface *intf;
        struct wacom_wac wacom_wac;
        struct hid_device *hdev;
        struct mutex lock;
-       struct work_struct work;
+       struct work_struct wireless_work;
+       struct work_struct battery_work;
        struct wacom_led {
                u8 select[5]; /* status led selector (0..3) */
                u8 llv;       /* status led brightness no button (1..127) */
@@ -127,10 +133,19 @@ struct wacom {
        struct attribute_group remote_group[5];
 };
 
-static inline void wacom_schedule_work(struct wacom_wac *wacom_wac)
+static inline void wacom_schedule_work(struct wacom_wac *wacom_wac,
+                                      enum wacom_worker which)
 {
        struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
-       schedule_work(&wacom->work);
+
+       switch (which) {
+       case WACOM_WORKER_WIRELESS:
+               schedule_work(&wacom->wireless_work);
+               break;
+       case WACOM_WORKER_BATTERY:
+               schedule_work(&wacom->battery_work);
+               break;
+       }
 }
 
 extern const struct hid_device_id wacom_ids[];
index af2801df14edc9c66f384f1729ff66d16d07bc62..54f0260498127341fb22d7596f4934a910fb22a3 100644 (file)
@@ -1527,7 +1527,7 @@ static void wacom_calculate_res(struct wacom_features *features)
 
 void wacom_battery_work(struct work_struct *work)
 {
-       struct wacom *wacom = container_of(work, struct wacom, work);
+       struct wacom *wacom = container_of(work, struct wacom, battery_work);
 
        if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
             !wacom->battery) {
@@ -1743,7 +1743,7 @@ fail_allocate_inputs:
 
 static void wacom_wireless_work(struct work_struct *work)
 {
-       struct wacom *wacom = container_of(work, struct wacom, work);
+       struct wacom *wacom = container_of(work, struct wacom, wireless_work);
        struct usb_device *usbdev = wacom->usbdev;
        struct wacom_wac *wacom_wac = &wacom->wacom_wac;
        struct hid_device *hdev1, *hdev2;
@@ -1871,7 +1871,8 @@ static int wacom_probe(struct hid_device *hdev,
        wacom->usbdev = dev;
        wacom->intf = intf;
        mutex_init(&wacom->lock);
-       INIT_WORK(&wacom->work, wacom_wireless_work);
+       INIT_WORK(&wacom->wireless_work, wacom_wireless_work);
+       INIT_WORK(&wacom->battery_work, wacom_battery_work);
 
        /* ask for the report descriptor to be loaded by HID */
        error = hid_parse(hdev);
@@ -1912,7 +1913,8 @@ static void wacom_remove(struct hid_device *hdev)
 
        hid_hw_stop(hdev);
 
-       cancel_work_sync(&wacom->work);
+       cancel_work_sync(&wacom->wireless_work);
+       cancel_work_sync(&wacom->battery_work);
        kobject_put(wacom->remote_dir);
        wacom_destroy_leds(wacom);
        wacom_clean_inputs(wacom);
index d6746caf71cbb3b0229de40a06b4597036ec147d..c7707b29eeec3fe76d932a4889b65bbe9736480e 100644 (file)
@@ -814,8 +814,7 @@ static int wacom_remote_irq(struct wacom_wac *wacom_wac, size_t len)
        if (!wacom->battery &&
            !(features->quirks & WACOM_QUIRK_BATTERY)) {
                features->quirks |= WACOM_QUIRK_BATTERY;
-               INIT_WORK(&wacom->work, wacom_battery_work);
-               wacom_schedule_work(wacom_wac);
+               wacom_schedule_work(wacom_wac, WACOM_WORKER_BATTERY);
        }
 
        wacom_notify_battery(wacom_wac, bat_percent, bat_charging, 1,
@@ -2150,7 +2149,7 @@ static int wacom_wireless_irq(struct wacom_wac *wacom, size_t len)
                charging = !!(data[5] & 0x80);
                if (wacom->pid != pid) {
                        wacom->pid = pid;
-                       wacom_schedule_work(wacom);
+                       wacom_schedule_work(wacom, WACOM_WORKER_WIRELESS);
                }
 
                if (w->battery)
@@ -2159,7 +2158,7 @@ static int wacom_wireless_irq(struct wacom_wac *wacom, size_t len)
        } else if (wacom->pid != 0) {
                /* disconnected while previously connected */
                wacom->pid = 0;
-               wacom_schedule_work(wacom);
+               wacom_schedule_work(wacom, WACOM_WORKER_WIRELESS);
                wacom_notify_battery(wacom, 0, 0, 0, 0);
        }
 
@@ -2194,15 +2193,13 @@ static int wacom_status_irq(struct wacom_wac *wacom_wac, size_t len)
                if (!wacom->battery &&
                    !(features->quirks & WACOM_QUIRK_BATTERY)) {
                        features->quirks |= WACOM_QUIRK_BATTERY;
-                       INIT_WORK(&wacom->work, wacom_battery_work);
-                       wacom_schedule_work(wacom_wac);
+                       wacom_schedule_work(wacom_wac, WACOM_WORKER_BATTERY);
                }
        }
        else if ((features->quirks & WACOM_QUIRK_BATTERY) &&
                 wacom->battery) {
                features->quirks &= ~WACOM_QUIRK_BATTERY;
-               INIT_WORK(&wacom->work, wacom_battery_work);
-               wacom_schedule_work(wacom_wac);
+               wacom_schedule_work(wacom_wac, WACOM_WORKER_BATTERY);
                wacom_notify_battery(wacom_wac, 0, 0, 0, 0);
        }
        return 0;