Lines Matching +full:best +full:- +full:effort
38 #include "un-namespace.h"
58 * Whether pathconf's -1 return means error or unlimited does not in fstatvfs()
59 * make any difference in this best-effort implementation. in fstatvfs()
62 if (pcval == -1) in fstatvfs()
63 result->f_namemax = ~0UL; in fstatvfs()
65 result->f_namemax = (unsigned long)pcval; in fstatvfs()
83 * Whether pathconf's -1 return means error or unlimited does not in statvfs()
84 * make any difference in this best-effort implementation. in statvfs()
87 if (pcval == -1) in statvfs()
88 result->f_namemax = ~0UL; in statvfs()
90 result->f_namemax = (unsigned long)pcval; in statvfs()
101 if (from->f_flags & MNT_RDONLY) in sfs2svfs()
102 to->f_flag |= ST_RDONLY; in sfs2svfs()
103 if (from->f_flags & MNT_NOSUID) in sfs2svfs()
104 to->f_flag |= ST_NOSUID; in sfs2svfs()
109 to->field = from->field; \ in sfs2svfs()
110 if (from->field != to->field) { \ in sfs2svfs()
112 return (-1); \ in sfs2svfs()
121 to->f_bsize = from->f_iosize; in sfs2svfs()
122 to->f_frsize = from->f_bsize; in sfs2svfs()
123 to->f_favail = to->f_ffree; in sfs2svfs()