* [PATCH][iSCSI-SCST]: Clean up netlink socket correctly
@ 2009-01-30 18:20 Vladislav Bolkhovitin
0 siblings, 0 replies; only message in thread
From: Vladislav Bolkhovitin @ 2009-01-30 18:20 UTC (permalink / raw)
To: linux-scsi; +Cc: linux-kernel, scst-devel
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@powerkom-dd.de>
Signed-off-by: Vladislav Bolkhovitin <vst@vlnb.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);
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-01-30 18:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-30 18:20 [PATCH][iSCSI-SCST]: Clean up netlink socket correctly Vladislav Bolkhovitin
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.