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()
308 struct fuse_file *ff = file->private_data; in fuse_passthrough_open() local
309 struct fuse_conn *fc = ff->fm->fc; in fuse_passthrough_open()
337 ff->passthrough = backing_file; in fuse_passthrough_open()
338 ff->cred = get_cred(fb->cred); in fuse_passthrough_open()
341 backing_id, fb, ff->passthrough, err); in fuse_passthrough_open()
346 void fuse_passthrough_release(struct fuse_file *ff, struct fuse_backing *fb) in fuse_passthrough_release() argument
349 fb, ff->passthrough); in fuse_passthrough_release()
351 fput(ff->passthrough); in fuse_passthrough_release()
352 ff->passthrough = NULL; in fuse_passthrough_release()
353 put_cred(ff->cred); in fuse_passthrough_release()
354 ff->cred = NULL; in fuse_passthrough_release()