mei: bus: deinitialize callback functions on init failure
authorAlexander Usyskin <alexander.usyskin@intel.com>
Thu, 29 Oct 2020 09:54:44 +0000 (11:54 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Nov 2020 09:13:00 +0000 (10:13 +0100)
If the initialization procedure for receive or receive callback
registration on the client bus has failed the caller can't re-run it.
Deinitilize the callback pointers and cancel the work
to allow the caller to retry.

Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Link: https://lore.kernel.org/r/20201029095444.957924-4-tomas.winkler@intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/mei/bus.c

index 1a54bf3..76aa0e9 100644 (file)
@@ -370,8 +370,11 @@ int mei_cldev_register_rx_cb(struct mei_cl_device *cldev, mei_cldev_cb_t rx_cb)
        else
                ret = -ENODEV;
        mutex_unlock(&bus->device_lock);
-       if (ret && ret != -EBUSY)
+       if (ret && ret != -EBUSY) {
+               cancel_work_sync(&cldev->rx_work);
+               cldev->rx_cb = NULL;
                return ret;
+       }
 
        return 0;
 }
@@ -405,8 +408,11 @@ int mei_cldev_register_notif_cb(struct mei_cl_device *cldev,
        mutex_lock(&bus->device_lock);
        ret = mei_cl_notify_request(cldev->cl, NULL, 1);
        mutex_unlock(&bus->device_lock);
-       if (ret)
+       if (ret) {
+               cancel_work_sync(&cldev->notif_work);
+               cldev->notif_cb = NULL;
                return ret;
+       }
 
        return 0;
 }