summaryrefslogtreecommitdiffstats
path: root/sys/fs/tmpfs/tmpfs_vfsops.c
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2014-07-14 08:17:11 +0000
committerkib <kib@FreeBSD.org>2014-07-14 08:17:11 +0000
commitd84e7ad50cb906e22de70bedccb9c8c5a54abb1f (patch)
tree2960dfef3784d745b76664831099fc753dc0cf9d /sys/fs/tmpfs/tmpfs_vfsops.c
parentc4fd7b39878446de967432c38ac4ca4c23e9f9fb (diff)
downloadFreeBSD-src-d84e7ad50cb906e22de70bedccb9c8c5a54abb1f.zip
FreeBSD-src-d84e7ad50cb906e22de70bedccb9c8c5a54abb1f.tar.gz
Remove code separator lines which do not conform to style(9).
Sponsored by: The FreeBSD Foundation MFC after: 2 weeks
Diffstat (limited to 'sys/fs/tmpfs/tmpfs_vfsops.c')
-rw-r--r--sys/fs/tmpfs/tmpfs_vfsops.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/sys/fs/tmpfs/tmpfs_vfsops.c b/sys/fs/tmpfs/tmpfs_vfsops.c
index d5967ae..1773f71 100644
--- a/sys/fs/tmpfs/tmpfs_vfsops.c
+++ b/sys/fs/tmpfs/tmpfs_vfsops.c
@@ -68,8 +68,6 @@ __FBSDID("$FreeBSD$");
MALLOC_DEFINE(M_TMPFSMNT, "tmpfs mount", "tmpfs mount structures");
MALLOC_DEFINE(M_TMPFSNAME, "tmpfs name", "tmpfs file names");
-/* --------------------------------------------------------------------- */
-
static int tmpfs_mount(struct mount *);
static int tmpfs_unmount(struct mount *, int);
static int tmpfs_root(struct mount *, int flags, struct vnode **);
@@ -77,8 +75,6 @@ static int tmpfs_fhtovp(struct mount *, struct fid *, int,
struct vnode **);
static int tmpfs_statfs(struct mount *, struct statfs *);
-/* --------------------------------------------------------------------- */
-
static const char *tmpfs_opts[] = {
"from", "size", "maxfilesize", "inodes", "uid", "gid", "mode", "export",
"union", NULL
@@ -88,8 +84,6 @@ static const char *tmpfs_updateopts[] = {
"from", "export", NULL
};
-/* --------------------------------------------------------------------- */
-
static int
tmpfs_node_ctor(void *mem, int size, void *arg, int flags)
{
@@ -271,8 +265,6 @@ tmpfs_mount(struct mount *mp)
return 0;
}
-/* --------------------------------------------------------------------- */
-
/* ARGSUSED2 */
static int
tmpfs_unmount(struct mount *mp, int mntflags)
@@ -328,8 +320,6 @@ tmpfs_unmount(struct mount *mp, int mntflags)
return 0;
}
-/* --------------------------------------------------------------------- */
-
static int
tmpfs_root(struct mount *mp, int flags, struct vnode **vpp)
{
@@ -342,8 +332,6 @@ tmpfs_root(struct mount *mp, int flags, struct vnode **vpp)
return error;
}
-/* --------------------------------------------------------------------- */
-
static int
tmpfs_fhtovp(struct mount *mp, struct fid *fhp, int flags,
struct vnode **vpp)
@@ -380,8 +368,6 @@ tmpfs_fhtovp(struct mount *mp, struct fid *fhp, int flags,
return (EINVAL);
}
-/* --------------------------------------------------------------------- */
-
/* ARGSUSED2 */
static int
tmpfs_statfs(struct mount *mp, struct statfs *sbp)
@@ -415,8 +401,6 @@ tmpfs_statfs(struct mount *mp, struct statfs *sbp)
return 0;
}
-/* --------------------------------------------------------------------- */
-
/*
* tmpfs vfs operations.
*/
OpenPOWER on IntegriCloud