Lines Matching refs:file
22 static struct fuse_conn *fuse_ctl_file_conn_get(struct file *file) in fuse_ctl_file_conn_get() argument
26 fc = file_inode(file)->i_private; in fuse_ctl_file_conn_get()
33 static ssize_t fuse_conn_abort_write(struct file *file, const char __user *buf, in fuse_conn_abort_write() argument
36 struct fuse_conn *fc = fuse_ctl_file_conn_get(file); in fuse_conn_abort_write()
44 static ssize_t fuse_conn_waiting_read(struct file *file, char __user *buf, in fuse_conn_waiting_read() argument
52 struct fuse_conn *fc = fuse_ctl_file_conn_get(file); in fuse_conn_waiting_read()
57 file->private_data = (void *)value; in fuse_conn_waiting_read()
60 size = sprintf(tmp, "%ld\n", (long)file->private_data); in fuse_conn_waiting_read()
64 static ssize_t fuse_conn_limit_read(struct file *file, char __user *buf, in fuse_conn_limit_read() argument
73 static ssize_t fuse_conn_limit_write(struct file *file, const char __user *buf, in fuse_conn_limit_write() argument
99 static ssize_t fuse_conn_max_background_read(struct file *file, in fuse_conn_max_background_read() argument
106 fc = fuse_ctl_file_conn_get(file); in fuse_conn_max_background_read()
113 return fuse_conn_limit_read(file, buf, len, ppos, val); in fuse_conn_max_background_read()
116 static ssize_t fuse_conn_max_background_write(struct file *file, in fuse_conn_max_background_write() argument
123 ret = fuse_conn_limit_write(file, buf, count, ppos, &val, in fuse_conn_max_background_write()
126 struct fuse_conn *fc = fuse_ctl_file_conn_get(file); in fuse_conn_max_background_write()
136 static ssize_t fuse_conn_congestion_threshold_read(struct file *file, in fuse_conn_congestion_threshold_read() argument
143 fc = fuse_ctl_file_conn_get(file); in fuse_conn_congestion_threshold_read()
150 return fuse_conn_limit_read(file, buf, len, ppos, val); in fuse_conn_congestion_threshold_read()
153 static ssize_t fuse_conn_congestion_threshold_write(struct file *file, in fuse_conn_congestion_threshold_write() argument
160 ret = fuse_conn_limit_write(file, buf, count, ppos, &val, in fuse_conn_congestion_threshold_write()
163 struct fuse_conn *fc = fuse_ctl_file_conn_get(file); in fuse_conn_congestion_threshold_write()