Lines Matching full:ff

31 	struct fuse_file *ff = file->private_data;  in fuse_passthrough_read_iter()  local
32 struct file *backing_file = fuse_file_passthrough(ff); in fuse_passthrough_read_iter()
36 .cred = ff->cred, in fuse_passthrough_read_iter()
58 struct fuse_file *ff = file->private_data; in fuse_passthrough_write_iter() local
59 struct file *backing_file = fuse_file_passthrough(ff); in fuse_passthrough_write_iter()
63 .cred = ff->cred, in fuse_passthrough_write_iter()
85 struct fuse_file *ff = in->private_data; in fuse_passthrough_splice_read() local
86 struct file *backing_file = fuse_file_passthrough(ff); in fuse_passthrough_splice_read()
88 .cred = ff->cred, in fuse_passthrough_splice_read()
109 struct fuse_file *ff = out->private_data; in fuse_passthrough_splice_write() local
110 struct file *backing_file = fuse_file_passthrough(ff); in fuse_passthrough_splice_write()
114 .cred = ff->cred, in fuse_passthrough_splice_write()
134 struct fuse_file *ff = file->private_data; in fuse_passthrough_mmap() local
135 struct file *backing_file = fuse_file_passthrough(ff); in fuse_passthrough_mmap()
137 .cred = ff->cred, in fuse_passthrough_mmap()
154 struct fuse_file *ff = file->private_data; in fuse_passthrough_open() local
155 struct fuse_conn *fc = ff->fm->fc; in fuse_passthrough_open()
179 ff->passthrough = backing_file; in fuse_passthrough_open()
180 ff->cred = get_cred(fb->cred); in fuse_passthrough_open()
183 backing_id, fb, ff->passthrough, err); in fuse_passthrough_open()
188 void fuse_passthrough_release(struct fuse_file *ff, struct fuse_backing *fb) in fuse_passthrough_release() argument
191 fb, ff->passthrough); in fuse_passthrough_release()
193 fput(ff->passthrough); in fuse_passthrough_release()
194 ff->passthrough = NULL; in fuse_passthrough_release()
195 put_cred(ff->cred); in fuse_passthrough_release()
196 ff->cred = NULL; in fuse_passthrough_release()