* [PATCH 1/3] drivers:rtl8187se:remove the use of obsolete create_workqueue in ieee80211_softmac.c
@ 2011-06-19 10:11 Wanlong Gao
2011-06-19 10:11 ` [PATCH 2/3] drivers:rtl8192u:remove the use of obsolete create_workqueue in r8192U_core.c Wanlong Gao
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Wanlong Gao @ 2011-06-19 10:11 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Lucas De Marchi, Stefan Weil, Xiaochen Wang, Ilia Mirkin,
Dan Carpenter, David Chosrova, Uwe Kleine-König,
Ben Hutchings, devel, linux-kernel, Wanlong Gao
Remove the use of obsolete create_workqueue(name, 0) in
ieee80211_softmac.c, since the create_workqueue interface has changed.
Signed-off-by: Wanlong Gao <wanlong.gao@gmail.com>
---
.../rtl8187se/ieee80211/ieee80211_softmac.c | 5 +----
1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c b/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c
index 736a140..8925989 100644
--- a/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c
+++ b/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c
@@ -2568,11 +2568,8 @@ void ieee80211_softmac_init(struct ieee80211_device *ieee)
ieee->beacon_timer.data = (unsigned long) ieee;
ieee->beacon_timer.function = ieee80211_send_beacon_cb;
-#ifdef PF_SYNCTHREAD
- ieee->wq = create_workqueue(DRV_NAME,0);
-#else
ieee->wq = create_workqueue(DRV_NAME);
-#endif
+
INIT_DELAYED_WORK(&ieee->start_ibss_wq,(void*) ieee80211_start_ibss_wq);
INIT_WORK(&ieee->associate_complete_wq,(void*) ieee80211_associate_complete_wq);
INIT_WORK(&ieee->associate_procedure_wq,(void*) ieee80211_associate_procedure_wq);
--
1.7.4.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/3] drivers:rtl8192u:remove the use of obsolete create_workqueue in r8192U_core.c
2011-06-19 10:11 [PATCH 1/3] drivers:rtl8187se:remove the use of obsolete create_workqueue in ieee80211_softmac.c Wanlong Gao
@ 2011-06-19 10:11 ` Wanlong Gao
2011-06-19 10:11 ` [PATCH 3/3] drivers:rtl8192u:remove the use of obsolete create_workqueue in ieee80211_softmac.c Wanlong Gao
2011-06-22 8:40 ` [PATCH 1/3] drivers:rtl8187se:remove " Wanlong Gao
2 siblings, 0 replies; 5+ messages in thread
From: Wanlong Gao @ 2011-06-19 10:11 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Lucas De Marchi, Stefan Weil, Xiaochen Wang, Ilia Mirkin,
Dan Carpenter, David Chosrova, Uwe Kleine-König,
Ben Hutchings, devel, linux-kernel, Wanlong Gao
Remove the use of obsolete create_workqueue(name, 0) interface
in r8192U_core.c, since it has changed.
Signed-off-by: Wanlong Gao <wanlong.gao@gmail.com>
---
drivers/staging/rtl8192u/r8192U_core.c | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c
index e81b8ab..334e078d 100644
--- a/drivers/staging/rtl8192u/r8192U_core.c
+++ b/drivers/staging/rtl8192u/r8192U_core.c
@@ -2852,11 +2852,7 @@ static void rtl8192_init_priv_task(struct net_device* dev)
{
struct r8192_priv *priv = ieee80211_priv(dev);
-#ifdef PF_SYNCTHREAD
- priv->priv_wq = create_workqueue(DRV_NAME,0);
-#else
priv->priv_wq = create_workqueue(DRV_NAME);
-#endif
INIT_WORK(&priv->reset_wq, rtl8192_restart);
--
1.7.4.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/3] drivers:rtl8192u:remove the use of obsolete create_workqueue in ieee80211_softmac.c
2011-06-19 10:11 [PATCH 1/3] drivers:rtl8187se:remove the use of obsolete create_workqueue in ieee80211_softmac.c Wanlong Gao
2011-06-19 10:11 ` [PATCH 2/3] drivers:rtl8192u:remove the use of obsolete create_workqueue in r8192U_core.c Wanlong Gao
@ 2011-06-19 10:11 ` Wanlong Gao
2011-06-22 8:40 ` [PATCH 1/3] drivers:rtl8187se:remove " Wanlong Gao
2 siblings, 0 replies; 5+ messages in thread
From: Wanlong Gao @ 2011-06-19 10:11 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Lucas De Marchi, Stefan Weil, Xiaochen Wang, Ilia Mirkin,
Dan Carpenter, David Chosrova, Uwe Kleine-König,
Ben Hutchings, devel, linux-kernel, Wanlong Gao
Remove the use of obsolete create_workqueue(name, 0) interface
in ieee80211_softmac.c, since it has changed.
Signed-off-by: Wanlong Gao <wanlong.gao@gmail.com>
---
.../staging/rtl8192u/ieee80211/ieee80211_softmac.c | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c b/drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c
index 4ec0a65..d65e5b2 100644
--- a/drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c
+++ b/drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c
@@ -2726,11 +2726,7 @@ void ieee80211_softmac_init(struct ieee80211_device *ieee)
ieee->beacon_timer.data = (unsigned long) ieee;
ieee->beacon_timer.function = ieee80211_send_beacon_cb;
-#ifdef PF_SYNCTHREAD
- ieee->wq = create_workqueue(DRV_NAME,0);
-#else
ieee->wq = create_workqueue(DRV_NAME);
-#endif
INIT_DELAYED_WORK(&ieee->start_ibss_wq,ieee80211_start_ibss_wq);
INIT_WORK(&ieee->associate_complete_wq, ieee80211_associate_complete_wq);
--
1.7.4.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/3] drivers:rtl8187se:remove the use of obsolete create_workqueue in ieee80211_softmac.c
2011-06-19 10:11 [PATCH 1/3] drivers:rtl8187se:remove the use of obsolete create_workqueue in ieee80211_softmac.c Wanlong Gao
2011-06-19 10:11 ` [PATCH 2/3] drivers:rtl8192u:remove the use of obsolete create_workqueue in r8192U_core.c Wanlong Gao
2011-06-19 10:11 ` [PATCH 3/3] drivers:rtl8192u:remove the use of obsolete create_workqueue in ieee80211_softmac.c Wanlong Gao
@ 2011-06-22 8:40 ` Wanlong Gao
2011-06-22 11:11 ` Dan Carpenter
2 siblings, 1 reply; 5+ messages in thread
From: Wanlong Gao @ 2011-06-22 8:40 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Lucas De Marchi, Stefan Weil, Xiaochen Wang, Ilia Mirkin,
Dan Carpenter, David Chosrova, Uwe Kleine-König,
Ben Hutchings, devel, linux-kernel
On 日, 2011-06-19 at 18:11 +0800, Wanlong Gao wrote:
> Remove the use of obsolete create_workqueue(name, 0) in
> ieee80211_softmac.c, since the create_workqueue interface has changed.
>
> Signed-off-by: Wanlong Gao <wanlong.gao@gmail.com>
> ---
> .../rtl8187se/ieee80211/ieee80211_softmac.c | 5 +----
> 1 files changed, 1 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c b/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c
> index 736a140..8925989 100644
> --- a/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c
> +++ b/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c
> @@ -2568,11 +2568,8 @@ void ieee80211_softmac_init(struct ieee80211_device *ieee)
> ieee->beacon_timer.data = (unsigned long) ieee;
> ieee->beacon_timer.function = ieee80211_send_beacon_cb;
>
> -#ifdef PF_SYNCTHREAD
> - ieee->wq = create_workqueue(DRV_NAME,0);
> -#else
> ieee->wq = create_workqueue(DRV_NAME);
> -#endif
> +
> INIT_DELAYED_WORK(&ieee->start_ibss_wq,(void*) ieee80211_start_ibss_wq);
> INIT_WORK(&ieee->associate_complete_wq,(void*) ieee80211_associate_complete_wq);
> INIT_WORK(&ieee->associate_procedure_wq,(void*) ieee80211_associate_procedure_wq);
Any comments?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/3] drivers:rtl8187se:remove the use of obsolete create_workqueue in ieee80211_softmac.c
2011-06-22 8:40 ` [PATCH 1/3] drivers:rtl8187se:remove " Wanlong Gao
@ 2011-06-22 11:11 ` Dan Carpenter
0 siblings, 0 replies; 5+ messages in thread
From: Dan Carpenter @ 2011-06-22 11:11 UTC (permalink / raw)
To: Wanlong Gao
Cc: Greg Kroah-Hartman, Lucas De Marchi, Stefan Weil, Xiaochen Wang,
Ilia Mirkin, David Chosrova, Uwe Kleine-König, Ben Hutchings,
devel, linux-kernel
On Wed, Jun 22, 2011 at 04:40:01PM +0800, Wanlong Gao wrote:
> On 日, 2011-06-19 at 18:11 +0800, Wanlong Gao wrote:
> Any comments?
It takes a while to get to patches. If it's been two weeks and you
haven't heard anything, then ask again. Otherwise just assume that
they're going to be applied.
regards,
dan carpenter
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-06-22 11:12 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-19 10:11 [PATCH 1/3] drivers:rtl8187se:remove the use of obsolete create_workqueue in ieee80211_softmac.c Wanlong Gao
2011-06-19 10:11 ` [PATCH 2/3] drivers:rtl8192u:remove the use of obsolete create_workqueue in r8192U_core.c Wanlong Gao
2011-06-19 10:11 ` [PATCH 3/3] drivers:rtl8192u:remove the use of obsolete create_workqueue in ieee80211_softmac.c Wanlong Gao
2011-06-22 8:40 ` [PATCH 1/3] drivers:rtl8187se:remove " Wanlong Gao
2011-06-22 11:11 ` Dan Carpenter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox