svn commit: r276628 - stable/10/sys/dev/iscsi

Alexander Motin mav at FreeBSD.org
Sat Jan 3 18:27:05 UTC 2015


Author: mav
Date: Sat Jan  3 18:27:03 2015
New Revision: 276628
URL: https://svnweb.freebsd.org/changeset/base/276628

Log:
  MFC r274033 (by trasz):
  s/icl_pdu_new/icl_pdu_new_empty/g; no functional changes.

Modified:
  stable/10/sys/dev/iscsi/icl.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/iscsi/icl.c
==============================================================================
--- stable/10/sys/dev/iscsi/icl.c	Sat Jan  3 18:09:53 2015	(r276627)
+++ stable/10/sys/dev/iscsi/icl.c	Sat Jan  3 18:27:03 2015	(r276628)
@@ -152,7 +152,7 @@ icl_conn_receive(struct icl_conn *ic, si
 }
 
 static struct icl_pdu *
-icl_pdu_new(struct icl_conn *ic, int flags)
+icl_pdu_new_empty(struct icl_conn *ic, int flags)
 {
 	struct icl_pdu *ip;
 
@@ -197,7 +197,7 @@ icl_pdu_new(struct icl_conn *ic, int fla
 {
 	struct icl_pdu *ip;
 
-	ip = icl_pdu_new(ic, flags);
+	ip = icl_pdu_new_empty(ic, flags);
 	if (ip == NULL)
 		return (NULL);
 
@@ -547,7 +547,7 @@ icl_conn_receive_pdu(struct icl_conn *ic
 	if (ic->ic_receive_state == ICL_CONN_STATE_BHS) {
 		KASSERT(ic->ic_receive_pdu == NULL,
 		    ("ic->ic_receive_pdu != NULL"));
-		request = icl_pdu_new(ic, M_NOWAIT);
+		request = icl_pdu_new_empty(ic, M_NOWAIT);
 		if (request == NULL) {
 			ICL_DEBUG("failed to allocate PDU; "
 			    "dropping connection");


More information about the svn-src-all mailing list