From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-x236.google.com (mail-wm0-x236.google.com [IPv6:2a00:1450:400c:c09::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.bufferbloat.net (Postfix) with ESMTPS id 900253B45B for ; Mon, 18 Apr 2016 01:31:38 -0400 (EDT) Received: by mail-wm0-x236.google.com with SMTP id a140so103061308wma.0 for ; Sun, 17 Apr 2016 22:31:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tieto.com; s=google; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-transfer-encoding; bh=CSZJPSk8jqxSl6qKJniN4/pEpFRxKufXtxHriIluv0o=; b=UI69AdFMT022x0cFsMrmIRDQ7nPWVw+TbEUGFyem61jFZv65OzKNqEdDqr2mus6F63 7yjjRg9Sz5eW2NUgoSvBt0xRdfTMlMHynMRxI8vAHLSUfQQtvIwiYa9zXqAT2Io/Xb7U +z2knxrQSYKsvCLIfBCE/bNM2dMJZIOC2X+/Y= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-transfer-encoding; bh=CSZJPSk8jqxSl6qKJniN4/pEpFRxKufXtxHriIluv0o=; b=izfnHe70Z+TOnbegM/dJUgseFm3X/7AWveJ/8Eq81nKw9R9p9ZO2gPNVYlALt4SkL4 qbWdWBndk7PuL92d7EHAlfO3NeH/XEGLeoeqXpL+22ktfB6YpJvodJ7iVeq80cWbMa8O 8ecufmhbbMvkNYHli2P9WTrRSVPZHCboGJ0qQxI6O3Gw8gePuFFQp3PDqhr7T7htcsWP XuyF329GJZfESJXTZFXmFZXOcXyLZl8ZNS2QjdRGVgCJpG9fOb7XMLuHsXXuFK0GCb5e ddY+qLjp+S1JPDWKCCsTR0ZIgQdH3dz0Ta2OoSbx6r99jFSGUjheR5TtV5ClcjJUZ0IW PS6A== X-Gm-Message-State: AOPr4FURu8Zi+xwLmZU1AY0jYan2BJ/n3oH4hSNYm9VDkJyiB8sjlSbFr2Tcdt88nyQPrq8E6c1lZshJqMMeWYHXfz0b4q0IQRytL+LIc3sSIEMxzMhdJA3ZJQyEc+RtpRjh16lgbMuOf9SIRGtQApJ1+g== MIME-Version: 1.0 X-Received: by 10.194.166.228 with SMTP id zj4mr7478181wjb.83.1460957497723; Sun, 17 Apr 2016 22:31:37 -0700 (PDT) Received: by 10.194.115.3 with HTTP; Sun, 17 Apr 2016 22:31:37 -0700 (PDT) In-Reply-To: <1460845772.2075.31.camel@sipsolutions.net> References: <1459420104-31554-1-git-send-email-michal.kazior@tieto.com> <1460636302-31161-1-git-send-email-michal.kazior@tieto.com> <1460636302-31161-5-git-send-email-michal.kazior@tieto.com> <1460845772.2075.31.camel@sipsolutions.net> Date: Mon, 18 Apr 2016 07:31:37 +0200 Message-ID: From: Michal Kazior To: Johannes Berg Cc: linux-wireless , Dave Taht , make-wifi-fast@lists.bufferbloat.net, codel@lists.bufferbloat.net, Avery Pennarun Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-DomainID: tieto.com Subject: Re: [Codel] [PATCHv3 4/5] mac80211: implement codel on fair queuing flows X-BeenThere: codel@lists.bufferbloat.net X-Mailman-Version: 2.1.20 Precedence: list List-Id: CoDel AQM discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Apr 2016 05:31:38 -0000 On 17 April 2016 at 00:29, Johannes Berg wrote: > On Thu, 2016-04-14 at 14:18 +0200, Michal Kazior wrote: >> >> + struct ieee80211_vif *vif; >> + >> + /* When packets are enqueued on txq >> it's easy >> + * to re-construct the vif pointer. >> There's no >> + * more space in tx_info so it can >> be used to >> + * store the necessary enqueue time >> for packet >> + * sojourn time computation. >> + */ >> + u64 enqueue_time; >> + }; > > I wonder if we could move something like the hw_key into tx_control > instead? Hmm.. It's probably doable. From a quick look it'll require quite some change here and there (e.g. tdls_channel_switch op will need to be extended to pass tx_control). I'll play with the idea.. Micha=C5=82