svn commit: r288753 - stable/10/usr.sbin/ctld

Alexander Motin mav at FreeBSD.org
Mon Oct 5 09:16:02 UTC 2015


Author: mav
Date: Mon Oct  5 09:16:01 2015
New Revision: 288753
URL: https://svnweb.freebsd.org/changeset/base/288753

Log:
  MFC r287766: Add negotiation of iSCSIProtocolLevel to 2 (RFC7144).
  
  We may need to pass negotiated value to kernel level, but so far it is
  not necessary, since it does not use any new features without request.

Modified:
  stable/10/usr.sbin/ctld/login.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.sbin/ctld/login.c
==============================================================================
--- stable/10/usr.sbin/ctld/login.c	Mon Oct  5 09:15:11 2015	(r288752)
+++ stable/10/usr.sbin/ctld/login.c	Mon Oct  5 09:16:01 2015	(r288753)
@@ -601,6 +601,11 @@ login_negotiate_key(struct pdu *request,
 		keys_add(response_keys, name, "No");
 	} else if (strcmp(name, "IFMarker") == 0) {
 		keys_add(response_keys, name, "No");
+	} else if (strcmp(name, "iSCSIProtocolLevel") == 0) {
+		tmp = strtoul(value, NULL, 10);
+		if (tmp > 2)
+			tmp = 2;
+		keys_add_int(response_keys, name, tmp);
 	} else {
 		log_debugx("unknown key \"%s\"; responding "
 		    "with NotUnderstood", name);


More information about the svn-src-all mailing list