Lines Matching defs:nfsnode
76 struct nfsnode struct
78 struct nfsnode *n_next; /* Retained in a singly linked list. */ argument
79 uint8_t n_crefs; /* Reference count (for nfs_dup) */
80 uint8_t n_type; /* File type */
81 uint8_t n_fhsize; /* Size in bytes of the file handle */
82 uint8_t n_pfhsize; /* Size in bytes of the file handle of parent */
83 uint8_t n_flags; /* Node flags */
84 uint16_t n_mode; /* File mode for fstat() */
85 time_t n_atime; /* File access time */
86 time_t n_ctime; /* File creation time */
87 struct timespec n_timestamp; /* Timestamp (modification time) */
88 nfsfh_t n_fhandle; /* NFS File Handle */
89 nfsfh_t n_pfhandle; /* NFS File Handle of parent */
90 uint64_t n_size; /* Current size of file */
91 int n_oflags; /* Flags provided when file was opened */
92 loff_t n_fpos; /* NFS File position */
93 struct file *n_filep; /* File pointer from VFS */
94 char *n_name;