Module Name:    src
Committed By:   pooka
Date:           Tue Jan 26 01:06:23 UTC 2010

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

Log Message:
Include sys/atomic.h now that it's used but gets stealth-included
only on some archs.


To generate a diff of this commit:
cvs rdiff -u -r1.154 -r1.155 src/sys/net/bpf.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/bpf.c
diff -u src/sys/net/bpf.c:1.154 src/sys/net/bpf.c:1.155
--- src/sys/net/bpf.c:1.154	Mon Jan 25 22:18:17 2010
+++ src/sys/net/bpf.c	Tue Jan 26 01:06:23 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: bpf.c,v 1.154 2010/01/25 22:18:17 pooka Exp $	*/
+/*	$NetBSD: bpf.c,v 1.155 2010/01/26 01:06:23 pooka Exp $	*/
 
 /*
  * Copyright (c) 1990, 1991, 1993
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bpf.c,v 1.154 2010/01/25 22:18:17 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bpf.c,v 1.155 2010/01/26 01:06:23 pooka Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_bpf.h"
@@ -60,6 +60,7 @@
 #include <sys/stat.h>
 #include <sys/module.h>
 #include <sys/once.h>
+#include <sys/atomic.h>
 
 #include <sys/file.h>
 #include <sys/filedesc.h>

Reply via email to