diff options
Diffstat (limited to 'fs/fuse/control.c')
| -rw-r--r-- | fs/fuse/control.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/fuse/control.c b/fs/fuse/control.c index 3773fd63d2f9..7367e177186f 100644 --- a/fs/fuse/control.c +++ b/fs/fuse/control.c | |||
| @@ -179,23 +179,27 @@ static ssize_t fuse_conn_congestion_threshold_write(struct file *file, | |||
| 179 | static const struct file_operations fuse_ctl_abort_ops = { | 179 | static const struct file_operations fuse_ctl_abort_ops = { |
| 180 | .open = nonseekable_open, | 180 | .open = nonseekable_open, |
| 181 | .write = fuse_conn_abort_write, | 181 | .write = fuse_conn_abort_write, |
| 182 | .llseek = no_llseek, | ||
| 182 | }; | 183 | }; |
| 183 | 184 | ||
| 184 | static const struct file_operations fuse_ctl_waiting_ops = { | 185 | static const struct file_operations fuse_ctl_waiting_ops = { |
| 185 | .open = nonseekable_open, | 186 | .open = nonseekable_open, |
| 186 | .read = fuse_conn_waiting_read, | 187 | .read = fuse_conn_waiting_read, |
| 188 | .llseek = no_llseek, | ||
| 187 | }; | 189 | }; |
| 188 | 190 | ||
| 189 | static const struct file_operations fuse_conn_max_background_ops = { | 191 | static const struct file_operations fuse_conn_max_background_ops = { |
| 190 | .open = nonseekable_open, | 192 | .open = nonseekable_open, |
| 191 | .read = fuse_conn_max_background_read, | 193 | .read = fuse_conn_max_background_read, |
| 192 | .write = fuse_conn_max_background_write, | 194 | .write = fuse_conn_max_background_write, |
| 195 | .llseek = no_llseek, | ||
| 193 | }; | 196 | }; |
| 194 | 197 | ||
| 195 | static const struct file_operations fuse_conn_congestion_threshold_ops = { | 198 | static const struct file_operations fuse_conn_congestion_threshold_ops = { |
| 196 | .open = nonseekable_open, | 199 | .open = nonseekable_open, |
| 197 | .read = fuse_conn_congestion_threshold_read, | 200 | .read = fuse_conn_congestion_threshold_read, |
| 198 | .write = fuse_conn_congestion_threshold_write, | 201 | .write = fuse_conn_congestion_threshold_write, |
| 202 | .llseek = no_llseek, | ||
| 199 | }; | 203 | }; |
| 200 | 204 | ||
| 201 | static struct dentry *fuse_ctl_add_dentry(struct dentry *parent, | 205 | static struct dentry *fuse_ctl_add_dentry(struct dentry *parent, |
