Drop trailing whitespace.
This commit is contained in:
parent
5fb9f423de
commit
565f731b68
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: tmpfs.h,v 1.30 2008/01/02 11:48:46 ad Exp $ */
|
||||
/* $NetBSD: tmpfs.h,v 1.31 2008/02/06 11:22:12 jmmv Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2005, 2006, 2007 The NetBSD Foundation, Inc.
|
||||
|
@ -91,7 +91,7 @@ TAILQ_HEAD(tmpfs_dir, tmpfs_dirent);
|
|||
* supersede offsets within directories because, given how tmpfs stores
|
||||
* directories in memory, there is no such thing as an offset. (Emulating
|
||||
* a real offset could be very difficult.)
|
||||
*
|
||||
*
|
||||
* The '.', '..' and the end of directory markers have fixed cookies which
|
||||
* cannot collide with the cookies generated by other entries. The cookies
|
||||
* fot the other entries are generated based on the memory address on which
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: tmpfs_subr.c,v 1.44 2008/01/24 17:32:54 ad Exp $ */
|
||||
/* $NetBSD: tmpfs_subr.c,v 1.45 2008/02/06 11:22:12 jmmv Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2005, 2006, 2007 The NetBSD Foundation, Inc.
|
||||
|
@ -42,7 +42,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: tmpfs_subr.c,v 1.44 2008/01/24 17:32:54 ad Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: tmpfs_subr.c,v 1.45 2008/02/06 11:22:12 jmmv Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/dirent.h>
|
||||
|
@ -928,7 +928,7 @@ out:
|
|||
* Returns information about the number of available memory pages,
|
||||
* including physical and virtual ones.
|
||||
*
|
||||
* If 'total' is true, the value returned is the total amount of memory
|
||||
* If 'total' is true, the value returned is the total amount of memory
|
||||
* pages configured for the system (either in use or free).
|
||||
* If it is FALSE, the value returned is the amount of free memory pages.
|
||||
*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: tmpfs_vfsops.c,v 1.37 2008/02/05 15:02:45 ad Exp $ */
|
||||
/* $NetBSD: tmpfs_vfsops.c,v 1.38 2008/02/06 11:22:12 jmmv Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2005, 2006, 2007 The NetBSD Foundation, Inc.
|
||||
|
@ -49,7 +49,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: tmpfs_vfsops.c,v 1.37 2008/02/05 15:02:45 ad Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: tmpfs_vfsops.c,v 1.38 2008/02/06 11:22:12 jmmv Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/types.h>
|
||||
|
@ -275,7 +275,7 @@ tmpfs_root(struct mount *mp, struct vnode **vpp)
|
|||
|
||||
static int
|
||||
tmpfs_vget(struct mount *mp, ino_t ino,
|
||||
struct vnode **vpp)
|
||||
struct vnode **vpp)
|
||||
{
|
||||
|
||||
printf("tmpfs_vget called; need for it unknown yet\n");
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: tmpfs_vnops.c,v 1.48 2008/01/31 13:13:20 ad Exp $ */
|
||||
/* $NetBSD: tmpfs_vnops.c,v 1.49 2008/02/06 11:22:12 jmmv Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2005, 2006, 2007 The NetBSD Foundation, Inc.
|
||||
|
@ -42,7 +42,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: tmpfs_vnops.c,v 1.48 2008/01/31 13:13:20 ad Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: tmpfs_vnops.c,v 1.49 2008/02/06 11:22:12 jmmv Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/dirent.h>
|
||||
|
@ -1427,7 +1427,7 @@ tmpfs_getpages(void *v)
|
|||
* gotten pages is clean. Otherwise uao_get (pointed to by
|
||||
* the pgo_get below) gets confused and does not return the
|
||||
* appropriate pages.
|
||||
*
|
||||
*
|
||||
* XXX This shall be revisited when kern/32166 is addressed
|
||||
* because the loop to clean m[i] will most likely be redundant
|
||||
* as well as the PGO_ALLPAGES flag.
|
||||
|
|
Loading…
Reference in New Issue