All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86/xen : Fix the wrong check in pciback
@ 2012-11-22  2:20 Yang Zhang
  2012-12-13  8:25 ` Zhang, Yang Z
  2013-01-11 18:00 ` Konrad Rzeszutek Wilk
  0 siblings, 2 replies; 4+ messages in thread
From: Yang Zhang @ 2012-11-22  2:20 UTC (permalink / raw)
  To: xen-devel; +Cc: Yang Zhang, konrad

From: Yang Zhang <yang.z.zhang@Intel.com>

Fix the wrong check in pciback.

Signed-off-by: Yang Zhang <yang.z.zhang@Intel.com>
---
 drivers/xen/xen-pciback/pciback.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/xen/xen-pciback/pciback.h b/drivers/xen/xen-pciback/pciback.h
index a7def01..f72af87 100644
--- a/drivers/xen/xen-pciback/pciback.h
+++ b/drivers/xen/xen-pciback/pciback.h
@@ -124,7 +124,7 @@ static inline int xen_pcibk_add_pci_dev(struct xen_pcibk_device *pdev,
 static inline void xen_pcibk_release_pci_dev(struct xen_pcibk_device *pdev,
 					     struct pci_dev *dev)
 {
-	if (xen_pcibk_backend && xen_pcibk_backend->free)
+	if (xen_pcibk_backend && xen_pcibk_backend->release)
 		return xen_pcibk_backend->release(pdev, dev);
 }
 
-- 
1.7.1.1

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

* Re: [PATCH] x86/xen : Fix the wrong check in pciback
  2012-11-22  2:20 [PATCH] x86/xen : Fix the wrong check in pciback Yang Zhang
@ 2012-12-13  8:25 ` Zhang, Yang Z
  2012-12-21 19:21   ` Konrad Rzeszutek Wilk
  2013-01-11 18:00 ` Konrad Rzeszutek Wilk
  1 sibling, 1 reply; 4+ messages in thread
From: Zhang, Yang Z @ 2012-12-13  8:25 UTC (permalink / raw)
  To: Zhang, Yang Z, xen-devel; +Cc: konrad

Zhang, Yang Z wrote on 2012-11-22:
> From: Yang Zhang <yang.z.zhang@Intel.com>
> 
> Fix the wrong check in pciback.
> 
> Signed-off-by: Yang Zhang <yang.z.zhang@Intel.com>
> ---
>  drivers/xen/xen-pciback/pciback.h |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> diff --git a/drivers/xen/xen-pciback/pciback.h
> b/drivers/xen/xen-pciback/pciback.h index a7def01..f72af87 100644 ---
> a/drivers/xen/xen-pciback/pciback.h +++
> b/drivers/xen/xen-pciback/pciback.h @@ -124,7 +124,7 @@ static inline
> int xen_pcibk_add_pci_dev(struct xen_pcibk_device *pdev,
>  static inline void xen_pcibk_release_pci_dev(struct xen_pcibk_device *pdev,
>  					     struct pci_dev *dev)
>  {
> -	if (xen_pcibk_backend && xen_pcibk_backend->free)
> +	if (xen_pcibk_backend && xen_pcibk_backend->release)
>  		return xen_pcibk_backend->release(pdev, dev);
>  }
> --
> 1.7.1.1
Any comment?

Best regards,
Yang

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

* Re: [PATCH] x86/xen : Fix the wrong check in pciback
  2012-12-13  8:25 ` Zhang, Yang Z
@ 2012-12-21 19:21   ` Konrad Rzeszutek Wilk
  0 siblings, 0 replies; 4+ messages in thread
From: Konrad Rzeszutek Wilk @ 2012-12-21 19:21 UTC (permalink / raw)
  To: Zhang, Yang Z; +Cc: konrad, xen-devel

On Thu, Dec 13, 2012 at 08:25:54AM +0000, Zhang, Yang Z wrote:
> Zhang, Yang Z wrote on 2012-11-22:
> > From: Yang Zhang <yang.z.zhang@Intel.com>
> > 
> > Fix the wrong check in pciback.
> > 
> > Signed-off-by: Yang Zhang <yang.z.zhang@Intel.com>
> > ---
> >  drivers/xen/xen-pciback/pciback.h |    2 +-
> >  1 files changed, 1 insertions(+), 1 deletions(-)
> > diff --git a/drivers/xen/xen-pciback/pciback.h
> > b/drivers/xen/xen-pciback/pciback.h index a7def01..f72af87 100644 ---
> > a/drivers/xen/xen-pciback/pciback.h +++
> > b/drivers/xen/xen-pciback/pciback.h @@ -124,7 +124,7 @@ static inline
> > int xen_pcibk_add_pci_dev(struct xen_pcibk_device *pdev,
> >  static inline void xen_pcibk_release_pci_dev(struct xen_pcibk_device *pdev,
> >  					     struct pci_dev *dev)
> >  {
> > -	if (xen_pcibk_backend && xen_pcibk_backend->free)
> > +	if (xen_pcibk_backend && xen_pcibk_backend->release)
> >  		return xen_pcibk_backend->release(pdev, dev);
> >  }
> > --
> > 1.7.1.1
> Any comment?

Hm, I don't seem to have it in my queue, weird. Putting it in now.
> 
> Best regards,
> Yang
> 
> 
> 

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

* Re: [PATCH] x86/xen : Fix the wrong check in pciback
  2012-11-22  2:20 [PATCH] x86/xen : Fix the wrong check in pciback Yang Zhang
  2012-12-13  8:25 ` Zhang, Yang Z
@ 2013-01-11 18:00 ` Konrad Rzeszutek Wilk
  1 sibling, 0 replies; 4+ messages in thread
From: Konrad Rzeszutek Wilk @ 2013-01-11 18:00 UTC (permalink / raw)
  To: Yang Zhang; +Cc: konrad, xen-devel

On Thu, Nov 22, 2012 at 10:20:23AM +0800, Yang Zhang wrote:
> From: Yang Zhang <yang.z.zhang@Intel.com>
> 
> Fix the wrong check in pciback.

Applied
> 
> Signed-off-by: Yang Zhang <yang.z.zhang@Intel.com>
> ---
>  drivers/xen/xen-pciback/pciback.h |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/xen/xen-pciback/pciback.h b/drivers/xen/xen-pciback/pciback.h
> index a7def01..f72af87 100644
> --- a/drivers/xen/xen-pciback/pciback.h
> +++ b/drivers/xen/xen-pciback/pciback.h
> @@ -124,7 +124,7 @@ static inline int xen_pcibk_add_pci_dev(struct xen_pcibk_device *pdev,
>  static inline void xen_pcibk_release_pci_dev(struct xen_pcibk_device *pdev,
>  					     struct pci_dev *dev)
>  {
> -	if (xen_pcibk_backend && xen_pcibk_backend->free)
> +	if (xen_pcibk_backend && xen_pcibk_backend->release)
>  		return xen_pcibk_backend->release(pdev, dev);
>  }
>  
> -- 
> 1.7.1.1
> 

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

end of thread, other threads:[~2013-01-11 18:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-22  2:20 [PATCH] x86/xen : Fix the wrong check in pciback Yang Zhang
2012-12-13  8:25 ` Zhang, Yang Z
2012-12-21 19:21   ` Konrad Rzeszutek Wilk
2013-01-11 18:00 ` Konrad Rzeszutek Wilk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.