[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[libvirt] [RFC 3/5]: Fix up the call to iscsiadm --mode session
- From: Chris Lalancette <clalance redhat com>
- To: libvir-list redhat com
- Subject: [libvirt] [RFC 3/5]: Fix up the call to iscsiadm --mode session
- Date: Thu, 12 Jun 2008 16:09:09 +0200
Older versions of iscsiadm didn't support the "-P 0" flag to the "iscsiadm
--mode session" command. However, just running "iscsiadm --mode session" seems
to work on all version of iscsiadm commands back to FC-6, so just use that.
Signed-off-by: Chris Lalancette <clalance redhat com>
--- libvirt.virLogcleanup/src/storage_backend_iscsi.c 2008-06-12 15:18:53.000000000 +0200
+++ libvirt/src/storage_backend_iscsi.c 2008-06-12 15:29:04.000000000 +0200
@@ -107,7 +107,7 @@ virStorageBackendISCSISession(virConnect
virStoragePoolObjPtr pool)
{
/*
- * # iscsiadm --mode session -P 0
+ * # iscsiadm --mode session
* tcp: [1] 192.168.122.170:3260,1 demo-tgt-b
* tcp: [2] 192.168.122.170:3260,1 demo-tgt-a
*
@@ -120,7 +120,7 @@ virStorageBackendISCSISession(virConnect
2,
};
const char *prog[] = {
- ISCSIADM, "--mode", "session", "-P", "0", NULL
+ ISCSIADM, "--mode", "session", NULL
};
char *session = NULL;
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]