Home | History | Annotate | Download | only in sys

Lines Matching refs:ost

74 cvtstat(struct stat30 *ost, const struct stat *st)
77 ost->st_dev = (uint32_t)st->st_dev;
78 ost->st_ino = st->st_ino;
79 ost->st_mode = st->st_mode;
80 ost->st_nlink = st->st_nlink;
81 ost->st_uid = st->st_uid;
82 ost->st_gid = st->st_gid;
83 ost->st_rdev = (uint32_t)st->st_rdev;
84 timespec_to_timespec50(&st->st_atimespec, &ost->st_atimespec);
85 timespec_to_timespec50(&st->st_mtimespec, &ost->st_mtimespec);
86 timespec_to_timespec50(&st->st_ctimespec, &ost->st_ctimespec);
87 timespec_to_timespec50(&st->st_birthtimespec, &ost->st_birthtimespec);
88 ost->st_size = st->st_size;
89 ost->st_blocks = st->st_blocks;
90 ost->st_blksize = st->st_blksize;
91 ost->st_flags = st->st_flags;
92 ost->st_gen = st->st_gen;
96 __compat___stat30(const char *file, struct stat30 *ost)
103 cvtstat(ost, &nst);
108 __compat___fstat30(int f, struct stat30 *ost)
115 cvtstat(ost, &nst);
120 __compat___lstat30(const char *file, struct stat30 *ost)
127 cvtstat(ost, &nst);
132 __compat___fhstat40(const void *fh, size_t fh_size, struct stat30 *ost)
139 cvtstat(ost, &nst);