|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH] pvscsi xend python syntax problem
xen-unstable changeset 17959:6ae87b27cc contains a syntax error in
vscsi_get_scsidevices:
File
"/local/scratch/xenrt/xenrtbuildH17919/build/dist/install/usr/lib/python/xen/util/vscsi_util.py",
line 126, in vscsi_get_scsidevices
UnboundLocalError: local variable 'sg' referenced before assignment
This is because the loop tries to add the device, including
information about its sg, without first setting sg. I've grepped the
code and setting sg to None seems the safest bet.
Ian.
Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>
diff -r 4129f0f2f2ba tools/python/xen/util/vscsi_util.py
--- a/tools/python/xen/util/vscsi_util.py Fri Oct 17 14:15:37 2008 +0100
+++ b/tools/python/xen/util/vscsi_util.py Mon Oct 20 14:34:31 2008 +0100
@@ -122,6 +122,8 @@ def vscsi_get_scsidevices():
scsi_id = '-'
else:
scsi_id = lines[0]
+ else:
+ sg = None
devices.append([hctl, block, sg, scsi_id])
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [PATCH] pvscsi xend python syntax problem,
Ian Jackson <=
|
|
|
|
|