Blame SOURCES/0005-update-initscripts-and-docs.patch

221d9a
From 6602f08bfcc2b2e75d1a58671cb160c96cf2d99b Mon Sep 17 00:00:00 2001
62f653
From: Chris Leech <cleech@redhat.com>
62f653
Date: Mon, 19 Nov 2012 16:37:13 -0800
221d9a
Subject: [PATCH] update initscripts and docs
62f653
62f653
---
62f653
 README          | 10 ++++------
62f653
 etc/iscsid.conf | 21 ++++++++++-----------
62f653
 usr/idbm.c      |  4 ++++
62f653
 3 files changed, 18 insertions(+), 17 deletions(-)
62f653
62f653
diff --git a/README b/README
221d9a
index 2499d9a..c05814a 100644
62f653
--- a/README
62f653
+++ b/README
62f653
@@ -77,11 +77,6 @@ the cache sync command will fail.
62f653
 - iscsiadm's -P 3 option will not print out scsi devices.
62f653
 - iscsid will not automatically online devices.
62f653
 
62f653
-You need to enable "Cryptographic API" under "Cryptographic options" in the
62f653
-kernel config. And you must enable "CRC32c CRC algorithm" even if
62f653
-you do not use header or data digests. They are the kernel options
62f653
-CONFIG_CRYPTO and CONFIG_CRYPTO_CRC32C, respectively.
62f653
-
62f653
 The userspace components iscsid, iscsiadm and iscsistart require the
62f653
 open-isns library, which can be found here:
62f653
 	https://github.com/gonzoleeman/open-isns/releases
62f653
@@ -1151,7 +1146,7 @@ Red Hat or Fedora:
62f653
 -----------------
62f653
 To start open-iscsi in Red Hat/Fedora you can do:
62f653
 
62f653
-	service open-iscsi start
62f653
+	service iscsi start
62f653
 
62f653
 To get open-iscsi to automatically start at run time you may have to
62f653
 run:
62f653
@@ -1353,6 +1348,9 @@ iscsid will only perform rediscovery when it gets a SCN from the server.
62f653
 #   linux-isns (SLES's iSNS server) where it sometimes does not send SCN
62f653
 #   events in the proper format, so they may not get handled.
62f653
 
62f653
+To set the startup value, so that nodes are not logged into automatically
62f653
+use the value "manual".
62f653
+
62f653
 Examples
62f653
 --------
62f653
 
62f653
diff --git a/etc/iscsid.conf b/etc/iscsid.conf
221d9a
index 70985af..2f3a28c 100644
62f653
--- a/etc/iscsid.conf
62f653
+++ b/etc/iscsid.conf
62f653
@@ -19,7 +19,7 @@
62f653
 # the time then leave this attribute commented out.
62f653
 #
62f653
 # Default for Fedora and RHEL. (uncomment to activate).
62f653
-# iscsid.startup = /bin/systemctl start iscsid.socket iscsiuio.soccket
62f653
+iscsid.startup = /bin/systemctl start iscsid.socket iscsiuio.socket
62f653
 # 
62f653
 # Default if you are not using systemd (uncomment to activate)
62f653
 # iscsid.startup = /usr/bin/service start iscsid
62f653
@@ -41,8 +41,8 @@
62f653
 # To request that the iscsi initd scripts startup a session set to "automatic".
62f653
 # node.startup = automatic
62f653
 #
62f653
-# To manually startup the session set to "manual". The default is manual.
62f653
-node.startup = manual
62f653
+# To manually startup the session set to "manual". The default is automatic.
62f653
+node.startup = automatic
62f653
 
62f653
 # For "automatic" startup nodes, setting this to "Yes" will try logins on each
62f653
 # available iface until one succeeds, and then stop.  The default "No" will try
62f653
@@ -264,28 +264,27 @@ node.conn[0].iscsi.MaxXmitDataSegmentLength = 0
62f653
 discovery.sendtargets.iscsi.MaxRecvDataSegmentLength = 32768
62f653
 
62f653
 # To allow the targets to control the setting of the digest checking,
62f653
-# with the initiator requesting a preference of enabling the checking, uncomment# one or both of the following lines:
62f653
+# with the initiator requesting a preference of enabling the checking, uncomment
62f653
+# the following lines (Data digests are not supported.):
62f653
 #node.conn[0].iscsi.HeaderDigest = CRC32C,None
62f653
-#node.conn[0].iscsi.DataDigest = CRC32C,None
62f653
+
62f653
 #
62f653
 # To allow the targets to control the setting of the digest checking,
62f653
 # with the initiator requesting a preference of disabling the checking,
62f653
-# uncomment one or both of the following lines:
62f653
+# uncomment the following line:
62f653
 #node.conn[0].iscsi.HeaderDigest = None,CRC32C
62f653
-#node.conn[0].iscsi.DataDigest = None,CRC32C
62f653
 #
62f653
 # To enable CRC32C digest checking for the header and/or data part of
62f653
-# iSCSI PDUs, uncomment one or both of the following lines:
62f653
+# iSCSI PDUs, uncomment the following line:
62f653
 #node.conn[0].iscsi.HeaderDigest = CRC32C
62f653
-#node.conn[0].iscsi.DataDigest = CRC32C
62f653
 #
62f653
 # To disable digest checking for the header and/or data part of
62f653
-# iSCSI PDUs, uncomment one or both of the following lines:
62f653
+# iSCSI PDUs, uncomment the following line:
62f653
 #node.conn[0].iscsi.HeaderDigest = None
62f653
-#node.conn[0].iscsi.DataDigest = None
62f653
 #
62f653
 # The default is to never use DataDigests or HeaderDigests.
62f653
 #
62f653
+node.conn[0].iscsi.HeaderDigest = None
62f653
 
62f653
 # For multipath configurations, you may want more than one session to be
62f653
 # created on each iface record.  If node.session.nr_sessions is greater
62f653
diff --git a/usr/idbm.c b/usr/idbm.c
221d9a
index a2332cc..aed08f2 100644
62f653
--- a/usr/idbm.c
62f653
+++ b/usr/idbm.c
221d9a
@@ -521,9 +521,13 @@ idbm_recinfo_node(node_rec_t *r, recinfo_t *ri)
62f653
 				 IDBM_SHOW, "None", "CRC32C", "CRC32C,None",
62f653
 				 "None,CRC32C", num, 1);
62f653
 		sprintf(key, CONN_DATA_DIGEST, i);
62f653
+
62f653
+#if 0
62f653
+We do not support data digests
62f653
 		__recinfo_int_o4(key, ri, r, conn[i].iscsi.DataDigest, IDBM_SHOW,
62f653
 				 "None", "CRC32C", "CRC32C,None",
62f653
 				 "None,CRC32C", num, 1);
62f653
+#endif
62f653
 		sprintf(key, CONN_IFMARKER, i);
62f653
 		__recinfo_int_o2(key, ri, r, conn[i].iscsi.IFMarker, IDBM_SHOW,
62f653
 				"No", "Yes", num, 1);
62f653
-- 
221d9a
2.21.0
62f653