Module Name: src
Committed By: rin
Date: Sun Aug 18 12:35:47 UTC 2024
Modified Files:
src/sys/net: if_tap.c
Log Message:
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.133 -r1.134 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.133 src/sys/net/if_tap.c:1.134
--- src/sys/net/if_tap.c:1.133 Fri Jul 5 04:31:53 2024
+++ src/sys/net/if_tap.c Sun Aug 18 12:35:47 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: if_tap.c,v 1.133 2024/07/05 04:31:53 rin Exp $ */
+/* $NetBSD: if_tap.c,v 1.134 2024/08/18 12:35:47 rin 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.133 2024/07/05 04:31:53 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_tap.c,v 1.134 2024/08/18 12:35:47 rin Exp $");
#if defined(_KERNEL_OPT)
-
#include "opt_modular.h"
+#include "opt_net_mpsafe.h"
#endif
#include <sys/param.h>