mei: amthif: allow only one request at a time
authorAlexander Usyskin <alexander.usyskin@intel.com>
Sun, 7 Feb 2016 21:35:25 +0000 (23:35 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 7 Feb 2016 22:47:20 +0000 (14:47 -0800)
A next amthif write can be executed only after the previous one has
completed.

Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/mei/amthif.c

index 647edc6..4383a9a 100644 (file)
@@ -315,6 +315,14 @@ int mei_amthif_write(struct mei_cl *cl, struct mei_cl_cb *cb)
        dev = cl->dev;
 
        list_add_tail(&cb->list, &dev->amthif_cmd_list.list);
+
+       /*
+        * The previous request is still in processing, queue this one.
+        */
+       if (dev->iamthif_state > MEI_IAMTHIF_IDLE &&
+           dev->iamthif_state < MEI_IAMTHIF_READ_COMPLETE)
+               return 0;
+
        return mei_amthif_run_next_cmd(dev);
 }