mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 09:09:55 -04:00
staging: rtl8723bs: Replace function thread_enter
Replace function thread_enter with its only called function allow_signal to increase readability. Remove resulting unused local variable thread_name as well. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/6946fae41575fffff1d4718cb3a96cd53f655416.1730619982.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
cb1d0f5788
commit
8209ab0f9b
@@ -382,7 +382,7 @@ int rtw_cmd_thread(void *context)
|
||||
struct cmd_priv *pcmdpriv = &padapter->cmdpriv;
|
||||
struct drvextra_cmd_parm *extra_parm = NULL;
|
||||
|
||||
thread_enter("RTW_CMD_THREAD");
|
||||
allow_signal(SIGTERM);
|
||||
|
||||
pcmdbuf = pcmdpriv->cmd_buf;
|
||||
|
||||
|
||||
@@ -2489,7 +2489,7 @@ int rtw_xmit_thread(void *context)
|
||||
err = _SUCCESS;
|
||||
padapter = context;
|
||||
|
||||
thread_enter("RTW_XMIT_THREAD");
|
||||
allow_signal(SIGTERM);
|
||||
|
||||
do {
|
||||
err = rtw_hal_xmit_thread_handler(padapter);
|
||||
|
||||
@@ -411,14 +411,12 @@ int rtl8723bs_xmit_thread(void *context)
|
||||
s32 ret;
|
||||
struct adapter *padapter;
|
||||
struct xmit_priv *pxmitpriv;
|
||||
u8 thread_name[20];
|
||||
|
||||
ret = _SUCCESS;
|
||||
padapter = context;
|
||||
pxmitpriv = &padapter->xmitpriv;
|
||||
|
||||
rtw_sprintf(thread_name, 20, "RTWHALXT-%s", ADPT_ARG(padapter));
|
||||
thread_enter(thread_name);
|
||||
allow_signal(SIGTERM);
|
||||
|
||||
do {
|
||||
ret = rtl8723bs_xmit_handler(padapter);
|
||||
|
||||
@@ -73,11 +73,6 @@ int _rtw_netif_rx(struct net_device *ndev, struct sk_buff *skb);
|
||||
|
||||
extern void _rtw_init_queue(struct __queue *pqueue);
|
||||
|
||||
static inline void thread_enter(char *name)
|
||||
{
|
||||
allow_signal(SIGTERM);
|
||||
}
|
||||
|
||||
static inline void flush_signals_thread(void)
|
||||
{
|
||||
if (signal_pending(current))
|
||||
|
||||
Reference in New Issue
Block a user