Module Name: src
Committed By: ozaki-r
Date: Wed Oct 25 04:17:34 UTC 2017
Modified Files:
src/sys/net: if_bridge.c
Log Message:
Don't free sc_rthash twice
To generate a diff of this commit:
cvs rdiff -u -r1.136 -r1.137 src/sys/net/if_bridge.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_bridge.c
diff -u src/sys/net/if_bridge.c:1.136 src/sys/net/if_bridge.c:1.137
--- src/sys/net/if_bridge.c:1.136 Mon Oct 23 09:22:51 2017
+++ src/sys/net/if_bridge.c Wed Oct 25 04:17:34 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: if_bridge.c,v 1.136 2017/10/23 09:22:51 msaitoh Exp $ */
+/* $NetBSD: if_bridge.c,v 1.137 2017/10/25 04:17:34 ozaki-r Exp $ */
/*
* Copyright 2001 Wasabi Systems, Inc.
@@ -80,7 +80,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_bridge.c,v 1.136 2017/10/23 09:22:51 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_bridge.c,v 1.137 2017/10/25 04:17:34 ozaki-r Exp $");
#ifdef _KERNEL_OPT
#include "opt_bridge_ipf.h"
@@ -494,7 +494,6 @@ bridge_clone_destroy(struct ifnet *ifp)
callout_destroy(&sc->sc_brcallout);
callout_destroy(&sc->sc_bstpcallout);
workqueue_destroy(sc->sc_rtage_wq);
- kmem_free(sc->sc_rthash, sizeof(*sc->sc_rthash) * BRIDGE_RTHASH_SIZE);
kmem_free(sc, sizeof(*sc));
return 0;