OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxfilesize
(Results
1 - 10
of
10
) sorted by relevancy
/src/sbin/fsck_lfs/
setup.c
167
u_int64_t
maxfilesize
;
local
340
maxfilesize
= calcmaxfilesize(lfs_sb_getbshift(fs));
382
if (lfs_sb_getmaxfilesize(fs) !=
maxfilesize
) {
384
"INCORRECT
MAXFILESIZE
=%ju IN SUPERBLOCK (SHOULD BE %ju WITH BSHIFT %u)",
386
(uintmax_t)
maxfilesize
, lfs_sb_getbshift(fs));
390
lfs_sb_setmaxfilesize(fs,
maxfilesize
);
/src/sbin/fsck_ffs/
setup.c
98
u_int64_t
maxfilesize
;
local
235
maxfilesize
= sblock->fs_bsize * UFS_NDADDR - 1;
238
maxfilesize
+= sizepb;
356
if (sblock->fs_maxfilesize !=
maxfilesize
) {
357
pwarn("INCORRECT
MAXFILESIZE
=%lld IN SUPERBLOCK",
359
sblock->fs_maxfilesize =
maxfilesize
;
421
sblock->fs_maxfilesize =
maxfilesize
;
/src/sbin/fsck_ext2fs/
setup.c
116
u_int64_t
maxfilesize
;
local
198
maxfilesize
= sblock.e2fs_bsize * EXT2FS_NDADDR - 1;
201
maxfilesize
+= sizepb;
/src/libexec/ftpd/
extern.h
277
LLT
maxfilesize
; /* Maximum file size of uploads */
member in struct:ftpclass
conf.c
102
curclass.
maxfilesize
= DEFAULT_MAXFILESIZE;
365
} else if (strcasecmp(word, "
maxfilesize
") == 0) {
366
curclass.
maxfilesize
= DEFAULT_MAXFILESIZE;
367
CONF_LL(
maxfilesize
, arg, -1, LLTMAX);
ftpd.c
2408
if (curclass.
maxfilesize
!= -1 && \
2409
(x) > curclass.
maxfilesize
) { \
2758
if (curclass.
maxfilesize
== -1)
2762
(LLT)curclass.
maxfilesize
);
/src/sbin/newfs_lfs/
make_lfs.c
276
maxfilesize
(struct lfs *fs, int bshift)
function
599
lfs_sb_setmaxfilesize(fs,
maxfilesize
(fs, lfs_sb_getbshift(fs)));
/src/sys/ufs/ffs/
ffs_vfsops.c
1652
off_t
maxfilesize
;
local
1702
maxfilesize
= (u_int64_t)0x80000000 * fs->fs_bsize - 1;
1703
if (fs->fs_maxfilesize >
maxfilesize
)
1704
fs->fs_maxfilesize =
maxfilesize
;
/src/lib/librpcsvc/
nfs_prot.x
1058
size3
maxfilesize
;
/src/sys/ufs/lfs/
lfs_accessors.h
1225
LFS_DEF_SB_ACCESSOR(uint64_t,
maxfilesize
)
Completed in 29 milliseconds
Indexes created Sat Feb 21 08:20:20 UTC 2026