summaryrefslogtreecommitdiffstats
path: root/sys/dev/iscsi/iscsi.c
diff options
context:
space:
mode:
authortrasz <trasz@FreeBSD.org>2014-05-07 06:31:45 +0000
committertrasz <trasz@FreeBSD.org>2014-05-07 06:31:45 +0000
commit26ce3cd6c7993f9ec2fec589b5283460be5d33e6 (patch)
tree367453c7b8f17d76215fd55d989d130772ff65d2 /sys/dev/iscsi/iscsi.c
parent76ebd34835b2e2e1d405517d42868a02764eec0d (diff)
downloadFreeBSD-src-26ce3cd6c7993f9ec2fec589b5283460be5d33e6.zip
FreeBSD-src-26ce3cd6c7993f9ec2fec589b5283460be5d33e6.tar.gz
MFC r264023:
Instead of "icltx" and "iclrx", use thread names with prefix from upper layer, so that one can see which side of the stack the threads are for. Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sys/dev/iscsi/iscsi.c')
-rw-r--r--sys/dev/iscsi/iscsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/iscsi/iscsi.c b/sys/dev/iscsi/iscsi.c
index df881ed..f0957c4 100644
--- a/sys/dev/iscsi/iscsi.c
+++ b/sys/dev/iscsi/iscsi.c
@@ -1633,7 +1633,7 @@ iscsi_ioctl_session_add(struct iscsi_softc *sc, struct iscsi_session_add *isa)
return (EBUSY);
}
- is->is_conn = icl_conn_new(&is->is_lock);
+ is->is_conn = icl_conn_new("iscsi", &is->is_lock);
is->is_conn->ic_receive = iscsi_receive_callback;
is->is_conn->ic_error = iscsi_error_callback;
is->is_conn->ic_prv0 = is;
OpenPOWER on IntegriCloud