[<prev] [next>] [day] [month] [year] [list]
Message-ID: <498344F0.3010109@vlnb.net>
Date: Fri, 30 Jan 2009 21:20:32 +0300
From: Vladislav Bolkhovitin <vst@...b.net>
To: linux-scsi@...r.kernel.org
CC: linux-kernel@...r.kernel.org, scst-devel@...ts.sourceforge.net
Subject: [PATCH][iSCSI-SCST]: Clean up netlink socket correctly
2.6.25 introduced netlink_socket_release(), to be used to clean up netlink sockets
correctly taking care of namespaces. Fix now wrong sock_release() call in iSCSI-SCST.
Signed-off-by: Arne Redlich <agr@...erkom-dd.de>
Signed-off-by: Vladislav Bolkhovitin <vst@...b.net>
event.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
Index: iscsi-scst/kernel/event.c
===================================================================
--- iscsi-scst/kernel/event.c (revision 648)
+++ iscsi-scst/kernel/event.c (working copy)
@@ -142,6 +142,10 @@ int __init event_init(void)
void event_exit(void)
{
- if (nl)
- sock_release(nl->sk_socket);
+ netlink_kernel_release(nl);
}
--
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