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()
59 struct fuse_file *ff = file->private_data; in fuse_passthrough_write_iter() local
60 struct file *backing_file = fuse_file_passthrough(ff); in fuse_passthrough_write_iter()
64 .cred = ff->cred, in fuse_passthrough_write_iter()
87 struct fuse_file *ff = in->private_data; in fuse_passthrough_splice_read() local
88 struct file *backing_file = fuse_file_passthrough(ff); in fuse_passthrough_splice_read()
90 .cred = ff->cred, in fuse_passthrough_splice_read()
106 struct fuse_file *ff = out->private_data; in fuse_passthrough_splice_write() local
107 struct file *backing_file = fuse_file_passthrough(ff); in fuse_passthrough_splice_write()
111 .cred = ff->cred, in fuse_passthrough_splice_write()
129 struct fuse_file *ff = file->private_data; in fuse_passthrough_mmap() local
130 struct file *backing_file = fuse_file_passthrough(ff); in fuse_passthrough_mmap()
132 .cred = ff->cred, in fuse_passthrough_mmap()
304 struct fuse_file *ff = file->private_data; in fuse_passthrough_open() local
305 struct fuse_conn *fc = ff->fm->fc; in fuse_passthrough_open()
333 ff->passthrough = backing_file; in fuse_passthrough_open()
334 ff->cred = get_cred(fb->cred); in fuse_passthrough_open()
337 backing_id, fb, ff->passthrough, err); in fuse_passthrough_open()
342 void fuse_passthrough_release(struct fuse_file *ff, struct fuse_backing *fb) in fuse_passthrough_release() argument
345 fb, ff->passthrough); in fuse_passthrough_release()
347 fput(ff->passthrough); in fuse_passthrough_release()
348 ff->passthrough = NULL; in fuse_passthrough_release()
349 put_cred(ff->cred); in fuse_passthrough_release()
350 ff->cred = NULL; in fuse_passthrough_release()