Module Name:    src
Committed By:   joerg
Date:           Sat May 30 19:14:46 UTC 2015

Modified Files:
        src/sys/arch/xen/xen: xenevt.c
        src/sys/dev/filemon: filemon.c
        src/sys/net: bpf.c

Log Message:
Improve wording.


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/sys/arch/xen/xen/xenevt.c
cvs rdiff -u -r1.9 -r1.10 src/sys/dev/filemon/filemon.c
cvs rdiff -u -r1.190 -r1.191 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/arch/xen/xen/xenevt.c
diff -u src/sys/arch/xen/xen/xenevt.c:1.42 src/sys/arch/xen/xen/xenevt.c:1.43
--- src/sys/arch/xen/xen/xenevt.c:1.42	Fri May 22 10:34:13 2015
+++ src/sys/arch/xen/xen/xenevt.c	Sat May 30 19:14:46 2015
@@ -1,4 +1,4 @@
-/*      $NetBSD: xenevt.c,v 1.42 2015/05/22 10:34:13 bouyer Exp $      */
+/*      $NetBSD: xenevt.c,v 1.43 2015/05/30 19:14:46 joerg Exp $      */
 
 /*
  * Copyright (c) 2005 Manuel Bouyer.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xenevt.c,v 1.42 2015/05/22 10:34:13 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xenevt.c,v 1.43 2015/05/30 19:14:46 joerg Exp $");
 
 #include "opt_xen.h"
 #include <sys/param.h>
@@ -300,7 +300,7 @@ xenevtopen(dev_t dev, int flags, int mod
 
 	switch(minor(dev)) {
 	case DEV_EVT:
-		/* falloc() will use the descriptor for us. */
+		/* falloc() will fill in the descriptor for us. */
 		if ((error = fd_allocfile(&fp, &fd)) != 0)
 			return error;
 

Index: src/sys/dev/filemon/filemon.c
diff -u src/sys/dev/filemon/filemon.c:1.9 src/sys/dev/filemon/filemon.c:1.10
--- src/sys/dev/filemon/filemon.c:1.9	Thu May 21 12:00:59 2015
+++ src/sys/dev/filemon/filemon.c	Sat May 30 19:14:46 2015
@@ -24,7 +24,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: filemon.c,v 1.9 2015/05/21 12:00:59 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: filemon.c,v 1.10 2015/05/30 19:14:46 joerg Exp $");
 
 #include <sys/param.h>
 #include <sys/kernel.h>
@@ -213,7 +213,7 @@ filemon_open(dev_t dev, int oflags __unu
 	struct file *fp;
 	int error, fd;
 
-	/* falloc() will use the descriptor for us. */
+	/* falloc() will fill in the descriptor for us. */
 	if ((error = fd_allocfile(&fp, &fd)) != 0)
 		return error;
 

Index: src/sys/net/bpf.c
diff -u src/sys/net/bpf.c:1.190 src/sys/net/bpf.c:1.191
--- src/sys/net/bpf.c:1.190	Mon Dec 29 13:38:13 2014
+++ src/sys/net/bpf.c	Sat May 30 19:14:46 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: bpf.c,v 1.190 2014/12/29 13:38:13 ozaki-r Exp $	*/
+/*	$NetBSD: bpf.c,v 1.191 2015/05/30 19:14:46 joerg Exp $	*/
 
 /*
  * Copyright (c) 1990, 1991, 1993
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bpf.c,v 1.190 2014/12/29 13:38:13 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bpf.c,v 1.191 2015/05/30 19:14:46 joerg Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_bpf.h"
@@ -437,7 +437,7 @@ bpfopen(dev_t dev, int flag, int mode, s
 	struct file *fp;
 	int error, fd;
 
-	/* falloc() will use the descriptor for us. */
+	/* falloc() will fill in the descriptor for us. */
 	if ((error = fd_allocfile(&fp, &fd)) != 0)
 		return error;
 

Reply via email to