Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 5 Oct 2015 09:16:01 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r288753 - stable/10/usr.sbin/ctld
Message-ID:  <201510050916.t959G1Wl028026@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510050916.t959G1Wl028026>