Lines Matching defs:ksmbd_file
70 struct ksmbd_file { struct
71 struct file *filp;
72 u64 persistent_id;
73 u64 volatile_id;
75 spinlock_t f_lock;
77 struct ksmbd_inode *f_ci;
78 struct ksmbd_inode *f_parent_ci;
79 struct oplock_info __rcu *f_opinfo;
80 struct ksmbd_conn *conn;
81 struct ksmbd_tree_connect *tcon;
83 atomic_t refcount;
84 __le32 daccess;
85 __le32 saccess;
86 __le32 coption;
87 __le32 cdoption;
88 __u64 create_time;
89 __u64 itime;
91 bool is_nt_open;
92 bool attrib_only;
94 char client_guid[16];
95 char create_guid[16];
96 char app_instance_id[16];
98 struct stream stream;
99 struct list_head node;
100 struct list_head blocked_works;
124 struct ksmbd_file_table { argument
134 static inline bool ksmbd_stream_fd(struct ksmbd_file *fp) in ksmbd_stream_fd() argument