Search Linux Wireless

Re: [PATCH] mac80211: add stop/start logic for software TXQs

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, 2018-06-26 at 13:25 +0200, Toke Høiland-Jørgensen wrote:
> Manikanta Pubbisetty <mpubbise@xxxxxxxxxxxxxx> writes:
> 
> > We can still invoke netif stop/wake APIs when wake_tx_queue is
> > implemented but this could lead to packet drops in network layer;
> > adding stop/start logic for software TXQs in mac80211 instead makes
> > more sense; the change proposed adds the same in mac80211.
> 
> I agree with the approach; having packets queued in mac80211 while the
> queues are stopped also means that CoDel can react to them when they are
> resumed again.
> 
> 
> > +	list_for_each_entry_rcu(sta, &local->sta_list, list) {
> > +		if (!atomic_read(&sta->txqs_paused))
> > +			continue;
> > +
> > +		atomic_set(&sta->txqs_paused, 0);
> 
> I'm not terribly well-versed in the kernel atomics, but doesn't the
> split of read and set kinda defeat the point of using them? Also, as
> this is under RCU, why do you need an atomic in the first place?

RCU doesn't do any locking, but the usage of atomic_t is indeed rather
pointless since all you do is "atomic_set()" and "atomic_read()" - which
are actually not special at all, they're just writing/reading the
variable respectively! The only thing that's really special is
atomic_inc(), atomic_dec() and friends.

If you explain what you were trying to achieve here then we can probably
help you.

I'll also review the rest of the patch now, but I'll already note you
should fix the kernel-doc complaint from the kbuild test robot.

johannes



[Index of Archives]     [Linux Host AP]     [ATH6KL]     [Linux Wireless Personal Area Network]     [Linux Bluetooth]     [Wireless Regulations]     [Linux Netdev]     [Kernel Newbies]     [Linux Kernel]     [IDE]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite Hiking]     [MIPS Linux]     [ARM Linux]     [Linux RAID]

  Powered by Linux