Searched refs:nandfs (Results 1 - 24 of 24) sorted by relevance

/freebsd-10.0-release/lib/libnandfs/
H A Dlibnandfs.h32 struct nandfs { struct
43 int nandfs_iserror(struct nandfs *);
44 const char *nandfs_errmsg(struct nandfs *);
46 void nandfs_init(struct nandfs *, const char *);
47 void nandfs_destroy(struct nandfs *);
49 const char *nandfs_dev(struct nandfs *);
51 int nandfs_open(struct nandfs *);
52 void nandfs_close(struct nandfs *);
54 int nandfs_get_cpstat(struct nandfs *, struct nandfs_cpstat *);
56 ssize_t nandfs_get_cp(struct nandfs *, uint64_
[all...]
H A DMakefile3 LIB= nandfs
4 SRCS+= nandfs.c
H A Dnandfs.c46 #include <fs/nandfs/nandfs_fs.h>
69 nandfs_iserror(struct nandfs *fs)
78 nandfs_errmsg(struct nandfs *fs)
89 nandfs_seterr(struct nandfs *fs, const char *fmt, ...)
100 nandfs_dev(struct nandfs *fs)
108 nandfs_init(struct nandfs *fs, const char *dir)
117 nandfs_destroy(struct nandfs *fs)
127 nandfs_open(struct nandfs *fs)
155 nandfs_close(struct nandfs *fs)
167 nandfs_get_cpstat(struct nandfs *f
[all...]
/freebsd-10.0-release/sbin/nandfs/
H A DMakefile3 PROG= nandfs
4 SRCS= nandfs.c lssnap.c mksnap.c rmsnap.c
5 MAN= nandfs.8
H A Dmksnap.c38 #include <fs/nandfs/nandfs_fs.h>
41 #include "nandfs.h"
54 struct nandfs fs;
H A Drmsnap.c40 #include <fs/nandfs/nandfs_fs.h>
43 #include "nandfs.h"
56 struct nandfs fs;
H A Dlssnap.c40 #include <fs/nandfs/nandfs_fs.h>
43 #include "nandfs.h"
73 struct nandfs fs;
/freebsd-10.0-release/sys/modules/nandfs/
H A DMakefile3 .PATH: ${.CURDIR}/../../fs/nandfs
5 KMOD= nandfs
/freebsd-10.0-release/sys/fs/nandfs/
H A Dnandfs_buffer.c43 #include <fs/nandfs/nandfs_mount.h>
44 #include <fs/nandfs/nandfs.h>
45 #include <fs/nandfs/nandfs_subr.h>
H A Dnandfs_ifile.c49 #include <fs/nandfs/nandfs_mount.h>
50 #include <fs/nandfs/nandfs.h>
51 #include <fs/nandfs/nandfs_subr.h>
H A Dnandfs_alloc.c49 #include <fs/nandfs/nandfs_mount.h>
50 #include <fs/nandfs/nandfs.h>
51 #include <fs/nandfs/nandfs_subr.h>
H A Dnandfs_dat.c49 #include <fs/nandfs/nandfs_mount.h>
50 #include <fs/nandfs/nandfs.h>
51 #include <fs/nandfs/nandfs_subr.h>
H A Dnandfs_cleaner.c43 #include <fs/nandfs/nandfs_mount.h>
44 #include <fs/nandfs/nandfs.h>
45 #include <fs/nandfs/nandfs_subr.h>
85 printf("nandfs: could not start cleaner: %d\n", error);
270 nandfs_error("nandfs: invalid summary of segment %jx\n", segno);
H A Dnandfs_sufile.c52 #include <fs/nandfs/nandfs_mount.h>
53 #include <fs/nandfs/nandfs.h>
54 #include <fs/nandfs/nandfs_subr.h>
H A Dnandfs_vfsops.c52 #include <fs/nandfs/nandfs_mount.h>
53 #include <fs/nandfs/nandfs.h>
54 #include <fs/nandfs/nandfs_subr.h>
80 TUNABLE_INT_FETCH("vfs.nandfs.verbose", &nandfs_verbose);
84 static SYSCTL_NODE(_vfs, OID_AUTO, nandfs, CTLFLAG_RD, 0, "NAND filesystem");
586 printf("nandfs: no valid superblocks found\n");
661 printf("nandfs: could not get valid filesystem structures\n");
666 printf("nandfs: unsupported file system revision: %d "
673 printf("nandfs
[all...]
H A Dnandfs_segment.c58 #include <fs/nandfs/nandfs_mount.h>
59 #include <fs/nandfs/nandfs.h>
60 #include <fs/nandfs/nandfs_subr.h>
1262 DB_SHOW_COMMAND(nandfs, db_show_nandfs)
1272 db_printf("\nUsage: show nandfs <mount_addr>\n");
H A Dnandfs_vnops.c60 #include <fs/nandfs/nandfs_mount.h>
61 #include <fs/nandfs/nandfs.h>
62 #include <fs/nandfs/nandfs_subr.h>
1068 printf("nandfs inode %#jx\n", (uintmax_t)nvp->nn_ino);
1087 * asynchronously from the nandfs device. Note that this lookup may
1776 panic("nandfs: lost dir entry");
2067 * asynchronously from the nandfs device. Note that this lookup may
/freebsd-10.0-release/lib/libstand/
H A Dnandfs.c34 #include <fs/nandfs/nandfs_fs.h>
66 struct nandfs { struct
98 static int nandfs_buf_read(struct nandfs *, void **, size_t *);
99 static struct nandfs_node *nandfs_lookup_path(struct nandfs *, const char *);
100 static int nandfs_read_inode(struct nandfs *, struct nandfs_node *,
102 static int nandfs_read_blk(struct nandfs *, nandfs_daddr_t, void *, int);
103 static int nandfs_bmap_lookup(struct nandfs *, struct nandfs_node *,
105 static int nandfs_get_checkpoint(struct nandfs *, uint64_t,
107 static nandfs_daddr_t nandfs_vtop(struct nandfs *, nandfs_daddr_t);
115 "nandfs",
[all...]
H A DMakefile177 SRCS+= nandfs.c
/freebsd-10.0-release/sbin/
H A DMakefile95 SUBDIR+= nandfs
/freebsd-10.0-release/share/man/man5/
H A DMakefile91 MAN+= nandfs.5
/freebsd-10.0-release/include/
H A DMakefile50 fs/devfs fs/fdescfs fs/msdosfs fs/nandfs fs/nfs fs/nullfs \
/freebsd-10.0-release/sys/modules/
H A DMakefile429 _nandfs= nandfs
/freebsd-10.0-release/sbin/newfs_nandfs/
H A Dnewfs_nandfs.c56 #include <fs/nandfs/nandfs_fs.h>
63 printf("nandfs:" fmt "\n", ##args); } while (0)
292 printf("nandfs: blockgrouped entry %d already allocated\n",
318 printf("nandfs: file too big (%jd > %d)\n", blk, NDADDR);
610 printf("nandfs: too many dir entries for one block\n");

Completed in 122 milliseconds