From mboxrd@z Thu Jan 1 00:00:00 1970 From: Johannes Berg Subject: Re: [PATCH] mac80211: aggregation: Convert timers to use timer_setup() Date: Wed, 18 Oct 2017 13:37:35 +0200 Message-ID: <1508326655.2674.22.camel@sipsolutions.net> References: <20171017202545.GA115810@beast> (sfid-20171017_222550_315925_34B26DDB) <1508322566.2674.17.camel@sipsolutions.net> (sfid-20171018_122945_123971_5A96CA64) <1508326291.2674.21.camel@sipsolutions.net> (sfid-20171018_133153_823764_C25288EB) Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: "David S. Miller" , netdev@vger.kernel.org, linux-kernel@vger.kernel.org To: Kees Cook , linux-wireless@vger.kernel.org Return-path: In-Reply-To: <1508326291.2674.21.camel@sipsolutions.net> (sfid-20171018_133153_823764_C25288EB) Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Wed, 2017-10-18 at 13:31 +0200, Johannes Berg wrote: > On Wed, 2017-10-18 at 12:29 +0200, Johannes Berg wrote: > > > Anyway, the change here looks correct to me, so I'll apply it and then > > perhaps clean up more. I've only changed "u16 tid" to "u8 tid" since > > the valid range is 0-15 (in theory, in practice 0-7). > > Well, I guess I'm clearly wrong - it's crashing our test suite left and > right. > > I'll dig a little bit, but I don't have much time today, and will be > out for a few days starting tomorrow. Ok, it's pretty obvious - you never initialize the new fields in tid_tx (sta and tid), only in tid_rx. Let's see if it passes with that fixed. johannes