* Re: [RFC][PATCH] b43: do not try sending packets when ring can be full
2011-06-12 15:11 [RFC][PATCH] b43: do not try sending packets when ring can be full Rafał Miłecki
@ 2011-06-12 14:36 ` Rafał Miłecki
2011-06-12 16:29 ` Michael Büsch
1 sibling, 0 replies; 6+ messages in thread
From: Rafał Miłecki @ 2011-06-12 14:36 UTC (permalink / raw)
To: linux-wireless, b43-dev
Cc: francesco.gringoli, Michael Büsch, Rafał Miłecki
2011/6/12 Rafał Miłecki <zajec5@gmail.com>:
> ---
> This prevents us from hitting "Packet after queue stopped", but still
> is not an optimal solution. We stop sending packets from queue to
> hardware if just a one ring is full. It may happen there are packets on
> the queue that want to be send to different ring (qos).
> ---
Does anyone have a better (real?) solution? Should we use multiple skb
queues, one for each ring?
We could do correct queuing in b43_op_tx then and b43_tx_work would
just check every ring (qos), one by one.
--
Rafał
^ permalink raw reply [flat|nested] 6+ messages in thread
* [RFC][PATCH] b43: do not try sending packets when ring can be full
@ 2011-06-12 15:11 Rafał Miłecki
2011-06-12 14:36 ` Rafał Miłecki
2011-06-12 16:29 ` Michael Büsch
0 siblings, 2 replies; 6+ messages in thread
From: Rafał Miłecki @ 2011-06-12 15:11 UTC (permalink / raw)
To: linux-wireless, b43-dev
Cc: francesco.gringoli, Michael Büsch, Rafał Miłecki
---
This prevents us from hitting "Packet after queue stopped", but still
is not an optimal solution. We stop sending packets from queue to
hardware if just a one ring is full. It may happen there are packets on
the queue that want to be send to different ring (qos).
---
drivers/net/wireless/b43/b43.h | 2 ++
drivers/net/wireless/b43/dma.c | 5 +++++
drivers/net/wireless/b43/main.c | 5 +++++
3 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/drivers/net/wireless/b43/b43.h b/drivers/net/wireless/b43/b43.h
index 1cb2dde..8d4bb28 100644
--- a/drivers/net/wireless/b43/b43.h
+++ b/drivers/net/wireless/b43/b43.h
@@ -582,6 +582,8 @@ struct b43_dma {
struct b43_dmaring *rx_ring;
u32 translation; /* Routing bits */
+
+ u8 stopped_rings; /* Amount of stopped rings */
};
struct b43_pio_txqueue;
diff --git a/drivers/net/wireless/b43/dma.c b/drivers/net/wireless/b43/dma.c
index d02cf83..a501992 100644
--- a/drivers/net/wireless/b43/dma.c
+++ b/drivers/net/wireless/b43/dma.c
@@ -1056,6 +1056,7 @@ int b43_dma_init(struct b43_wldev *dev)
if (err)
return err;
dma->translation = ssb_dma_translation(dev->sdev);
+ dma->stopped_rings = 0;
err = -ENOMEM;
/* setup TX DMA channels. */
@@ -1374,6 +1375,8 @@ int b43_dma_tx(struct b43_wldev *dev, struct sk_buff *skb)
/* This TX ring is full. */
ieee80211_stop_queue(dev->wl->hw, skb_get_queue_mapping(skb));
ring->stopped = 1;
+ dev->dma.stopped_rings++;
+
if (b43_debug(dev, B43_DBG_DMAVERBOSE)) {
b43dbg(dev->wl, "Stopped TX ring %d\n", ring->index);
}
@@ -1493,9 +1496,11 @@ void b43_dma_handle_txstatus(struct b43_wldev *dev,
B43_WARN_ON(free_slots(ring) < TX_SLOTS_PER_FRAME);
ieee80211_wake_queue(dev->wl->hw, ring->queue_prio);
ring->stopped = 0;
+ dev->dma.stopped_rings--;
if (b43_debug(dev, B43_DBG_DMAVERBOSE)) {
b43dbg(dev->wl, "Woke up TX ring %d\n", ring->index);
}
+ ieee80211_queue_work(dev->wl->hw, &dev->wl->tx_work);
}
}
diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c
index 1d8d983..2260b36 100644
--- a/drivers/net/wireless/b43/main.c
+++ b/drivers/net/wireless/b43/main.c
@@ -3219,6 +3219,11 @@ static void b43_tx_work(struct work_struct *work)
}
while (skb_queue_len(&wl->tx_queue)) {
+ if (!b43_using_pio_transfers(dev) && dev->dma.stopped_rings) {
+ mutex_unlock(&wl->mutex);
+ return;
+ }
+
skb = skb_dequeue(&wl->tx_queue);
if (b43_using_pio_transfers(dev))
--
1.7.3.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [RFC][PATCH] b43: do not try sending packets when ring can be full
2011-06-12 15:11 [RFC][PATCH] b43: do not try sending packets when ring can be full Rafał Miłecki
2011-06-12 14:36 ` Rafał Miłecki
@ 2011-06-12 16:29 ` Michael Büsch
2011-06-12 18:15 ` Rafał Miłecki
1 sibling, 1 reply; 6+ messages in thread
From: Michael Büsch @ 2011-06-12 16:29 UTC (permalink / raw)
To: Rafał Miłecki
Cc: linux-wireless, b43-dev, francesco.gringoli, Michael Büsch
On Sun, 12 Jun 2011 17:11:53 +0200
Rafał Miłecki <zajec5@gmail.com> wrote:
> ---
> This prevents us from hitting "Packet after queue stopped", but still
> is not an optimal solution. We stop sending packets from queue to
> hardware if just a one ring is full. It may happen there are packets on
> the queue that want to be send to different ring (qos).
> ---
> drivers/net/wireless/b43/b43.h | 2 ++
> drivers/net/wireless/b43/dma.c | 5 +++++
> drivers/net/wireless/b43/main.c | 5 +++++
> 3 files changed, 12 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/net/wireless/b43/b43.h b/drivers/net/wireless/b43/b43.h
> index 1cb2dde..8d4bb28 100644
> --- a/drivers/net/wireless/b43/b43.h
> +++ b/drivers/net/wireless/b43/b43.h
> @@ -582,6 +582,8 @@ struct b43_dma {
> struct b43_dmaring *rx_ring;
>
> u32 translation; /* Routing bits */
> +
> + u8 stopped_rings; /* Amount of stopped rings */
> };
>
> struct b43_pio_txqueue;
> diff --git a/drivers/net/wireless/b43/dma.c b/drivers/net/wireless/b43/dma.c
> index d02cf83..a501992 100644
> --- a/drivers/net/wireless/b43/dma.c
> +++ b/drivers/net/wireless/b43/dma.c
> @@ -1056,6 +1056,7 @@ int b43_dma_init(struct b43_wldev *dev)
> if (err)
> return err;
> dma->translation = ssb_dma_translation(dev->sdev);
> + dma->stopped_rings = 0;
>
> err = -ENOMEM;
> /* setup TX DMA channels. */
> @@ -1374,6 +1375,8 @@ int b43_dma_tx(struct b43_wldev *dev, struct sk_buff *skb)
> /* This TX ring is full. */
> ieee80211_stop_queue(dev->wl->hw, skb_get_queue_mapping(skb));
> ring->stopped = 1;
> + dev->dma.stopped_rings++;
> +
> if (b43_debug(dev, B43_DBG_DMAVERBOSE)) {
> b43dbg(dev->wl, "Stopped TX ring %d\n", ring->index);
> }
> @@ -1493,9 +1496,11 @@ void b43_dma_handle_txstatus(struct b43_wldev *dev,
> B43_WARN_ON(free_slots(ring) < TX_SLOTS_PER_FRAME);
> ieee80211_wake_queue(dev->wl->hw, ring->queue_prio);
> ring->stopped = 0;
> + dev->dma.stopped_rings--;
> if (b43_debug(dev, B43_DBG_DMAVERBOSE)) {
> b43dbg(dev->wl, "Woke up TX ring %d\n", ring->index);
> }
> + ieee80211_queue_work(dev->wl->hw, &dev->wl->tx_work);
> }
> }
>
> diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c
> index 1d8d983..2260b36 100644
> --- a/drivers/net/wireless/b43/main.c
> +++ b/drivers/net/wireless/b43/main.c
> @@ -3219,6 +3219,11 @@ static void b43_tx_work(struct work_struct *work)
> }
>
> while (skb_queue_len(&wl->tx_queue)) {
> + if (!b43_using_pio_transfers(dev) && dev->dma.stopped_rings) {
> + mutex_unlock(&wl->mutex);
> + return;
> + }
> +
> skb = skb_dequeue(&wl->tx_queue);
>
> if (b43_using_pio_transfers(dev))
This can probably serve as a quick workaround, as long as a real fix is being developed.
I'm not sure if multiple queues are needed for this to work. I think it could work
with a single queue as well. We just must not _unqueue_ it, if we are unable to transmit
it due to stopped ring. I don't know if there are skb_queue mechanisms that help
us achieve this.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC][PATCH] b43: do not try sending packets when ring can be full
2011-06-12 16:29 ` Michael Büsch
@ 2011-06-12 18:15 ` Rafał Miłecki
2011-06-12 18:48 ` Michael Büsch
0 siblings, 1 reply; 6+ messages in thread
From: Rafał Miłecki @ 2011-06-12 18:15 UTC (permalink / raw)
To: Michael Büsch
Cc: linux-wireless, b43-dev, francesco.gringoli, Michael Büsch
2011/6/12 Michael Büsch <m@bues.ch>:
> On Sun, 12 Jun 2011 17:11:53 +0200
> Rafał Miłecki <zajec5@gmail.com> wrote:
>
>> ---
>> This prevents us from hitting "Packet after queue stopped", but still
>> is not an optimal solution. We stop sending packets from queue to
>> hardware if just a one ring is full. It may happen there are packets on
>> the queue that want to be send to different ring (qos).
>> ---
>> drivers/net/wireless/b43/b43.h | 2 ++
>> drivers/net/wireless/b43/dma.c | 5 +++++
>> drivers/net/wireless/b43/main.c | 5 +++++
>> 3 files changed, 12 insertions(+), 0 deletions(-)
>>
>> diff --git a/drivers/net/wireless/b43/b43.h b/drivers/net/wireless/b43/b43.h
>> index 1cb2dde..8d4bb28 100644
>> --- a/drivers/net/wireless/b43/b43.h
>> +++ b/drivers/net/wireless/b43/b43.h
>> @@ -582,6 +582,8 @@ struct b43_dma {
>> struct b43_dmaring *rx_ring;
>>
>> u32 translation; /* Routing bits */
>> +
>> + u8 stopped_rings; /* Amount of stopped rings */
>> };
>>
>> struct b43_pio_txqueue;
>> diff --git a/drivers/net/wireless/b43/dma.c b/drivers/net/wireless/b43/dma.c
>> index d02cf83..a501992 100644
>> --- a/drivers/net/wireless/b43/dma.c
>> +++ b/drivers/net/wireless/b43/dma.c
>> @@ -1056,6 +1056,7 @@ int b43_dma_init(struct b43_wldev *dev)
>> if (err)
>> return err;
>> dma->translation = ssb_dma_translation(dev->sdev);
>> + dma->stopped_rings = 0;
>>
>> err = -ENOMEM;
>> /* setup TX DMA channels. */
>> @@ -1374,6 +1375,8 @@ int b43_dma_tx(struct b43_wldev *dev, struct sk_buff *skb)
>> /* This TX ring is full. */
>> ieee80211_stop_queue(dev->wl->hw, skb_get_queue_mapping(skb));
>> ring->stopped = 1;
>> + dev->dma.stopped_rings++;
>> +
>> if (b43_debug(dev, B43_DBG_DMAVERBOSE)) {
>> b43dbg(dev->wl, "Stopped TX ring %d\n", ring->index);
>> }
>> @@ -1493,9 +1496,11 @@ void b43_dma_handle_txstatus(struct b43_wldev *dev,
>> B43_WARN_ON(free_slots(ring) < TX_SLOTS_PER_FRAME);
>> ieee80211_wake_queue(dev->wl->hw, ring->queue_prio);
>> ring->stopped = 0;
>> + dev->dma.stopped_rings--;
>> if (b43_debug(dev, B43_DBG_DMAVERBOSE)) {
>> b43dbg(dev->wl, "Woke up TX ring %d\n", ring->index);
>> }
>> + ieee80211_queue_work(dev->wl->hw, &dev->wl->tx_work);
>> }
>> }
>>
>> diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c
>> index 1d8d983..2260b36 100644
>> --- a/drivers/net/wireless/b43/main.c
>> +++ b/drivers/net/wireless/b43/main.c
>> @@ -3219,6 +3219,11 @@ static void b43_tx_work(struct work_struct *work)
>> }
>>
>> while (skb_queue_len(&wl->tx_queue)) {
>> + if (!b43_using_pio_transfers(dev) && dev->dma.stopped_rings) {
>> + mutex_unlock(&wl->mutex);
>> + return;
>> + }
>> +
>> skb = skb_dequeue(&wl->tx_queue);
>>
>> if (b43_using_pio_transfers(dev))
>
> This can probably serve as a quick workaround, as long as a real fix is being developed.
Yeah, that's what my summary/comment say :)
> I'm not sure if multiple queues are needed for this to work. I think it could work
> with a single queue as well. We just must not _unqueue_ it, if we are unable to transmit
> it due to stopped ring. I don't know if there are skb_queue mechanisms that help
> us achieve this.
Well, as I said, we may be unable to transmit the first element of the
queue, but 2nd/3rd/... may be for different ring (qos) (we can
transmit).
Looping through the whole queue every time, just to find packets we
may transmit, sounds surely as a bad idea.
The only idea I've right now, are separated TX skb queues, one for each qos.
--
Rafał
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC][PATCH] b43: do not try sending packets when ring can be full
2011-06-12 18:15 ` Rafał Miłecki
@ 2011-06-12 18:48 ` Michael Büsch
2011-06-12 19:07 ` Rafał Miłecki
0 siblings, 1 reply; 6+ messages in thread
From: Michael Büsch @ 2011-06-12 18:48 UTC (permalink / raw)
To: Rafał Miłecki; +Cc: linux-wireless, b43-dev, francesco.gringoli
On Sun, 12 Jun 2011 20:15:53 +0200
Rafał Miłecki <zajec5@gmail.com> wrote:
> Well, as I said, we may be unable to transmit the first element of the
> queue, but 2nd/3rd/... may be for different ring (qos) (we can
> transmit).
>
> Looping through the whole queue every time, just to find packets we
> may transmit, sounds surely as a bad idea.
I don't think so. It's not that this is an actual queue anyway. It just acts
as a buffer to queue up one or two packets in the small race window of
actually filling up the DMA rings and stopping the mac80211 queue.
(It also acts as a context dispatcher in the first place, though).
So the "looping through the queue" just means checking if one or two packets
can be transmitted now.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC][PATCH] b43: do not try sending packets when ring can be full
2011-06-12 18:48 ` Michael Büsch
@ 2011-06-12 19:07 ` Rafał Miłecki
0 siblings, 0 replies; 6+ messages in thread
From: Rafał Miłecki @ 2011-06-12 19:07 UTC (permalink / raw)
To: Michael Büsch; +Cc: linux-wireless, b43-dev, francesco.gringoli
W dniu 12 czerwca 2011 20:48 użytkownik Michael Büsch <m@bues.ch> napisał:
> On Sun, 12 Jun 2011 20:15:53 +0200
> Rafał Miłecki <zajec5@gmail.com> wrote:
>> Well, as I said, we may be unable to transmit the first element of the
>> queue, but 2nd/3rd/... may be for different ring (qos) (we can
>> transmit).
>>
>> Looping through the whole queue every time, just to find packets we
>> may transmit, sounds surely as a bad idea.
>
> I don't think so. It's not that this is an actual queue anyway. It just acts
> as a buffer to queue up one or two packets in the small race window of
> actually filling up the DMA rings and stopping the mac80211 queue.
> (It also acts as a context dispatcher in the first place, though).
>
> So the "looping through the queue" just means checking if one or two packets
> can be transmitted now.
Ouch, I didn't though about stopping queue. Yeah, length of that queue
should not reach big sizes...
--
Rafał
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-06-12 19:07 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-12 15:11 [RFC][PATCH] b43: do not try sending packets when ring can be full Rafał Miłecki
2011-06-12 14:36 ` Rafał Miłecki
2011-06-12 16:29 ` Michael Büsch
2011-06-12 18:15 ` Rafał Miłecki
2011-06-12 18:48 ` Michael Büsch
2011-06-12 19:07 ` Rafał Miłecki
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).