Module Name:    src
Committed By:   pgoyette
Date:           Mon Mar 25 01:01:29 UTC 2019

Modified Files:
        src/sys/net: if_tun.c

Log Message:
And revert both of the previous.  It seems that the structure has
already been removed from the list in the find_zunit() code.

So now, off to really find out why the module won't unload.


To generate a diff of this commit:
cvs rdiff -u -r1.149 -r1.150 src/sys/net/if_tun.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/net/if_tun.c
diff -u src/sys/net/if_tun.c:1.149 src/sys/net/if_tun.c:1.150
--- src/sys/net/if_tun.c:1.149	Mon Mar 25 00:59:04 2019
+++ src/sys/net/if_tun.c	Mon Mar 25 01:01:29 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_tun.c,v 1.149 2019/03/25 00:59:04 pgoyette Exp $	*/
+/*	$NetBSD: if_tun.c,v 1.150 2019/03/25 01:01:29 pgoyette Exp $	*/
 
 /*
  * Copyright (c) 1988, Julian Onions <j...@cs.nott.ac.uk>
@@ -19,7 +19,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_tun.c,v 1.149 2019/03/25 00:59:04 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_tun.c,v 1.150 2019/03/25 01:01:29 pgoyette Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -369,7 +369,6 @@ tunclose(dev_t dev, int flag, int mode,
 		softint_disestablish(tp->tun_osih);
 		softint_disestablish(tp->tun_isih);
 		mutex_destroy(&tp->tun_lock);
-		LIST_REMOVE(tp, tunz_list);
 		kmem_free(tp, sizeof(*tp));
 		return 0;
 	}

Reply via email to