All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5] Xend: handle TapdiskException when creat device
@ 2014-03-22 18:28 yili
  2014-03-24 10:22 ` Wei Liu
  0 siblings, 1 reply; 2+ messages in thread
From: yili @ 2014-03-22 18:28 UTC (permalink / raw)
  To: Xen-devel; +Cc: wei.liu2, Yi Li

From: Yi Li <peteryili@tencent.com>

Handle the TapdiskException when creat device failed
for release some info.

Signed-off-by: Yi Li <peteryili@tencent.com>
---
 tools/python/xen/xend/XendDomainInfo.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py
index 8d4ff5c..2270ab1 100644
--- a/tools/python/xen/xend/XendDomainInfo.py
+++ b/tools/python/xen/xend/XendDomainInfo.py
@@ -65,7 +65,7 @@ from xen.xend.XendConstants import *
 from xen.xend.XendAPIConstants import *
 from xen.xend.XendCPUPool import XendCPUPool
 from xen.xend.server.DevConstants import xenbusState
-from xen.xend.server.BlktapController import TapdiskController
+from xen.xend.server.BlktapController import TapdiskController, TapdiskException
 
 from xen.xend.XendVMMetrics import XendVMMetrics
 
@@ -861,7 +861,7 @@ class XendDomainInfo:
                     # blktap1
                     dev_type = self.getBlockDeviceClass(devid)
                 self._waitForDevice(dev_type, devid)
-            except VmError, ex:
+            except (VmError, TapdiskException), ex:
                 del self.info['devices'][dev_uuid]
                 if dev_type == 'pci':
                     for dev in dev_config_dict['devs']:
-- 
1.6.0.2

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

* Re: [PATCH v5] Xend: handle TapdiskException when creat device
  2014-03-22 18:28 [PATCH v5] Xend: handle TapdiskException when creat device yili
@ 2014-03-24 10:22 ` Wei Liu
  0 siblings, 0 replies; 2+ messages in thread
From: Wei Liu @ 2014-03-24 10:22 UTC (permalink / raw)
  To: yili; +Cc: Ian Jackson, wei.liu2, Ian Campbell, Yi Li, Xen-devel

CC toolstack maintainer for you.
On Sat, Mar 22, 2014 at 02:28:21PM -0400, yili wrote:
> From: Yi Li <peteryili@tencent.com>
> 
> Handle the TapdiskException when creat device failed
> for release some info.
> 
> Signed-off-by: Yi Li <peteryili@tencent.com>
> ---
>  tools/python/xen/xend/XendDomainInfo.py |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py
> index 8d4ff5c..2270ab1 100644
> --- a/tools/python/xen/xend/XendDomainInfo.py
> +++ b/tools/python/xen/xend/XendDomainInfo.py
> @@ -65,7 +65,7 @@ from xen.xend.XendConstants import *
>  from xen.xend.XendAPIConstants import *
>  from xen.xend.XendCPUPool import XendCPUPool
>  from xen.xend.server.DevConstants import xenbusState
> -from xen.xend.server.BlktapController import TapdiskController
> +from xen.xend.server.BlktapController import TapdiskController, TapdiskException
>  
>  from xen.xend.XendVMMetrics import XendVMMetrics
>  
> @@ -861,7 +861,7 @@ class XendDomainInfo:
>                      # blktap1
>                      dev_type = self.getBlockDeviceClass(devid)
>                  self._waitForDevice(dev_type, devid)
> -            except VmError, ex:
> +            except (VmError, TapdiskException), ex:
>                  del self.info['devices'][dev_uuid]
>                  if dev_type == 'pci':
>                      for dev in dev_config_dict['devs']:
> -- 
> 1.6.0.2

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

end of thread, other threads:[~2014-03-24 10:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-22 18:28 [PATCH v5] Xend: handle TapdiskException when creat device yili
2014-03-24 10:22 ` Wei Liu

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.