From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-32-ewr.dyndns.com (mxout-107-ewr.mailhop.org [216.146.33.107]) by lists.bufferbloat.net (Postfix) with ESMTP id 142BC2E028D for ; Wed, 9 Mar 2011 12:35:08 -0800 (PST) Received: from scan-32-ewr.mailhop.org (scan-32-ewr.local [10.0.141.238]) by mail-32-ewr.dyndns.com (Postfix) with ESMTP id F314F6FA20E for ; Wed, 9 Mar 2011 20:35:06 +0000 (UTC) X-Spam-Score: -1.0 (-) X-Mail-Handler: MailHop by DynDNS X-Originating-IP: 209.85.216.178 Received: from mail-qy0-f178.google.com (mail-qy0-f178.google.com [209.85.216.178]) by mail-32-ewr.dyndns.com (Postfix) with ESMTP id 6F40E6FA15F for ; Wed, 9 Mar 2011 20:34:52 +0000 (UTC) Received: by qyk2 with SMTP id 2so869262qyk.16 for ; Wed, 09 Mar 2011 12:34:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:reply-to:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=DEbqx5NM9NhmS0rr0jyT4JPYLhQPcBmP1scxoJYB4Fo=; b=P9VpfaWABsaG5YUO2NQlkbZsSb0H0qdszVYsNsLJiaAoC7IqwDQ5liZukRA3K7KfQl PMuxDgyEFJ53UawbsClkvuR2Me2C45E2Rft8YrhqRf+4MwPGgKrvEBIcjQRKtlIJWLX6 uIerWH7beZYyxf9G9SAMv2FZh/t6aeb6km0Ps= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; b=kzBUHXAtv/qX+4A+owKWwBUyuSdgzGqzyLI5qvrJwNip8FFRjtNhOeg+GeqXyJIUuS 7POsHysXiFAIa8FHyEPMkqt2tFFpH0aJWCIgubgFfFYyRFymq/Q1Fqp18TLGwYtVHmgx jITCHpVlQbxqf3nCTujHnb8PX/VecJLCuLxfE= MIME-Version: 1.0 Received: by 10.229.214.208 with SMTP id hb16mr5547203qcb.260.1299702891414; Wed, 09 Mar 2011 12:34:51 -0800 (PST) Received: by 10.229.73.105 with HTTP; Wed, 9 Mar 2011 12:34:51 -0800 (PST) In-Reply-To: <1299687684-19638-3-git-send-email-linville@tuxdriver.com> References: <1299687684-19638-1-git-send-email-linville@tuxdriver.com> <1299687684-19638-3-git-send-email-linville@tuxdriver.com> Date: Wed, 9 Mar 2011 21:34:51 +0100 Message-ID: Subject: Re: [PATCH 3/3] ath5k: implement ieee80211_ops->{get,set}_ringparam From: Sedat Dilek To: "John W. Linville" Content-Type: text/plain; charset=UTF-8 Cc: bloat-devel@lists.bufferbloat.net, me@bobcopeland.com, linux-wireless@vger.kernel.org, mickflemm@gmail.com X-BeenThere: bloat-devel@lists.bufferbloat.net X-Mailman-Version: 2.1.13 Precedence: list Reply-To: sedat.dilek@gmail.com List-Id: "Developers working on AQM, device drivers, and networking stacks" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Mar 2011 20:35:09 -0000 On Wed, Mar 9, 2011 at 5:21 PM, John W. Linville wrote: > set_ringparam only allows changes to tx ring at this time. > > Signed-off-by: John W. Linville > --- Yay, a step forward what concerns ath5k and debloat-testing! Tested against linux-next (next-20110309) with [1] and [2,3,4]. - Sedat - [1] https://patchwork.kernel.org/patch/619631/ [2] https://patchwork.kernel.org/patch/621791/ [3] https://patchwork.kernel.org/patch/621771/ [4] https://patchwork.kernel.org/patch/621781/ P.S.: My investigations... # lspci -nnvv | grep -i ath 02:02.0 Ethernet controller [0200]: Atheros Communications Inc. AR5212 802.11abg NIC [168c:1014] (rev 01) Kernel driver in use: ath5k # ethtool -G wlan0 tx 1 # ethtool -g wlan0 Ring parameters for wlan0: Pre-set maximums: RX: 40 RX Mini: 0 RX Jumbo: 0 TX: 50 Current hardware settings: RX: 40 RX Mini: 0 RX Jumbo: 0 TX: 1 - EOT -