On Thu, Dec 12, 2019 at 11:31:37AM +0200, Kalle Valo wrote: > + linux-wireless > > "Paul E. McKenney" <paulmck@xxxxxxxxxx> writes: > > > On Wed, Dec 11, 2019 at 08:09:11PM +0100, Matthias Brugger wrote: > >> On 11/12/2019 19:37, Paul E. McKenney wrote: > >> > >> > --- a/drivers/net/wireless/mediatek/mt76/agg-rx.c > >> > +++ b/drivers/net/wireless/mediatek/mt76/agg-rx.c > >> > @@ -281,8 +281,8 @@ void mt76_rx_aggr_stop(struct mt76_dev *dev, struct mt76_wcid *wcid, u8 tidno) > >> > { > >> > struct mt76_rx_tid *tid = NULL; > >> > > >> > - rcu_swap_protected(wcid->aggr[tidno], tid, > >> > - lockdep_is_held(&dev->mutex)); > >> > + tid = rcu_swap_protected(wcid->aggr[tidno], tid, > >> > + lockdep_is_held(&dev->mutex)); > >> > >> I suppose you meant: rcu_replace_pointer() here. > > > > Indeed I did, and thank you for catching this! Bad patch day here. :-/ > > > > Update below... > > > > Thanx, Paul > > > > ------------------------------------------------------------------------ > > > > commit ad5572b091429a45e863acaa6a36cf396d44f58d > > Author: Paul E. McKenney <paulmck@xxxxxxxxxx> > > Date: Wed Dec 11 10:30:21 2019 -0800 > > > > wireless/mediatek: Replace rcu_swap_protected() with rcu_replace_pointer() > > > > This commit replaces the use of rcu_swap_protected() with the more > > intuitively appealing rcu_replace_pointer() as a step towards removing > > rcu_swap_protected(). > > > > Link: https://lore.kernel.org/lkml/CAHk-=wiAsJLw1egFEE=Z7-GGtM6wcvtyytXZA1+BHqta4gg6Hw@xxxxxxxxxxxxxx/ > > Reported-by: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> > > Reported-by: "Martin K. Petersen" <martin.petersen@xxxxxxxxxx> > > [ paulmck: Apply Matthias Brugger feedback. ] > > Signed-off-by: Paul E. McKenney <paulmck@xxxxxxxxxx> > > Reviewed-by: "Martin K. Petersen" <martin.petersen@xxxxxxxxxx> > > Cc: Felix Fietkau <nbd@xxxxxxxx> > > Cc: Lorenzo Bianconi <lorenzo.bianconi83@xxxxxxxxx> > > Cc: Ryder Lee <ryder.lee@xxxxxxxxxxxx> > > Cc: Roy Luo <royluo@xxxxxxxxxx> > > Cc: Kalle Valo <kvalo@xxxxxxxxxxxxxx> > > Cc: "David S. Miller" <davem@xxxxxxxxxxxxx> > > Cc: Matthias Brugger <matthias.bgg@xxxxxxxxx> > > Cc: <linux-wireless@xxxxxxxxxxxxxxx> > > Cc: <netdev@xxxxxxxxxxxxxxx> > > Cc: <linux-arm-kernel@xxxxxxxxxxxxxxxxxxx> > > Cc: <linux-mediatek@xxxxxxxxxxxxxxxxxxx> > > Via which tree is this supposed to go? If I should take this please > resend to linux-wireless so that patchwork sees it, but if someone else > is planning to take this: > > Acked-by: Kalle Valo <kvalo@xxxxxxxxxxxxxx> I have queued it just preceding the commit that remove rcu_swap_protected() with your ack, thank you! Thanx, Paul