Lines Matching refs:st
515 struct hostfs_stat st; in read_name() local
516 int err = stat_file(name, &st, -1); in read_name()
521 rdev = MKDEV(st.maj, st.min); in read_name()
523 switch (st.mode & S_IFMT) { in read_name()
535 init_special_inode(ino, st.mode & S_IFMT, rdev); in read_name()
547 ino->i_ino = st.ino; in read_name()
548 ino->i_mode = st.mode; in read_name()
549 set_nlink(ino, st.nlink); in read_name()
550 i_uid_write(ino, st.uid); in read_name()
551 i_gid_write(ino, st.gid); in read_name()
552 ino->i_atime = timespec_to_timespec64(st.atime); in read_name()
553 ino->i_mtime = timespec_to_timespec64(st.mtime); in read_name()
554 ino->i_ctime = timespec_to_timespec64(st.ctime); in read_name()
555 ino->i_size = st.size; in read_name()
556 ino->i_blocks = st.blocks; in read_name()