public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: iwlwifi: show qos AC parameters
       [not found] <200906152114.n5FLEDT3015406@hera.kernel.org>
@ 2009-06-21 18:07 ` Arjan van de Ven
  2009-06-22  2:48   ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Arjan van de Ven @ 2009-06-21 18:07 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: wey-yi.w.guy, gregkh

On Mon, 15 Jun 2009 21:14:13 GMT
Linux Kernel Mailing List <linux-kernel@vger.kernel.org> wrote:

> +static ssize_t show_qos(struct device *d,
> +				struct device_attribute *attr, char
> *buf) +{
> +	struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
> +	char *p = buf;
> +	int   q;
> +
> +	for (q = 0; q < AC_NUM; q++) {
> +		p += sprintf(p, "\tcw_min\tcw_max\taifsn\ttxop\n");
> +		p += sprintf(p, "AC[%d]\t%u\t%u\t%u\t%u\n", q,
> +

wonder what happened to the "one value per file" sysfs rule...


-- 
Arjan van de Ven 	Intel Open Source Technology Centre
For development, discussion and tips for power savings, 
visit http://www.lesswatts.org

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: iwlwifi: show qos AC parameters
  2009-06-21 18:07 ` iwlwifi: show qos AC parameters Arjan van de Ven
@ 2009-06-22  2:48   ` Greg KH
  2009-06-22 14:06     ` Guy, Wey-Yi W
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2009-06-22  2:48 UTC (permalink / raw)
  To: Arjan van de Ven; +Cc: Linux Kernel Mailing List, wey-yi.w.guy

On Sun, Jun 21, 2009 at 11:07:27AM -0700, Arjan van de Ven wrote:
> On Mon, 15 Jun 2009 21:14:13 GMT
> Linux Kernel Mailing List <linux-kernel@vger.kernel.org> wrote:
> 
> > +static ssize_t show_qos(struct device *d,
> > +				struct device_attribute *attr, char
> > *buf) +{
> > +	struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
> > +	char *p = buf;
> > +	int   q;
> > +
> > +	for (q = 0; q < AC_NUM; q++) {
> > +		p += sprintf(p, "\tcw_min\tcw_max\taifsn\ttxop\n");
> > +		p += sprintf(p, "AC[%d]\t%u\t%u\t%u\t%u\n", q,
> > +
> 
> wonder what happened to the "one value per file" sysfs rule...

Oh ick.

Thanks Arjan for the pointer.

Who's responsible for this file, and when is it going to be changed?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: iwlwifi: show qos AC parameters
  2009-06-22  2:48   ` Greg KH
@ 2009-06-22 14:06     ` Guy, Wey-Yi W
  2009-06-22 16:23       ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Guy, Wey-Yi W @ 2009-06-22 14:06 UTC (permalink / raw)
  To: Greg KH, Arjan van de Ven; +Cc: Linux Kernel Mailing List

Oh ok.
I will submit the patch to fix this.

Wey-Yi Guy
Intel Corporation
2111 N.E. 25th Avenue  M/S JF3-308                 
Hillsboro OR 97124-5961
USA
Work Phone: 503-264-6023 (OR)
Cell Phone: 503-329-8410
Email: wey-yi.w.guy@intel.com
 

-----Original Message-----
From: Greg KH [mailto:greg@kroah.com] 
Sent: Sunday, June 21, 2009 7:49 PM
To: Arjan van de Ven
Cc: Linux Kernel Mailing List; Guy, Wey-Yi W
Subject: Re: iwlwifi: show qos AC parameters

On Sun, Jun 21, 2009 at 11:07:27AM -0700, Arjan van de Ven wrote:
> On Mon, 15 Jun 2009 21:14:13 GMT
> Linux Kernel Mailing List <linux-kernel@vger.kernel.org> wrote:
> 
> > +static ssize_t show_qos(struct device *d,
> > +				struct device_attribute *attr, char
> > *buf) +{
> > +	struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
> > +	char *p = buf;
> > +	int   q;
> > +
> > +	for (q = 0; q < AC_NUM; q++) {
> > +		p += sprintf(p, "\tcw_min\tcw_max\taifsn\ttxop\n");
> > +		p += sprintf(p, "AC[%d]\t%u\t%u\t%u\t%u\n", q,
> > +
> 
> wonder what happened to the "one value per file" sysfs rule...

Oh ick.

Thanks Arjan for the pointer.

Who's responsible for this file, and when is it going to be changed?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: iwlwifi: show qos AC parameters
  2009-06-22 14:06     ` Guy, Wey-Yi W
@ 2009-06-22 16:23       ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2009-06-22 16:23 UTC (permalink / raw)
  To: Guy, Wey-Yi W; +Cc: Arjan van de Ven, Linux Kernel Mailing List

On Mon, Jun 22, 2009 at 07:06:14AM -0700, Guy, Wey-Yi W wrote:
> Oh ok.
> I will submit the patch to fix this.

Also, all new sysfs files need an entry in Documentation/ABI/.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-06-22 16:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <200906152114.n5FLEDT3015406@hera.kernel.org>
2009-06-21 18:07 ` iwlwifi: show qos AC parameters Arjan van de Ven
2009-06-22  2:48   ` Greg KH
2009-06-22 14:06     ` Guy, Wey-Yi W
2009-06-22 16:23       ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox