lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Wed, 3 Apr 2013 17:01:18 +0100
From:	Stefano Stabellini <stefano.stabellini@...citrix.com>
To:	Jan Beulich <JBeulich@...e.com>
CC:	Konrad Rzeszutek Wilk <konrad.wilk@...cle.com>,
	Stefano Stabellini <Stefano.Stabellini@...citrix.com>,
	xen-devel <xen-devel@...ts.xen.org>,
	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] xen: drop tracking of IRQ vector

On Wed, 3 Apr 2013, Jan Beulich wrote:
> For quite a few Xen versions, this wasn't the IRQ vector anymore
> anyway, and it is not being used by the kernel for anything. Hence
> drop the field from struct irq_info, and respective function
> parameters.
> 
> Signed-off-by: Jan Beulich <jbeulich@...e.com>
> Cc: Stefano Stabellini <stefano.stabellini@...citrix.com>


Acked-by: Stefano Stabellini <stefano.stabellini@...citrix.com>

> ---
>  arch/x86/pci/xen.c   |    6 +++---
>  drivers/xen/events.c |   13 ++++---------
>  include/xen/events.h |    3 +--
>  3 files changed, 8 insertions(+), 14 deletions(-)
> 
> --- 3.9-rc5/arch/x86/pci/xen.c
> +++ 3.9-rc5-xen-irq-no-vector/arch/x86/pci/xen.c
> @@ -177,7 +177,7 @@ static int xen_setup_msi_irqs(struct pci
>  		goto error;
>  	i = 0;
>  	list_for_each_entry(msidesc, &dev->msi_list, list) {
> -		irq = xen_bind_pirq_msi_to_irq(dev, msidesc, v[i], 0,
> +		irq = xen_bind_pirq_msi_to_irq(dev, msidesc, v[i],
>  					       (type == PCI_CAP_ID_MSIX) ?
>  					       "pcifront-msi-x" :
>  					       "pcifront-msi",
> @@ -244,7 +244,7 @@ static int xen_hvm_setup_msi_irqs(struct
>  			dev_dbg(&dev->dev,
>  				"xen: msi already bound to pirq=%d\n", pirq);
>  		}
> -		irq = xen_bind_pirq_msi_to_irq(dev, msidesc, pirq, 0,
> +		irq = xen_bind_pirq_msi_to_irq(dev, msidesc, pirq,
>  					       (type == PCI_CAP_ID_MSIX) ?
>  					       "msi-x" : "msi",
>  					       DOMID_SELF);
> @@ -326,7 +326,7 @@ static int xen_initdom_setup_msi_irqs(st
>  		}
>  
>  		ret = xen_bind_pirq_msi_to_irq(dev, msidesc,
> -					       map_irq.pirq, map_irq.index,
> +					       map_irq.pirq,
>  					       (type == PCI_CAP_ID_MSIX) ?
>  					       "msi-x" : "msi",
>  						domid);
> --- 3.9-rc5/drivers/xen/events.c
> +++ 3.9-rc5-xen-irq-no-vector/drivers/xen/events.c
> @@ -85,8 +85,7 @@ enum xen_irq_type {
>   * event channel - irq->event channel mapping
>   * cpu - cpu this event channel is bound to
>   * index - type-specific information:
> - *    PIRQ - vector, with MSB being "needs EIO", or physical IRQ of the HVM
> - *           guest, or GSI (real passthrough IRQ) of the device.
> + *    PIRQ - physical IRQ, GSI, flags, and owner domain
>   *    VIRQ - virq number
>   *    IPI - IPI vector
>   *    EVTCHN -
> @@ -105,7 +104,6 @@ struct irq_info {
>  		struct {
>  			unsigned short pirq;
>  			unsigned short gsi;
> -			unsigned char vector;
>  			unsigned char flags;
>  			uint16_t domid;
>  		} pirq;
> @@ -211,7 +209,6 @@ static void xen_irq_info_pirq_init(unsig
>  				   unsigned short evtchn,
>  				   unsigned short pirq,
>  				   unsigned short gsi,
> -				   unsigned short vector,
>  				   uint16_t domid,
>  				   unsigned char flags)
>  {
> @@ -221,7 +218,6 @@ static void xen_irq_info_pirq_init(unsig
>  
>  	info->u.pirq.pirq = pirq;
>  	info->u.pirq.gsi = gsi;
> -	info->u.pirq.vector = vector;
>  	info->u.pirq.domid = domid;
>  	info->u.pirq.flags = flags;
>  }
> @@ -714,7 +710,7 @@ int xen_bind_pirq_gsi_to_irq(unsigned gs
>  		goto out;
>  	}
>  
> -	xen_irq_info_pirq_init(irq, 0, pirq, gsi, irq_op.vector, DOMID_SELF,
> +	xen_irq_info_pirq_init(irq, 0, pirq, gsi, DOMID_SELF,
>  			       shareable ? PIRQ_SHAREABLE : 0);
>  
>  	pirq_query_unmask(irq);
> @@ -762,8 +758,7 @@ int xen_allocate_pirq_msi(struct pci_dev
>  }
>  
>  int xen_bind_pirq_msi_to_irq(struct pci_dev *dev, struct msi_desc *msidesc,
> -			     int pirq, int vector, const char *name,
> -			     domid_t domid)
> +			     int pirq, const char *name, domid_t domid)
>  {
>  	int irq, ret;
>  
> @@ -776,7 +771,7 @@ int xen_bind_pirq_msi_to_irq(struct pci_
>  	irq_set_chip_and_handler_name(irq, &xen_pirq_chip, handle_edge_irq,
>  			name);
>  
> -	xen_irq_info_pirq_init(irq, 0, pirq, 0, vector, domid, 0);
> +	xen_irq_info_pirq_init(irq, 0, pirq, 0, domid, 0);
>  	ret = irq_set_msi_desc(irq, msidesc);
>  	if (ret < 0)
>  		goto error_irq;
> --- 3.9-rc5/include/xen/events.h
> +++ 3.9-rc5-xen-irq-no-vector/include/xen/events.h
> @@ -90,8 +90,7 @@ int xen_bind_pirq_gsi_to_irq(unsigned gs
>  int xen_allocate_pirq_msi(struct pci_dev *dev, struct msi_desc *msidesc);
>  /* Bind an PSI pirq to an irq. */
>  int xen_bind_pirq_msi_to_irq(struct pci_dev *dev, struct msi_desc *msidesc,
> -			     int pirq, int vector, const char *name,
> -			     domid_t domid);
> +			     int pirq, const char *name, domid_t domid);
>  #endif
>  
>  /* De-allocates the above mentioned physical interrupt. */
> 
> 
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ