[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1229814133.4560.202.camel@haakon2.linux-iscsi.org>
Date: Sat, 20 Dec 2008 15:02:13 -0800
From: "Nicholas A. Bellinger" <nab@...ux-iscsi.org>
To: "Linux-iSCSI.org Target Dev"
<linux-iscsi-target-dev@...glegroups.com>
Cc: LKML <linux-kernel@...r.kernel.org>,
linux-scsi <linux-scsi@...r.kernel.org>
Subject: [PATCH 5/8] [LIO-Target]: Add transport_free_session() in
iscsi_target_login_thread() exception path
>>From 5717324513c2db0000d15af92083614aa28cee8b Mon Sep 17 00:00:00 2001
From: Nicholas Bellinger <nab@...ux-iscsi.org>
Date: Sat, 20 Dec 2008 02:55:22 -0800
Subject: [PATCH 5/8] [LIO-Target]: Add transport_free_session() in iscsi_target_login_thread() exception path
This patch adds transport_free_session() usage to iscsi_target_login_thread():new_sess_out
label to properly release the iscsi_session_t->se_sess allocated in iscsi_login_zero_tsih_s1()
with transport_init_session().
Signed-off-by: Nicholas A. Bellinger <nab@...ux-iscsi.org>
---
drivers/lio-core/iscsi_target_login.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/drivers/lio-core/iscsi_target_login.c b/drivers/lio-core/iscsi_target_login.c
index 40d9b65..53c4ae5 100644
--- a/drivers/lio-core/iscsi_target_login.c
+++ b/drivers/lio-core/iscsi_target_login.c
@@ -1240,7 +1240,8 @@ new_sess_out:
if (!zero_tsih || !SESS(conn))
goto old_sess_out;
-
+ if (SESS(conn)->se_sess)
+ transport_free_session(SESS(conn)->se_sess);
if (SESS(conn)->sess_ops)
kfree(SESS(conn)->sess_ops);
if (SESS(conn))
--
1.5.4.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists