Module Name: src
Committed By: martin
Date: Thu Sep 12 20:08:52 UTC 2024
Modified Files:
src/sys/net [netbsd-10]: if_tap.c
Log Message:
Pull up following revision(s) (requested by rin in ticket #852):
sys/net/if_tap.c: revision 1.134
if_tap: Explicitly include "opt_net_mpsafe.h", NFC
because it was included via <net/if.h> anyway.
To generate a diff of this commit:
cvs rdiff -u -r1.127.4.2 -r1.127.4.3 src/sys/net/if_tap.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_tap.c
diff -u src/sys/net/if_tap.c:1.127.4.2 src/sys/net/if_tap.c:1.127.4.3
--- src/sys/net/if_tap.c:1.127.4.2 Wed Sep 11 16:12:49 2024
+++ src/sys/net/if_tap.c Thu Sep 12 20:08:51 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: if_tap.c,v 1.127.4.2 2024/09/11 16:12:49 martin Exp $ */
+/* $NetBSD: if_tap.c,v 1.127.4.3 2024/09/12 20:08:51 martin Exp $ */
/*
* Copyright (c) 2003, 2004, 2008, 2009 The NetBSD Foundation.
@@ -33,11 +33,11 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_tap.c,v 1.127.4.2 2024/09/11 16:12:49 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_tap.c,v 1.127.4.3 2024/09/12 20:08:51 martin Exp $");
#if defined(_KERNEL_OPT)
-
#include "opt_modular.h"
+#include "opt_net_mpsafe.h"
#endif
#include <sys/param.h>