Skip to content
Permalink
Browse files
staging: r8188eu: Remove _enter/_exit_critical_mutex()
Remove _enter_critical_mutex() and _exit_critical_mutex(). They are
unnecessary wrappers, respectively to mutex_lock_interruptible() and
to mutex_unlock(). They also have an odd interface that takes an
unused argument named pirqL of type unsigned long.
Replace them with the in-kernel API. Ignore return values as it was
in the old code.

Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com>
  • Loading branch information
xp4ns3 authored and intel-lab-lkp committed Aug 19, 2021
1 parent 093991a commit be2317351161f572a68f71544046d8491856818f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 19 deletions.
@@ -4359,7 +4359,8 @@ s32 dump_mgntframe_and_wait_ack(struct adapter *padapter, struct xmit_frame *pmg
if (padapter->bSurpriseRemoved || padapter->bDriverStopped)
return -1;

_enter_critical_mutex(&pxmitpriv->ack_tx_mutex, NULL);
if (mutex_lock_interruptible(&pxmitpriv->ack_tx_mutex))
; /*ignore return value */
pxmitpriv->ack_tx = true;

pmgntframe->ack_report = 1;
@@ -4368,7 +4369,7 @@ s32 dump_mgntframe_and_wait_ack(struct adapter *padapter, struct xmit_frame *pmg
}

pxmitpriv->ack_tx = false;
_exit_critical_mutex(&pxmitpriv->ack_tx_mutex, NULL);
mutex_unlock(&pxmitpriv->ack_tx_mutex);

return ret;
}
@@ -32,7 +32,8 @@ static int usbctrl_vendorreq(struct intf_hdl *pintfhdl, u16 value, void *pdata,
goto exit;
}

_enter_critical_mutex(&dvobjpriv->usb_vendor_req_mutex, NULL);
if (mutex_lock_interruptible(&dvobjpriv->usb_vendor_req_mutex))
; /* ignore return value */

/* Acquire IO memory for vendorreq */
pIo_buf = dvobjpriv->usb_vendor_req_buf;
@@ -96,7 +97,7 @@ static int usbctrl_vendorreq(struct intf_hdl *pintfhdl, u16 value, void *pdata,
break;
}
release_mutex:
_exit_critical_mutex(&dvobjpriv->usb_vendor_req_mutex, NULL);
mutex_unlock(&dvobjpriv->usb_vendor_req_mutex);
exit:
return status;
}
@@ -56,19 +56,6 @@ static inline struct list_head *get_list_head(struct __queue *queue)
return (&(queue->queue));
}

static inline int _enter_critical_mutex(struct mutex *pmutex, unsigned long *pirqL)
{
int ret;

ret = mutex_lock_interruptible(pmutex);
return ret;
}

static inline void _exit_critical_mutex(struct mutex *pmutex, unsigned long *pirqL)
{
mutex_unlock(pmutex);
}

static inline void rtw_list_delete(struct list_head *plist)
{
list_del_init(plist);
@@ -1065,9 +1065,10 @@ int netdev_open(struct net_device *pnetdev)
int ret;
struct adapter *padapter = (struct adapter *)rtw_netdev_priv(pnetdev);

_enter_critical_mutex(padapter->hw_init_mutex, NULL);
if (mutex_lock_interruptible(padapter->hw_init_mutex))
; /* ignore return value */
ret = _netdev_open(pnetdev);
_exit_critical_mutex(padapter->hw_init_mutex, NULL);
mutex_unlock(padapter->hw_init_mutex);
return ret;
}

0 comments on commit be23173

Please sign in to comment.