linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] AHCI: Make distinct names for ports in /proc/interrupts
@ 2013-04-29 10:12 Alexander Gordeev
  2013-04-29 11:32 ` Sergei Shtylyov
  2013-04-30 21:41 ` Jeff Garzik
  0 siblings, 2 replies; 7+ messages in thread
From: Alexander Gordeev @ 2013-04-29 10:12 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: linux-kernel, linux-ide, Jan Beulich

Currently all interrupts assigned to AHCI ports show up in
'/proc/interrupts' as 'ahci'. This fix adds port numbers as
suffixes and hence makes the descriptions distinct.

Reported-by: Jan Beulich <JBeulich@suse.com>
Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
---
 drivers/ata/ahci.c |    6 ++++--
 drivers/ata/ahci.h |    1 +
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
index 3b9a7b1..dc5c1aa 100644
--- a/drivers/ata/ahci.c
+++ b/drivers/ata/ahci.c
@@ -1146,10 +1146,12 @@ int ahci_host_activate(struct ata_host *host, int irq, unsigned int n_msis,
 			return -EINVAL;
 
 		for (i = 0; i < n_irqs; i++) {
+			struct ahci_port_priv *pp = host->ports[i]->private_data;
+			snprintf(pp->irq_desc, sizeof(pp->irq_desc),
+				 "%s%d", dev_driver_string(host->dev), i);
 			rc = devm_request_threaded_irq(host->dev, irq + i,
 				ahci_multi_irqs_intr, ahci_port_thread_fn,
-				IRQF_SHARED, dev_driver_string(host->dev),
-				host->ports[i]);
+				IRQF_SHARED, pp->irq_desc, host->ports[i]);
 			if (rc)
 				goto out_free_irqs;
 		}
diff --git a/drivers/ata/ahci.h b/drivers/ata/ahci.h
index ed1fbc8..ceb5208 100644
--- a/drivers/ata/ahci.h
+++ b/drivers/ata/ahci.h
@@ -305,6 +305,7 @@ struct ahci_port_priv {
 	int			fbs_last_dev;	/* save FBS.DEV of last FIS */
 	/* enclosure management info per PM slot */
 	struct ahci_em_priv	em_priv[EM_MAX_SLOTS];
+	char			irq_desc[8];	/* bus + port # */
 };
 
 struct ahci_host_priv {
-- 
1.7.7.6


-- 
Regards,
Alexander Gordeev
agordeev@redhat.com

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

* Re: [PATCH] AHCI: Make distinct names for ports in /proc/interrupts
  2013-04-29 10:12 [PATCH] AHCI: Make distinct names for ports in /proc/interrupts Alexander Gordeev
@ 2013-04-29 11:32 ` Sergei Shtylyov
  2013-04-30 21:41 ` Jeff Garzik
  1 sibling, 0 replies; 7+ messages in thread
From: Sergei Shtylyov @ 2013-04-29 11:32 UTC (permalink / raw)
  To: Alexander Gordeev; +Cc: Jeff Garzik, linux-kernel, linux-ide, Jan Beulich

Hello.

On 29-04-2013 14:12, Alexander Gordeev wrote:

> Currently all interrupts assigned to AHCI ports show up in
> '/proc/interrupts' as 'ahci'. This fix adds port numbers as
> suffixes and hence makes the descriptions distinct.

> Reported-by: Jan Beulich <JBeulich@suse.com>
> Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
> ---
>   drivers/ata/ahci.c |    6 ++++--
>   drivers/ata/ahci.h |    1 +
>   2 files changed, 5 insertions(+), 2 deletions(-)

> diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
> index 3b9a7b1..dc5c1aa 100644
> --- a/drivers/ata/ahci.c
> +++ b/drivers/ata/ahci.c
> @@ -1146,10 +1146,12 @@ int ahci_host_activate(struct ata_host *host, int irq, unsigned int n_msis,
>   			return -EINVAL;
>
>   		for (i = 0; i < n_irqs; i++) {
> +			struct ahci_port_priv *pp = host->ports[i]->private_data;

    Empty line wouldn't hurt here, after declaration.

> +			snprintf(pp->irq_desc, sizeof(pp->irq_desc),
> +				 "%s%d", dev_driver_string(host->dev), i);
>   			rc = devm_request_threaded_irq(host->dev, irq + i,
>   				ahci_multi_irqs_intr, ahci_port_thread_fn,
> -				IRQF_SHARED, dev_driver_string(host->dev),
> -				host->ports[i]);
> +				IRQF_SHARED, pp->irq_desc, host->ports[i]);
>   			if (rc)
>   				goto out_free_irqs;
>   		}

WBR, Sergei


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

* Re: [PATCH] AHCI: Make distinct names for ports in /proc/interrupts
  2013-04-29 10:12 [PATCH] AHCI: Make distinct names for ports in /proc/interrupts Alexander Gordeev
  2013-04-29 11:32 ` Sergei Shtylyov
@ 2013-04-30 21:41 ` Jeff Garzik
  2013-05-07  8:38   ` [PATCH v2] " Alexander Gordeev
  1 sibling, 1 reply; 7+ messages in thread
From: Jeff Garzik @ 2013-04-30 21:41 UTC (permalink / raw)
  To: Alexander Gordeev; +Cc: linux-kernel, linux-ide, Jan Beulich

On 04/29/2013 06:12 AM, Alexander Gordeev wrote:
> Currently all interrupts assigned to AHCI ports show up in
> '/proc/interrupts' as 'ahci'. This fix adds port numbers as
> suffixes and hence makes the descriptions distinct.
>
> Reported-by: Jan Beulich <JBeulich@suse.com>
> Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
> ---
>   drivers/ata/ahci.c |    6 ++++--
>   drivers/ata/ahci.h |    1 +
>   2 files changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
> index 3b9a7b1..dc5c1aa 100644
> --- a/drivers/ata/ahci.c
> +++ b/drivers/ata/ahci.c
> @@ -1146,10 +1146,12 @@ int ahci_host_activate(struct ata_host *host, int irq, unsigned int n_msis,
>   			return -EINVAL;
>
>   		for (i = 0; i < n_irqs; i++) {
> +			struct ahci_port_priv *pp = host->ports[i]->private_data;
> +			snprintf(pp->irq_desc, sizeof(pp->irq_desc),
> +				 "%s%d", dev_driver_string(host->dev), i);
>   			rc = devm_request_threaded_irq(host->dev, irq + i,
>   				ahci_multi_irqs_intr, ahci_port_thread_fn,
> -				IRQF_SHARED, dev_driver_string(host->dev),
> -				host->ports[i]);
> +				IRQF_SHARED, pp->irq_desc, host->ports[i]);
>   			if (rc)
>   				goto out_free_irqs;
>   		}
> diff --git a/drivers/ata/ahci.h b/drivers/ata/ahci.h
> index ed1fbc8..ceb5208 100644
> --- a/drivers/ata/ahci.h
> +++ b/drivers/ata/ahci.h
> @@ -305,6 +305,7 @@ struct ahci_port_priv {
>   	int			fbs_last_dev;	/* save FBS.DEV of last FIS */
>   	/* enclosure management info per PM slot */
>   	struct ahci_em_priv	em_priv[EM_MAX_SLOTS];
> +	char			irq_desc[8];	/* bus + port # */

Would prefer to initialize irq_desc when the struct of ahci_port_priv is 
initialized, rather than at irq request time.

	Jeff





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

* [PATCH v2] AHCI: Make distinct names for ports in /proc/interrupts
  2013-04-30 21:41 ` Jeff Garzik
@ 2013-05-07  8:38   ` Alexander Gordeev
  2013-05-14 18:56     ` Tejun Heo
  0 siblings, 1 reply; 7+ messages in thread
From: Alexander Gordeev @ 2013-05-07  8:38 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: linux-kernel, linux-ide, Jan Beulich

Currently all interrupts assigned to AHCI ports show up in
'/proc/interrupts' as 'ahci'. This fix adds port numbers as
suffixes and hence makes the descriptions distinct.

Reported-by: Jan Beulich <JBeulich@suse.com>
Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
---
 drivers/ata/ahci.c    |    5 +++--
 drivers/ata/ahci.h    |    1 +
 drivers/ata/libahci.c |   10 ++++++++++
 3 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
index 3b9a7b1..6e0c9ad 100644
--- a/drivers/ata/ahci.c
+++ b/drivers/ata/ahci.c
@@ -1146,10 +1146,11 @@ int ahci_host_activate(struct ata_host *host, int irq, unsigned int n_msis,
 			return -EINVAL;
 
 		for (i = 0; i < n_irqs; i++) {
+			struct ahci_port_priv *pp = host->ports[i]->private_data;
+
 			rc = devm_request_threaded_irq(host->dev, irq + i,
 				ahci_multi_irqs_intr, ahci_port_thread_fn,
-				IRQF_SHARED, dev_driver_string(host->dev),
-				host->ports[i]);
+				IRQF_SHARED, pp->irq_desc, host->ports[i]);
 			if (rc)
 				goto out_free_irqs;
 		}
diff --git a/drivers/ata/ahci.h b/drivers/ata/ahci.h
index ed1fbc8..7386dfd 100644
--- a/drivers/ata/ahci.h
+++ b/drivers/ata/ahci.h
@@ -305,6 +305,7 @@ struct ahci_port_priv {
 	int			fbs_last_dev;	/* save FBS.DEV of last FIS */
 	/* enclosure management info per PM slot */
 	struct ahci_em_priv	em_priv[EM_MAX_SLOTS];
+	char			*irq_desc;	/* desc in /proc/interrupts */
 };
 
 struct ahci_host_priv {
diff --git a/drivers/ata/libahci.c b/drivers/ata/libahci.c
index 68b3bdd..2b56769 100644
--- a/drivers/ata/libahci.c
+++ b/drivers/ata/libahci.c
@@ -2251,6 +2251,16 @@ static int ahci_port_start(struct ata_port *ap)
 	if (!pp)
 		return -ENOMEM;
 
+	if (ap->host->n_ports > 1) {
+		pp->irq_desc = devm_kzalloc(dev, 8, GFP_KERNEL);
+		if (!pp->irq_desc) {
+			devm_kfree(dev, pp);
+			return -ENOMEM;
+		}
+		snprintf(pp->irq_desc, 8,
+			 "%s%d", dev_driver_string(dev), ap->port_no);
+	}
+
 	/* check FBS capability */
 	if ((hpriv->cap & HOST_CAP_FBS) && sata_pmp_supported(ap)) {
 		void __iomem *port_mmio = ahci_port_base(ap);
-- 
1.7.7.6

-- 
Regards,
Alexander Gordeev
agordeev@redhat.com

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

* Re: [PATCH v2] AHCI: Make distinct names for ports in /proc/interrupts
  2013-05-07  8:38   ` [PATCH v2] " Alexander Gordeev
@ 2013-05-14 18:56     ` Tejun Heo
  2013-05-14 19:41       ` Alexander Gordeev
  0 siblings, 1 reply; 7+ messages in thread
From: Tejun Heo @ 2013-05-14 18:56 UTC (permalink / raw)
  To: Alexander Gordeev; +Cc: Jeff Garzik, linux-kernel, linux-ide, Jan Beulich

On Tue, May 07, 2013 at 10:38:37AM +0200, Alexander Gordeev wrote:
> Currently all interrupts assigned to AHCI ports show up in
> '/proc/interrupts' as 'ahci'. This fix adds port numbers as
> suffixes and hence makes the descriptions distinct.
> 
> Reported-by: Jan Beulich <JBeulich@suse.com>
> Signed-off-by: Alexander Gordeev <agordeev@redhat.com>

Patch doesn't apply.  Can you please refresh it on top of the
following git branch?

 git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git for-3.11

Thanks.

-- 
tejun

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

* Re: [PATCH v2] AHCI: Make distinct names for ports in /proc/interrupts
  2013-05-14 18:56     ` Tejun Heo
@ 2013-05-14 19:41       ` Alexander Gordeev
  2013-05-14 20:44         ` Tejun Heo
  0 siblings, 1 reply; 7+ messages in thread
From: Alexander Gordeev @ 2013-05-14 19:41 UTC (permalink / raw)
  To: Tejun Heo; +Cc: Jeff Garzik, linux-kernel, linux-ide, Jan Beulich

On Tue, May 14, 2013 at 11:56:42AM -0700, Tejun Heo wrote:
> On Tue, May 07, 2013 at 10:38:37AM +0200, Alexander Gordeev wrote:
> > Currently all interrupts assigned to AHCI ports show up in
> > '/proc/interrupts' as 'ahci'. This fix adds port numbers as
> > suffixes and hence makes the descriptions distinct.
> > 
> > Reported-by: Jan Beulich <JBeulich@suse.com>
> > Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
> 
> Patch doesn't apply.  Can you please refresh it on top of the
> following git branch?

Well, this patch is on top of a previously posted another patch
"[PATCH RFC 1/1] AHCI: Optimize interrupt processing". Jeff said
he applied the latter, but I did not notice it made to his repo.

Would you consider to accept "AHCI: Optimize interrupt processing"
patch first, or still refresh this one?

>  git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git for-3.11
> 
> Thanks.
> 
> -- 
> tejun

-- 
Regards,
Alexander Gordeev
agordeev@redhat.com

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

* Re: [PATCH v2] AHCI: Make distinct names for ports in /proc/interrupts
  2013-05-14 19:41       ` Alexander Gordeev
@ 2013-05-14 20:44         ` Tejun Heo
  0 siblings, 0 replies; 7+ messages in thread
From: Tejun Heo @ 2013-05-14 20:44 UTC (permalink / raw)
  To: Alexander Gordeev; +Cc: Jeff Garzik, linux-kernel, linux-ide, Jan Beulich

On Tue, May 14, 2013 at 09:41:19PM +0200, Alexander Gordeev wrote:
> On Tue, May 14, 2013 at 11:56:42AM -0700, Tejun Heo wrote:
> > On Tue, May 07, 2013 at 10:38:37AM +0200, Alexander Gordeev wrote:
> > > Currently all interrupts assigned to AHCI ports show up in
> > > '/proc/interrupts' as 'ahci'. This fix adds port numbers as
> > > suffixes and hence makes the descriptions distinct.
> > > 
> > > Reported-by: Jan Beulich <JBeulich@suse.com>
> > > Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
> > 
> > Patch doesn't apply.  Can you please refresh it on top of the
> > following git branch?
> 
> Well, this patch is on top of a previously posted another patch
> "[PATCH RFC 1/1] AHCI: Optimize interrupt processing". Jeff said
> he applied the latter, but I did not notice it made to his repo.
> 
> Would you consider to accept "AHCI: Optimize interrupt processing"
> patch first, or still refresh this one?

Can you please repost both on top of for-3.11?

Thanks.

-- 
tejun

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

end of thread, other threads:[~2013-05-14 20:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-29 10:12 [PATCH] AHCI: Make distinct names for ports in /proc/interrupts Alexander Gordeev
2013-04-29 11:32 ` Sergei Shtylyov
2013-04-30 21:41 ` Jeff Garzik
2013-05-07  8:38   ` [PATCH v2] " Alexander Gordeev
2013-05-14 18:56     ` Tejun Heo
2013-05-14 19:41       ` Alexander Gordeev
2013-05-14 20:44         ` Tejun Heo

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).