linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Stanislaw Gruszka <sgruszka@redhat.com>
To: "John W. Linville" <linville@tuxdriver.com>
Cc: linux-wireless <linux-wireless@vger.kernel.org>,
	ath9k-devel@venema.h4ckr.net, camilo@mesias.co.uk,
	Jonathan Nieder <jrnieder@gmail.com>,
	Tony Houghton <h@realh.co.uk>,
	Rajkumar Manoharan <rmanoharan@atheros.com>,
	Adrian Chadd <adrian@freebsd.org>,
	lrodriguez@atheros.com, Jesse Barnes <jbarnes@virtuousgeek.org>,
	Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Subject: Re: [PATCH -next 0/8] ath9k: ASPM fixes
Date: Fri, 12 Aug 2011 14:35:10 +0200	[thread overview]
Message-ID: <20110812123509.GA13328@redhat.com> (raw)
In-Reply-To: <20110811160847.GD2566@tuxdriver.com>

On Thu, Aug 11, 2011 at 12:08:48PM -0400, John W. Linville wrote:
> On Fri, Aug 05, 2011 at 01:10:31PM +0200, Stanislaw Gruszka wrote:
> > This patch series try to fix ath9k ASPM. Some of patches are cleanup
> > only or do merging common code (with e1000e driver).
> > 
> > With CONFIG_PCIEASPM it's possible to change ASPM settings on runtime
> > via /sys/module/pcie_aspm/parameters/policy . However most drivers
> > I looked at assume this setting is constant. I add a callback to pci
> > driver to inform about the change, and allow driver to do needed hw
> > related changes. Currently only ath9k implement the callback, but
> > I think it will be useful for other drivers i.e. iwlwifi, rtlwifi
> > that do some own ASPM handling.
> > 
> > Would be nice to get some testing on patches on different
> > platforms with ath9k devices on kernel compiled with CONFIG_PCIEASPM
> > (default) and mixing up commands:
> > 
> > echo powersave > /sys/module/pcie_aspm/parameters/policy  
> > echo performance > /sys/module/pcie_aspm/parameters/policy  
> > ifconfig wlan0 down
> > ifconfig wlan0 up
> > pm-suspend
> > 
> > Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
> > Cc: linux-pci@vger.kernel.org
> > Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
> > Cc: e1000-devel@lists.sourceforge.net
> > ---
> >  drivers/net/e1000e/netdev.c                |   31 ----------
> >  drivers/net/wireless/ath/ath9k/ar9002_hw.c |   12 ---
> >  drivers/net/wireless/ath/ath9k/ar9003_hw.c |   12 ---
> >  drivers/net/wireless/ath/ath9k/hw-ops.h    |    9 +-
> >  drivers/net/wireless/ath/ath9k/hw.c        |   17 +++--
> >  drivers/net/wireless/ath/ath9k/hw.h        |   12 +--
> >  drivers/net/wireless/ath/ath9k/main.c      |    8 --
> >  drivers/net/wireless/ath/ath9k/pci.c       |   88 ++++++++++++++++++++++-------
> >  drivers/pci/pcie/Makefile                  |    3 
> >  drivers/pci/pcie/aspm.c                    |   46 ++++++++++++++-
> >  include/linux/pci-aspm.h                   |    2 
> >  include/linux/pci.h                        |    3 
> >  12 files changed, 148 insertions(+), 95 deletions(-)
> 
> I'm happy to take patches 1-3 through my tree.  But maybe patches 4-8
> should go through a PCI tree?  Or at least get some ACKS from the
> appropriate maintainers to take these changes through the wireless
> trees?

Getting ACKs from Jesse and Jeff would be best since ath9k patches
5 and 8 depends on 1-3. But, crap, seems my scripts does not eval Cc
from email body to actual Cc list. Not sure if pci and e1000 guys
saw these patches. If not, I'm gona repost this set and Cc it
fully to pci and e1000 guys.

Stanislaw

  reply	other threads:[~2011-08-12 12:36 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-05 11:10 [PATCH -next 0/8] ath9k: ASPM fixes Stanislaw Gruszka
2011-08-05 11:10 ` [PATCH -next 1/8] ath9k: remove ->config_pci_powersave() redundant argument Stanislaw Gruszka
2011-08-05 11:10 ` [PATCH -next 2/8] ath9k: merge common ->config_pci_powersave() checks Stanislaw Gruszka
2011-08-05 11:10 ` [PATCH -next 3/8] ath9k: do btcoex ASPM disabling at initialization time Stanislaw Gruszka
2011-08-05 11:10 ` [PATCH -next 4/8] pci: aspm: add function for disabling ASPM Stanislaw Gruszka
2011-08-05 11:10 ` [PATCH -next 5/8] ath9k: use common " Stanislaw Gruszka
2011-08-05 11:10 ` [PATCH -next 6/8] e1000e: " Stanislaw Gruszka
2011-08-05 11:10 ` [PATCH -next 7/8] pci: aspm: add settings changed callback Stanislaw Gruszka
2011-08-05 11:10 ` [PATCH -next 8/8] ath9k: be prepare for dynamic ASPM settings change Stanislaw Gruszka
2011-08-11 16:08 ` [PATCH -next 0/8] ath9k: ASPM fixes John W. Linville
2011-08-12 12:35   ` Stanislaw Gruszka [this message]
2011-08-12 18:49     ` Jeff Kirsher
2011-08-17 15:41       ` Stanislaw Gruszka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110812123509.GA13328@redhat.com \
    --to=sgruszka@redhat.com \
    --cc=adrian@freebsd.org \
    --cc=ath9k-devel@venema.h4ckr.net \
    --cc=camilo@mesias.co.uk \
    --cc=h@realh.co.uk \
    --cc=jbarnes@virtuousgeek.org \
    --cc=jeffrey.t.kirsher@intel.com \
    --cc=jrnieder@gmail.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linville@tuxdriver.com \
    --cc=lrodriguez@atheros.com \
    --cc=rmanoharan@atheros.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).