]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mtip32xx: Unmap the DMA segments before completing the IO request
authorFelipe Franciosi <felipe@paradoxo.org>
Thu, 13 Mar 2014 14:34:21 +0000 (14:34 +0000)
committerJens Axboe <axboe@fb.com>
Thu, 13 Mar 2014 20:56:39 +0000 (14:56 -0600)
If the buffers are unmapped after completing a request, then stale data
might be in the request.

Signed-off-by: Felipe Franciosi <felipe@paradoxo.org>
Cc: stable@kernel.org
Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/block/mtip32xx/mtip32xx.c

index 642f8ab675d4245e42b357535ca2b7d7e1427340..b2012b76a0b682e8a6842f2db91a0abae42b37ca 100644 (file)
@@ -266,6 +266,12 @@ static void mtip_async_complete(struct mtip_port *port,
                        "Command tag %d failed due to TFE\n", tag);
        }
 
+       /* Unmap the DMA scatter list entries */
+       dma_unmap_sg(&dd->pdev->dev,
+               command->sg,
+               command->scatter_ents,
+               command->direction);
+
        /* Upper layer callback */
        if (likely(command->async_callback))
                command->async_callback(command->async_data, cb_status);
@@ -273,12 +279,6 @@ static void mtip_async_complete(struct mtip_port *port,
        command->async_callback = NULL;
        command->comp_func = NULL;
 
-       /* Unmap the DMA scatter list entries */
-       dma_unmap_sg(&dd->pdev->dev,
-               command->sg,
-               command->scatter_ents,
-               command->direction);
-
        /* Clear the allocated and active bits for the command */
        atomic_set(&port->commands[tag].active, 0);
        release_slot(port, tag);
@@ -709,6 +709,12 @@ static void mtip_timeout_function(unsigned long int data)
                         */
                        writel(1 << bit, port->completed[group]);
 
+                       /* Unmap the DMA scatter list entries */
+                       dma_unmap_sg(&port->dd->pdev->dev,
+                                       command->sg,
+                                       command->scatter_ents,
+                                       command->direction);
+
                        /* Call the async completion callback. */
                        if (likely(command->async_callback))
                                command->async_callback(command->async_data,
@@ -716,12 +722,6 @@ static void mtip_timeout_function(unsigned long int data)
                        command->async_callback = NULL;
                        command->comp_func = NULL;
 
-                       /* Unmap the DMA scatter list entries */
-                       dma_unmap_sg(&port->dd->pdev->dev,
-                                       command->sg,
-                                       command->scatter_ents,
-                                       command->direction);
-
                        /*
                         * Clear the allocated bit and active tag for the
                         * command.