• Home
  • Raw
  • Download

Lines Matching refs:file

23 static struct fuse_conn *fuse_ctl_file_conn_get(struct file *file)  in fuse_ctl_file_conn_get()  argument
27 fc = file_inode(file)->i_private; in fuse_ctl_file_conn_get()
34 static ssize_t fuse_conn_abort_write(struct file *file, const char __user *buf, in fuse_conn_abort_write() argument
37 struct fuse_conn *fc = fuse_ctl_file_conn_get(file); in fuse_conn_abort_write()
47 static ssize_t fuse_conn_waiting_read(struct file *file, char __user *buf, in fuse_conn_waiting_read() argument
55 struct fuse_conn *fc = fuse_ctl_file_conn_get(file); in fuse_conn_waiting_read()
60 file->private_data = (void *)value; in fuse_conn_waiting_read()
63 size = sprintf(tmp, "%ld\n", (long)file->private_data); in fuse_conn_waiting_read()
67 static ssize_t fuse_conn_limit_read(struct file *file, char __user *buf, in fuse_conn_limit_read() argument
76 static ssize_t fuse_conn_limit_write(struct file *file, const char __user *buf, in fuse_conn_limit_write() argument
102 static ssize_t fuse_conn_max_background_read(struct file *file, in fuse_conn_max_background_read() argument
109 fc = fuse_ctl_file_conn_get(file); in fuse_conn_max_background_read()
116 return fuse_conn_limit_read(file, buf, len, ppos, val); in fuse_conn_max_background_read()
119 static ssize_t fuse_conn_max_background_write(struct file *file, in fuse_conn_max_background_write() argument
126 ret = fuse_conn_limit_write(file, buf, count, ppos, &val, in fuse_conn_max_background_write()
129 struct fuse_conn *fc = fuse_ctl_file_conn_get(file); in fuse_conn_max_background_write()
144 static ssize_t fuse_conn_congestion_threshold_read(struct file *file, in fuse_conn_congestion_threshold_read() argument
151 fc = fuse_ctl_file_conn_get(file); in fuse_conn_congestion_threshold_read()
158 return fuse_conn_limit_read(file, buf, len, ppos, val); in fuse_conn_congestion_threshold_read()
161 static ssize_t fuse_conn_congestion_threshold_write(struct file *file, in fuse_conn_congestion_threshold_write() argument
169 ret = fuse_conn_limit_write(file, buf, count, ppos, &val, in fuse_conn_congestion_threshold_write()
173 fc = fuse_ctl_file_conn_get(file); in fuse_conn_congestion_threshold_write()