Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/net Add missing #include <sys/kmem.h>



details:   https://anonhg.NetBSD.org/src/rev/3947546e69e5
branches:  trunk
changeset: 459633:3947546e69e5
user:      ozaki-r <ozaki-r%NetBSD.org@localhost>
date:      Thu Sep 19 04:46:29 2019 +0000

description:
Add missing #include <sys/kmem.h>

diffstat:

 sys/net/route.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r b92ce62d28ba -r 3947546e69e5 sys/net/route.c
--- a/sys/net/route.c   Thu Sep 19 04:09:34 2019 +0000
+++ b/sys/net/route.c   Thu Sep 19 04:46:29 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: route.c,v 1.220 2019/09/19 04:08:29 ozaki-r Exp $      */
+/*     $NetBSD: route.c,v 1.221 2019/09/19 04:46:29 ozaki-r Exp $      */
 
 /*-
  * Copyright (c) 1998, 2008 The NetBSD Foundation, Inc.
@@ -97,7 +97,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: route.c,v 1.220 2019/09/19 04:08:29 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: route.c,v 1.221 2019/09/19 04:46:29 ozaki-r Exp $");
 
 #include <sys/param.h>
 #ifdef RTFLUSH_DEBUG
@@ -119,6 +119,7 @@
 #include <sys/rwlock.h>
 #include <sys/mutex.h>
 #include <sys/cpu.h>
+#include <sys/kmem.h>
 
 #include <net/if.h>
 #include <net/if_dl.h>



Home | Main Index | Thread Index | Old Index