netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 4/10]: rtl8187: Remove pointless check in rtl8187_rx_cb().
@ 2009-05-29  8:40 David Miller
       [not found] ` <20090529.014011.244789664.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: David Miller @ 2009-05-29  8:40 UTC (permalink / raw)
  To: netdev; +Cc: linux-wireless


First of all, it exposes the SKB list implementation.

Second of all it's not needed.  If we get called here, we
successfully enqueued the URB with the linked SKB and
such a completion only gets called one time on such an
SKB.

Signed-off-by: David S. Miller <davem@davemloft.net>
---
 drivers/net/wireless/rtl818x/rtl8187_dev.c |    7 +------
 1 files changed, 1 insertions(+), 6 deletions(-)

diff --git a/drivers/net/wireless/rtl818x/rtl8187_dev.c b/drivers/net/wireless/rtl818x/rtl8187_dev.c
index 6499ccc..3f22cc0 100644
--- a/drivers/net/wireless/rtl818x/rtl8187_dev.c
+++ b/drivers/net/wireless/rtl818x/rtl8187_dev.c
@@ -321,12 +321,7 @@ static void rtl8187_rx_cb(struct urb *urb)
 	unsigned long f;
 
 	spin_lock_irqsave(&priv->rx_queue.lock, f);
-	if (skb->next)
-		__skb_unlink(skb, &priv->rx_queue);
-	else {
-		spin_unlock_irqrestore(&priv->rx_queue.lock, f);
-		return;
-	}
+	__skb_unlink(skb, &priv->rx_queue);
 	spin_unlock_irqrestore(&priv->rx_queue.lock, f);
 	skb_put(skb, urb->actual_length);
 
-- 
1.6.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 4/10]: rtl8187: Remove pointless check in rtl8187_rx_cb().
       [not found] ` <20090529.014011.244789664.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
@ 2009-05-29 10:18   ` John W. Linville
       [not found]     ` <20090529101834.GC3506-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: John W. Linville @ 2009-05-29 10:18 UTC (permalink / raw)
  To: David Miller
  Cc: netdev-u79uwXL29TY76Z2rM5mHXA,
	linux-wireless-u79uwXL29TY76Z2rM5mHXA

On Fri, May 29, 2009 at 01:40:11AM -0700, David Miller wrote:
> 
> First of all, it exposes the SKB list implementation.
> 
> Second of all it's not needed.  If we get called here, we
> successfully enqueued the URB with the linked SKB and
> such a completion only gets called one time on such an
> SKB.
> 
> Signed-off-by: David S. Miller <davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>

ACK

-- 
John W. Linville		Someday the world will need a hero, and you
linville-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org			might be all we have.  Be ready.
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 4/10]: rtl8187: Remove pointless check in rtl8187_rx_cb().
       [not found]     ` <20090529101834.GC3506-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org>
@ 2009-05-29 15:41       ` Hin-Tak Leung
  2009-05-29 21:59         ` David Miller
  0 siblings, 1 reply; 4+ messages in thread
From: Hin-Tak Leung @ 2009-05-29 15:41 UTC (permalink / raw)
  To: John W. Linville
  Cc: David Miller, netdev-u79uwXL29TY76Z2rM5mHXA,
	linux-wireless-u79uwXL29TY76Z2rM5mHXA

On Fri, May 29, 2009 at 11:18 AM, John W. Linville
<linville-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org> wrote:
> On Fri, May 29, 2009 at 01:40:11AM -0700, David Miller wrote:
>>
>> First of all, it exposes the SKB list implementation.
>>
>> Second of all it's not needed.  If we get called here, we
>> successfully enqueued the URB with the linked SKB and
>> such a completion only gets called one time on such an
>> SKB.
>>
>> Signed-off-by: David S. Miller <davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
>
> ACK

ACK.

I'll give this a try when I rebuild the rtl8187 module on my box.

Hin-Tak
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 4/10]: rtl8187: Remove pointless check in rtl8187_rx_cb().
  2009-05-29 15:41       ` Hin-Tak Leung
@ 2009-05-29 21:59         ` David Miller
  0 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2009-05-29 21:59 UTC (permalink / raw)
  To: hintak.leung; +Cc: linville, netdev, linux-wireless

From: Hin-Tak Leung <hintak.leung@gmail.com>
Date: Fri, 29 May 2009 16:41:20 +0100

> I'll give this a try when I rebuild the rtl8187 module on my box.

Thank you.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-05-29 21:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-29  8:40 [PATCH 4/10]: rtl8187: Remove pointless check in rtl8187_rx_cb() David Miller
     [not found] ` <20090529.014011.244789664.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2009-05-29 10:18   ` John W. Linville
     [not found]     ` <20090529101834.GC3506-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org>
2009-05-29 15:41       ` Hin-Tak Leung
2009-05-29 21:59         ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).