From 1224a5a04961f7042603c1ba50640f30be0c54f0 Mon Sep 17 00:00:00 2001 From: Ben Walker Date: Tue, 30 Apr 2019 13:44:59 -0700 Subject: [PATCH] iscsi: Remove out-dated comment above spdk_iscsi_conn_construct This went stale and the code is currently in flux. Change-Id: Ib0b2171f253db0f54d41573c07668eb3b2bd83b4 Signed-off-by: Ben Walker Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/452781 Tested-by: SPDK CI Jenkins Reviewed-by: Shuhei Matsumoto Reviewed-by: Darek Stojaczyk Reviewed-by: Jim Harris --- lib/iscsi/conn.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/lib/iscsi/conn.c b/lib/iscsi/conn.c index 4c3c765ff..27fb2f405 100644 --- a/lib/iscsi/conn.c +++ b/lib/iscsi/conn.c @@ -204,20 +204,6 @@ iscsi_poll_group_remove_conn(struct spdk_iscsi_conn *conn) STAILQ_REMOVE(&poll_group->connections, conn, spdk_iscsi_conn, link); } -/** - * \brief Create an iSCSI connection from the given parameters and schedule it - * on a reactor. - * - * \code - * - * # identify reactor where the new connections work item will be scheduled - * reactor = spdk_iscsi_conn_allocate_reactor() - * allocate spdk_iscsi_conn object - * initialize spdk_iscsi_conn object - * schedule iSCSI connection work item on reactor - * - * \endcode - */ int spdk_iscsi_conn_construct(struct spdk_iscsi_portal *portal, struct spdk_sock *sock)