staging: vt6656: return from workqueues on fMP_DISCONNECTED
authorMalcolm Priestley <tvboxspy@gmail.com>
Mon, 14 Oct 2013 18:51:45 +0000 (19:51 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 Oct 2013 16:42:12 +0000 (09:42 -0700)
Return from work queues on flag fMP_DISCONNECTED to prevent
any scheduling threads past closing of device.

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/bssdb.c
drivers/staging/vt6656/dpc.c
drivers/staging/vt6656/wcmd.c

index ae0438a..e120eb2 100644 (file)
@@ -824,6 +824,9 @@ void BSSvSecondCallBack(struct work_struct *work)
        u32 uNonShortSlotSTACnt = 0;
        u32 uLongPreambleSTACnt = 0;
 
+       if (pDevice->Flags & fMP_DISCONNECTED)
+               return;
+
     spin_lock_irq(&pDevice->lock);
 
     pDevice->uAssocCount = 0;
index 82d7c1d..75dc92d 100644 (file)
@@ -1339,6 +1339,9 @@ void RXvWorkItem(struct work_struct *work)
        int ntStatus;
        struct vnt_rcb *pRCB = NULL;
 
+       if (pDevice->Flags & fMP_DISCONNECTED)
+               return;
+
     DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->Rx Polling Thread\n");
     spin_lock_irq(&pDevice->lock);
 
@@ -1398,6 +1401,9 @@ void RXvMngWorkItem(struct work_struct *work)
        struct vnt_rx_mgmt *pRxPacket;
        int bReAllocSkb = false;
 
+       if (pDevice->Flags & fMP_DISCONNECTED)
+               return;
+
     DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->Rx Mng Thread\n");
 
     spin_lock_irq(&pDevice->lock);
index debb87a..95d2960 100644 (file)
@@ -286,6 +286,9 @@ void vRunCommand(struct work_struct *work)
        u8 byMask[8] = {1, 2, 4, 8, 0x10, 0x20, 0x40, 0x80};
        u8 byData;
 
+       if (pDevice->Flags & fMP_DISCONNECTED)
+               return;
+
     if (pDevice->dwDiagRefCount != 0)
         return;
     if (pDevice->bCmdRunning != true)