OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:V7FS_BSIZE
(Results
1 - 12
of
12
) sorted by relevancy
/src/sys/fs/v7fs/
v7fs.h
80
#define
V7FS_BSIZE
512
83
((((x) + (
V7FS_BSIZE
- 1)) & ~(
V7FS_BSIZE
- 1)))
84
#define V7FS_TRUNC_BSIZE(x) ((x) & ~(
V7FS_BSIZE
- 1))
122
#define V7FS_DADDR_PER_BLOCK (
V7FS_BSIZE
/ sizeof(v7fs_daddr_t))
143
V7FS_BSIZE
/ sizeof(struct v7fs_inode_diskimage))
145
(
V7FS_BSIZE
/ sizeof(struct v7fs_inode_diskimage))
178
#define V7FSBSD_MAXSYMLINKLEN
V7FS_BSIZE
v7fs_datablock.c
137
memset(buf, 0,
V7FS_BSIZE
);
203
#define DIRECT_SZ (V7FS_NADDR_DIRECT *
V7FS_BSIZE
)
204
#define IDX1_SZ (NIDX *
V7FS_BSIZE
)
205
#define IDX2_SZ (NIDX * NIDX *
V7FS_BSIZE
)
269
for (i = 0; i < V7FS_NADDR_DIRECT; i++, filesize -=
V7FS_BSIZE
) {
277
last = filesize <=
V7FS_BSIZE
;
278
if ((ret = func(fs, ctx, blk, last ? filesize :
V7FS_BSIZE
)))
345
for (k = 0; k < V7FS_DADDR_PER_BLOCK; k++, *filesize -=
V7FS_BSIZE
) {
349
last = *filesize <=
V7FS_BSIZE
;
350
if ((ret = func(fs, ctx, blk, last ? *filesize :
V7FS_BSIZE
)))
[
all
...]
v7fs_io.c
96
uint8_t *buf = malloc(
V7FS_BSIZE
);
v7fs_impl.h
104
uint8_t scratch[V7FS_SELF_NSCRATCH][
V7FS_BSIZE
];
v7fs_vfsops.c
266
if ((error = v7fs_io_init(&v7fsmount->core, &mount,
V7FS_BSIZE
))) {
353
f->f_bsize =
V7FS_BSIZE
;
354
f->f_frsize =
V7FS_BSIZE
;
355
f->f_iosize =
V7FS_BSIZE
;
v7fs_inode.c
293
*offset = (ofs - blk *
V7FS_BSIZE
) /
v7fs_file_util.c
109
strncpy(buf, target,
V7FS_BSIZE
);
v7fs_vnops.c
1289
if (len >
V7FS_BSIZE
) { /* limited to 512byte pathname */
/src/sbin/newfs_v7fs/
main.c
167
memset(buf, 0,
V7FS_BSIZE
);
206
uint8_t buf[
V7FS_BSIZE
];
291
if ((error = v7fs_io_init(&fs, mount,
V7FS_BSIZE
))) {
/src/usr.sbin/makefs/v7fs/
v7fs_populate.c
111
uint8_t buf[
V7FS_BSIZE
];
267
if ((error = v7fs_io_init(&fs, device,
V7FS_BSIZE
))) {
v7fs_estimate.c
208
if ((fsopts->sectorsize > 0) && (fsopts->sectorsize !=
V7FS_BSIZE
))
/src/sbin/fsck_v7fs/
main.c
63
if ((error = v7fs_io_init(&fs, mount,
V7FS_BSIZE
))) {
Completed in 16 milliseconds
Indexes created Tue Oct 14 06:10:07 GMT 2025