diff options
| -rw-r--r-- | fs/fuse/control.c | 138 | ||||
| -rw-r--r-- | fs/fuse/dev.c | 10 | ||||
| -rw-r--r-- | fs/fuse/fuse_i.h | 18 | ||||
| -rw-r--r-- | fs/fuse/inode.c | 80 | ||||
| -rw-r--r-- | include/linux/fuse.h | 29 |
5 files changed, 258 insertions, 17 deletions
diff --git a/fs/fuse/control.c b/fs/fuse/control.c index 99c99dfb0373..3773fd63d2f9 100644 --- a/fs/fuse/control.c +++ b/fs/fuse/control.c | |||
| @@ -61,6 +61,121 @@ static ssize_t fuse_conn_waiting_read(struct file *file, char __user *buf, | |||
| 61 | return simple_read_from_buffer(buf, len, ppos, tmp, size); | 61 | return simple_read_from_buffer(buf, len, ppos, tmp, size); |
| 62 | } | 62 | } |
| 63 | 63 | ||
| 64 | static ssize_t fuse_conn_limit_read(struct file *file, char __user *buf, | ||
| 65 | size_t len, loff_t *ppos, unsigned val) | ||
| 66 | { | ||
| 67 | char tmp[32]; | ||
| 68 | size_t size = sprintf(tmp, "%u\n", val); | ||
| 69 | |||
| 70 | return simple_read_from_buffer(buf, len, ppos, tmp, size); | ||
| 71 | } | ||
| 72 | |||
| 73 | static ssize_t fuse_conn_limit_write(struct file *file, const char __user *buf, | ||
| 74 | size_t count, loff_t *ppos, unsigned *val, | ||
| 75 | unsigned global_limit) | ||
| 76 | { | ||
| 77 | unsigned long t; | ||
| 78 | char tmp[32]; | ||
| 79 | unsigned limit = (1 << 16) - 1; | ||
| 80 | int err; | ||
| 81 | |||
| 82 | if (*ppos || count >= sizeof(tmp) - 1) | ||
| 83 | return -EINVAL; | ||
| 84 | |||
| 85 | if (copy_from_user(tmp, buf, count)) | ||
| 86 | return -EINVAL; | ||
| 87 | |||
| 88 | tmp[count] = '\0'; | ||
| 89 | |||
| 90 | err = strict_strtoul(tmp, 0, &t); | ||
| 91 | if (err) | ||
| 92 | return err; | ||
| 93 | |||
| 94 | if (!capable(CAP_SYS_ADMIN)) | ||
| 95 | limit = min(limit, global_limit); | ||
| 96 | |||
| 97 | if (t > limit) | ||
| 98 | return -EINVAL; | ||
| 99 | |||
| 100 | *val = t; | ||
| 101 | |||
| 102 | return count; | ||
| 103 | } | ||
| 104 | |||
| 105 | static ssize_t fuse_conn_max_background_read(struct file *file, | ||
| 106 | char __user *buf, size_t len, | ||
| 107 | loff_t *ppos) | ||
| 108 | { | ||
| 109 | struct fuse_conn *fc; | ||
| 110 | unsigned val; | ||
| 111 | |||
| 112 | fc = fuse_ctl_file_conn_get(file); | ||
| 113 | if (!fc) | ||
| 114 | return 0; | ||
| 115 | |||
| 116 | val = fc->max_background; | ||
| 117 | fuse_conn_put(fc); | ||
| 118 | |||
| 119 | return fuse_conn_limit_read(file, buf, len, ppos, val); | ||
| 120 | } | ||
| 121 | |||
| 122 | static ssize_t fuse_conn_max_background_write(struct file *file, | ||
| 123 | const char __user *buf, | ||
| 124 | size_t count, loff_t *ppos) | ||
| 125 | { | ||
| 126 | unsigned val; | ||
| 127 | ssize_t ret; | ||
| 128 | |||
| 129 | ret = fuse_conn_limit_write(file, buf, count, ppos, &val, | ||
| 130 | max_user_bgreq); | ||
| 131 | if (ret > 0) { | ||
| 132 | struct fuse_conn *fc = fuse_ctl_file_conn_get(file); | ||
| 133 | if (fc) { | ||
| 134 | fc->max_background = val; | ||
| 135 | fuse_conn_put(fc); | ||
| 136 | } | ||
| 137 | } | ||
| 138 | |||
| 139 | return ret; | ||
| 140 | } | ||
| 141 | |||
| 142 | static ssize_t fuse_conn_congestion_threshold_read(struct file *file, | ||
| 143 | char __user *buf, size_t len, | ||
| 144 | loff_t *ppos) | ||
| 145 | { | ||
| 146 | struct fuse_conn *fc; | ||
| 147 | unsigned val; | ||
| 148 | |||
| 149 | fc = fuse_ctl_file_conn_get(file); | ||
| 150 | if (!fc) | ||
| 151 | return 0; | ||
| 152 | |||
| 153 | val = fc->congestion_threshold; | ||
| 154 | fuse_conn_put(fc); | ||
| 155 | |||
| 156 | return fuse_conn_limit_read(file, buf, len, ppos, val); | ||
| 157 | } | ||
| 158 | |||
| 159 | static ssize_t fuse_conn_congestion_threshold_write(struct file *file, | ||
| 160 | const char __user *buf, | ||
| 161 | size_t count, loff_t *ppos) | ||
| 162 | { | ||
| 163 | unsigned val; | ||
| 164 | ssize_t ret; | ||
| 165 | |||
| 166 | ret = fuse_conn_limit_write(file, buf, count, ppos, &val, | ||
| 167 | max_user_congthresh); | ||
| 168 | if (ret > 0) { | ||
| 169 | struct fuse_conn *fc = fuse_ctl_file_conn_get(file); | ||
| 170 | if (fc) { | ||
| 171 | fc->congestion_threshold = val; | ||
| 172 | fuse_conn_put(fc); | ||
| 173 | } | ||
| 174 | } | ||
| 175 | |||
| 176 | return ret; | ||
| 177 | } | ||
| 178 | |||
| 64 | static const struct file_operations fuse_ctl_abort_ops = { | 179 | static const struct file_operations fuse_ctl_abort_ops = { |
| 65 | .open = nonseekable_open, | 180 | .open = nonseekable_open, |
| 66 | .write = fuse_conn_abort_write, | 181 | .write = fuse_conn_abort_write, |
| @@ -71,6 +186,18 @@ static const struct file_operations fuse_ctl_waiting_ops = { | |||
| 71 | .read = fuse_conn_waiting_read, | 186 | .read = fuse_conn_waiting_read, |
| 72 | }; | 187 | }; |
| 73 | 188 | ||
| 189 | static const struct file_operations fuse_conn_max_background_ops = { | ||
| 190 | .open = nonseekable_open, | ||
| 191 | .read = fuse_conn_max_background_read, | ||
| 192 | .write = fuse_conn_max_background_write, | ||
| 193 | }; | ||
| 194 | |||
| 195 | static const struct file_operations fuse_conn_congestion_threshold_ops = { | ||
| 196 | .open = nonseekable_open, | ||
| 197 | .read = fuse_conn_congestion_threshold_read, | ||
| 198 | .write = fuse_conn_congestion_threshold_write, | ||
| 199 | }; | ||
| 200 | |||
| 74 | static struct dentry *fuse_ctl_add_dentry(struct dentry *parent, | 201 | static struct dentry *fuse_ctl_add_dentry(struct dentry *parent, |
| 75 | struct fuse_conn *fc, | 202 | struct fuse_conn *fc, |
| 76 | const char *name, | 203 | const char *name, |
| @@ -127,9 +254,14 @@ int fuse_ctl_add_conn(struct fuse_conn *fc) | |||
| 127 | goto err; | 254 | goto err; |
| 128 | 255 | ||
| 129 | if (!fuse_ctl_add_dentry(parent, fc, "waiting", S_IFREG | 0400, 1, | 256 | if (!fuse_ctl_add_dentry(parent, fc, "waiting", S_IFREG | 0400, 1, |
| 130 | NULL, &fuse_ctl_waiting_ops) || | 257 | NULL, &fuse_ctl_waiting_ops) || |
| 131 | !fuse_ctl_add_dentry(parent, fc, "abort", S_IFREG | 0200, 1, | 258 | !fuse_ctl_add_dentry(parent, fc, "abort", S_IFREG | 0200, 1, |
| 132 | NULL, &fuse_ctl_abort_ops)) | 259 | NULL, &fuse_ctl_abort_ops) || |
| 260 | !fuse_ctl_add_dentry(parent, fc, "max_background", S_IFREG | 0600, | ||
| 261 | 1, NULL, &fuse_conn_max_background_ops) || | ||
| 262 | !fuse_ctl_add_dentry(parent, fc, "congestion_threshold", | ||
| 263 | S_IFREG | 0600, 1, NULL, | ||
| 264 | &fuse_conn_congestion_threshold_ops)) | ||
| 133 | goto err; | 265 | goto err; |
| 134 | 266 | ||
| 135 | return 0; | 267 | return 0; |
| @@ -156,7 +288,7 @@ void fuse_ctl_remove_conn(struct fuse_conn *fc) | |||
| 156 | d_drop(dentry); | 288 | d_drop(dentry); |
| 157 | dput(dentry); | 289 | dput(dentry); |
| 158 | } | 290 | } |
| 159 | fuse_control_sb->s_root->d_inode->i_nlink--; | 291 | drop_nlink(fuse_control_sb->s_root->d_inode); |
| 160 | } | 292 | } |
| 161 | 293 | ||
| 162 | static int fuse_ctl_fill_super(struct super_block *sb, void *data, int silent) | 294 | static int fuse_ctl_fill_super(struct super_block *sb, void *data, int silent) |
diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c index 6484eb75acd6..51d9e33d634f 100644 --- a/fs/fuse/dev.c +++ b/fs/fuse/dev.c | |||
| @@ -250,7 +250,7 @@ static void queue_request(struct fuse_conn *fc, struct fuse_req *req) | |||
| 250 | 250 | ||
| 251 | static void flush_bg_queue(struct fuse_conn *fc) | 251 | static void flush_bg_queue(struct fuse_conn *fc) |
| 252 | { | 252 | { |
| 253 | while (fc->active_background < FUSE_MAX_BACKGROUND && | 253 | while (fc->active_background < fc->max_background && |
| 254 | !list_empty(&fc->bg_queue)) { | 254 | !list_empty(&fc->bg_queue)) { |
| 255 | struct fuse_req *req; | 255 | struct fuse_req *req; |
| 256 | 256 | ||
| @@ -280,11 +280,11 @@ __releases(&fc->lock) | |||
| 280 | list_del(&req->intr_entry); | 280 | list_del(&req->intr_entry); |
| 281 | req->state = FUSE_REQ_FINISHED; | 281 | req->state = FUSE_REQ_FINISHED; |
| 282 | if (req->background) { | 282 | if (req->background) { |
| 283 | if (fc->num_background == FUSE_MAX_BACKGROUND) { | 283 | if (fc->num_background == fc->max_background) { |
| 284 | fc->blocked = 0; | 284 | fc->blocked = 0; |
| 285 | wake_up_all(&fc->blocked_waitq); | 285 | wake_up_all(&fc->blocked_waitq); |
| 286 | } | 286 | } |
| 287 | if (fc->num_background == FUSE_CONGESTION_THRESHOLD && | 287 | if (fc->num_background == fc->congestion_threshold && |
| 288 | fc->connected && fc->bdi_initialized) { | 288 | fc->connected && fc->bdi_initialized) { |
| 289 | clear_bdi_congested(&fc->bdi, BLK_RW_SYNC); | 289 | clear_bdi_congested(&fc->bdi, BLK_RW_SYNC); |
| 290 | clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC); | 290 | clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC); |
| @@ -410,9 +410,9 @@ static void fuse_request_send_nowait_locked(struct fuse_conn *fc, | |||
| 410 | { | 410 | { |
| 411 | req->background = 1; | 411 | req->background = 1; |
| 412 | fc->num_background++; | 412 | fc->num_background++; |
| 413 | if (fc->num_background == FUSE_MAX_BACKGROUND) | 413 | if (fc->num_background == fc->max_background) |
| 414 | fc->blocked = 1; | 414 | fc->blocked = 1; |
| 415 | if (fc->num_background == FUSE_CONGESTION_THRESHOLD && | 415 | if (fc->num_background == fc->congestion_threshold && |
| 416 | fc->bdi_initialized) { | 416 | fc->bdi_initialized) { |
| 417 | set_bdi_congested(&fc->bdi, BLK_RW_SYNC); | 417 | set_bdi_congested(&fc->bdi, BLK_RW_SYNC); |
| 418 | set_bdi_congested(&fc->bdi, BLK_RW_ASYNC); | 418 | set_bdi_congested(&fc->bdi, BLK_RW_ASYNC); |
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h index 52b641fc0faf..fc9c79feb5f7 100644 --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h | |||
| @@ -25,12 +25,6 @@ | |||
| 25 | /** Max number of pages that can be used in a single read request */ | 25 | /** Max number of pages that can be used in a single read request */ |
| 26 | #define FUSE_MAX_PAGES_PER_REQ 32 | 26 | #define FUSE_MAX_PAGES_PER_REQ 32 |
| 27 | 27 | ||
| 28 | /** Maximum number of outstanding background requests */ | ||
| 29 | #define FUSE_MAX_BACKGROUND 12 | ||
| 30 | |||
| 31 | /** Congestion starts at 75% of maximum */ | ||
| 32 | #define FUSE_CONGESTION_THRESHOLD (FUSE_MAX_BACKGROUND * 75 / 100) | ||
| 33 | |||
| 34 | /** Bias for fi->writectr, meaning new writepages must not be sent */ | 28 | /** Bias for fi->writectr, meaning new writepages must not be sent */ |
| 35 | #define FUSE_NOWRITE INT_MIN | 29 | #define FUSE_NOWRITE INT_MIN |
| 36 | 30 | ||
| @@ -38,7 +32,7 @@ | |||
| 38 | #define FUSE_NAME_MAX 1024 | 32 | #define FUSE_NAME_MAX 1024 |
| 39 | 33 | ||
| 40 | /** Number of dentries for each connection in the control filesystem */ | 34 | /** Number of dentries for each connection in the control filesystem */ |
| 41 | #define FUSE_CTL_NUM_DENTRIES 3 | 35 | #define FUSE_CTL_NUM_DENTRIES 5 |
| 42 | 36 | ||
| 43 | /** If the FUSE_DEFAULT_PERMISSIONS flag is given, the filesystem | 37 | /** If the FUSE_DEFAULT_PERMISSIONS flag is given, the filesystem |
| 44 | module will check permissions based on the file mode. Otherwise no | 38 | module will check permissions based on the file mode. Otherwise no |
| @@ -55,6 +49,10 @@ extern struct list_head fuse_conn_list; | |||
| 55 | /** Global mutex protecting fuse_conn_list and the control filesystem */ | 49 | /** Global mutex protecting fuse_conn_list and the control filesystem */ |
| 56 | extern struct mutex fuse_mutex; | 50 | extern struct mutex fuse_mutex; |
| 57 | 51 | ||
| 52 | /** Module parameters */ | ||
| 53 | extern unsigned max_user_bgreq; | ||
| 54 | extern unsigned max_user_congthresh; | ||
| 55 | |||
| 58 | /** FUSE inode */ | 56 | /** FUSE inode */ |
| 59 | struct fuse_inode { | 57 | struct fuse_inode { |
| 60 | /** Inode data */ | 58 | /** Inode data */ |
| @@ -349,6 +347,12 @@ struct fuse_conn { | |||
| 349 | /** rbtree of fuse_files waiting for poll events indexed by ph */ | 347 | /** rbtree of fuse_files waiting for poll events indexed by ph */ |
| 350 | struct rb_root polled_files; | 348 | struct rb_root polled_files; |
| 351 | 349 | ||
| 350 | /** Maximum number of outstanding background requests */ | ||
| 351 | unsigned max_background; | ||
| 352 | |||
| 353 | /** Number of background requests at which congestion starts */ | ||
| 354 | unsigned congestion_threshold; | ||
| 355 | |||
| 352 | /** Number of requests currently in the background */ | 356 | /** Number of requests currently in the background */ |
| 353 | unsigned num_background; | 357 | unsigned num_background; |
| 354 | 358 | ||
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index e5dbecd87b0f..6da947daabda 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include <linux/seq_file.h> | 14 | #include <linux/seq_file.h> |
| 15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
| 16 | #include <linux/module.h> | 16 | #include <linux/module.h> |
| 17 | #include <linux/moduleparam.h> | ||
| 17 | #include <linux/parser.h> | 18 | #include <linux/parser.h> |
| 18 | #include <linux/statfs.h> | 19 | #include <linux/statfs.h> |
| 19 | #include <linux/random.h> | 20 | #include <linux/random.h> |
| @@ -28,10 +29,34 @@ static struct kmem_cache *fuse_inode_cachep; | |||
| 28 | struct list_head fuse_conn_list; | 29 | struct list_head fuse_conn_list; |
| 29 | DEFINE_MUTEX(fuse_mutex); | 30 | DEFINE_MUTEX(fuse_mutex); |
| 30 | 31 | ||
| 32 | static int set_global_limit(const char *val, struct kernel_param *kp); | ||
| 33 | |||
| 34 | unsigned max_user_bgreq; | ||
| 35 | module_param_call(max_user_bgreq, set_global_limit, param_get_uint, | ||
| 36 | &max_user_bgreq, 0644); | ||
| 37 | __MODULE_PARM_TYPE(max_user_bgreq, "uint"); | ||
| 38 | MODULE_PARM_DESC(max_user_bgreq, | ||
| 39 | "Global limit for the maximum number of backgrounded requests an " | ||
| 40 | "unprivileged user can set"); | ||
| 41 | |||
| 42 | unsigned max_user_congthresh; | ||
| 43 | module_param_call(max_user_congthresh, set_global_limit, param_get_uint, | ||
| 44 | &max_user_congthresh, 0644); | ||
| 45 | __MODULE_PARM_TYPE(max_user_congthresh, "uint"); | ||
| 46 | MODULE_PARM_DESC(max_user_congthresh, | ||
| 47 | "Global limit for the maximum congestion threshold an " | ||
| 48 | "unprivileged user can set"); | ||
| 49 | |||
| 31 | #define FUSE_SUPER_MAGIC 0x65735546 | 50 | #define FUSE_SUPER_MAGIC 0x65735546 |
| 32 | 51 | ||
| 33 | #define FUSE_DEFAULT_BLKSIZE 512 | 52 | #define FUSE_DEFAULT_BLKSIZE 512 |
| 34 | 53 | ||
| 54 | /** Maximum number of outstanding background requests */ | ||
| 55 | #define FUSE_DEFAULT_MAX_BACKGROUND 12 | ||
| 56 | |||
| 57 | /** Congestion starts at 75% of maximum */ | ||
| 58 | #define FUSE_DEFAULT_CONGESTION_THRESHOLD (FUSE_DEFAULT_MAX_BACKGROUND * 3 / 4) | ||
| 59 | |||
| 35 | struct fuse_mount_data { | 60 | struct fuse_mount_data { |
| 36 | int fd; | 61 | int fd; |
| 37 | unsigned rootmode; | 62 | unsigned rootmode; |
| @@ -517,6 +542,8 @@ void fuse_conn_init(struct fuse_conn *fc) | |||
| 517 | INIT_LIST_HEAD(&fc->bg_queue); | 542 | INIT_LIST_HEAD(&fc->bg_queue); |
| 518 | INIT_LIST_HEAD(&fc->entry); | 543 | INIT_LIST_HEAD(&fc->entry); |
| 519 | atomic_set(&fc->num_waiting, 0); | 544 | atomic_set(&fc->num_waiting, 0); |
| 545 | fc->max_background = FUSE_DEFAULT_MAX_BACKGROUND; | ||
| 546 | fc->congestion_threshold = FUSE_DEFAULT_CONGESTION_THRESHOLD; | ||
| 520 | fc->khctr = 0; | 547 | fc->khctr = 0; |
| 521 | fc->polled_files = RB_ROOT; | 548 | fc->polled_files = RB_ROOT; |
| 522 | fc->reqctr = 0; | 549 | fc->reqctr = 0; |
| @@ -727,6 +754,54 @@ static const struct super_operations fuse_super_operations = { | |||
| 727 | .show_options = fuse_show_options, | 754 | .show_options = fuse_show_options, |
| 728 | }; | 755 | }; |
| 729 | 756 | ||
| 757 | static void sanitize_global_limit(unsigned *limit) | ||
| 758 | { | ||
| 759 | if (*limit == 0) | ||
| 760 | *limit = ((num_physpages << PAGE_SHIFT) >> 13) / | ||
| 761 | sizeof(struct fuse_req); | ||
| 762 | |||
| 763 | if (*limit >= 1 << 16) | ||
| 764 | *limit = (1 << 16) - 1; | ||
| 765 | } | ||
| 766 | |||
| 767 | static int set_global_limit(const char *val, struct kernel_param *kp) | ||
| 768 | { | ||
| 769 | int rv; | ||
| 770 | |||
| 771 | rv = param_set_uint(val, kp); | ||
| 772 | if (rv) | ||
| 773 | return rv; | ||
| 774 | |||
| 775 | sanitize_global_limit((unsigned *)kp->arg); | ||
| 776 | |||
| 777 | return 0; | ||
| 778 | } | ||
| 779 | |||
| 780 | static void process_init_limits(struct fuse_conn *fc, struct fuse_init_out *arg) | ||
| 781 | { | ||
| 782 | int cap_sys_admin = capable(CAP_SYS_ADMIN); | ||
| 783 | |||
| 784 | if (arg->minor < 13) | ||
| 785 | return; | ||
| 786 | |||
| 787 | sanitize_global_limit(&max_user_bgreq); | ||
| 788 | sanitize_global_limit(&max_user_congthresh); | ||
| 789 | |||
| 790 | if (arg->max_background) { | ||
| 791 | fc->max_background = arg->max_background; | ||
| 792 | |||
| 793 | if (!cap_sys_admin && fc->max_background > max_user_bgreq) | ||
| 794 | fc->max_background = max_user_bgreq; | ||
| 795 | } | ||
| 796 | if (arg->congestion_threshold) { | ||
| 797 | fc->congestion_threshold = arg->congestion_threshold; | ||
| 798 | |||
| 799 | if (!cap_sys_admin && | ||
| 800 | fc->congestion_threshold > max_user_congthresh) | ||
| 801 | fc->congestion_threshold = max_user_congthresh; | ||
| 802 | } | ||
| 803 | } | ||
| 804 | |||
| 730 | static void process_init_reply(struct fuse_conn *fc, struct fuse_req *req) | 805 | static void process_init_reply(struct fuse_conn *fc, struct fuse_req *req) |
| 731 | { | 806 | { |
| 732 | struct fuse_init_out *arg = &req->misc.init_out; | 807 | struct fuse_init_out *arg = &req->misc.init_out; |
| @@ -736,6 +811,8 @@ static void process_init_reply(struct fuse_conn *fc, struct fuse_req *req) | |||
| 736 | else { | 811 | else { |
| 737 | unsigned long ra_pages; | 812 | unsigned long ra_pages; |
| 738 | 813 | ||
| 814 | process_init_limits(fc, arg); | ||
| 815 | |||
| 739 | if (arg->minor >= 6) { | 816 | if (arg->minor >= 6) { |
| 740 | ra_pages = arg->max_readahead / PAGE_CACHE_SIZE; | 817 | ra_pages = arg->max_readahead / PAGE_CACHE_SIZE; |
| 741 | if (arg->flags & FUSE_ASYNC_READ) | 818 | if (arg->flags & FUSE_ASYNC_READ) |
| @@ -1150,6 +1227,9 @@ static int __init fuse_init(void) | |||
| 1150 | if (res) | 1227 | if (res) |
| 1151 | goto err_sysfs_cleanup; | 1228 | goto err_sysfs_cleanup; |
| 1152 | 1229 | ||
| 1230 | sanitize_global_limit(&max_user_bgreq); | ||
| 1231 | sanitize_global_limit(&max_user_congthresh); | ||
| 1232 | |||
| 1153 | return 0; | 1233 | return 0; |
| 1154 | 1234 | ||
| 1155 | err_sysfs_cleanup: | 1235 | err_sysfs_cleanup: |
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index cf593bf9fd32..3e2925a34bf0 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h | |||
| @@ -30,6 +30,10 @@ | |||
| 30 | * - add umask flag to input argument of open, mknod and mkdir | 30 | * - add umask flag to input argument of open, mknod and mkdir |
| 31 | * - add notification messages for invalidation of inodes and | 31 | * - add notification messages for invalidation of inodes and |
| 32 | * directory entries | 32 | * directory entries |
| 33 | * | ||
| 34 | * 7.13 | ||
| 35 | * - make max number of background requests and congestion threshold | ||
| 36 | * tunables | ||
| 33 | */ | 37 | */ |
| 34 | 38 | ||
| 35 | #ifndef _LINUX_FUSE_H | 39 | #ifndef _LINUX_FUSE_H |
| @@ -37,11 +41,31 @@ | |||
| 37 | 41 | ||
| 38 | #include <linux/types.h> | 42 | #include <linux/types.h> |
| 39 | 43 | ||
| 44 | /* | ||
| 45 | * Version negotiation: | ||
| 46 | * | ||
| 47 | * Both the kernel and userspace send the version they support in the | ||
| 48 | * INIT request and reply respectively. | ||
| 49 | * | ||
| 50 | * If the major versions match then both shall use the smallest | ||
| 51 | * of the two minor versions for communication. | ||
| 52 | * | ||
| 53 | * If the kernel supports a larger major version, then userspace shall | ||
| 54 | * reply with the major version it supports, ignore the rest of the | ||
| 55 | * INIT message and expect a new INIT message from the kernel with a | ||
| 56 | * matching major version. | ||
| 57 | * | ||
| 58 | * If the library supports a larger major version, then it shall fall | ||
| 59 | * back to the major protocol version sent by the kernel for | ||
| 60 | * communication and reply with that major version (and an arbitrary | ||
| 61 | * supported minor version). | ||
| 62 | */ | ||
| 63 | |||
| 40 | /** Version number of this interface */ | 64 | /** Version number of this interface */ |
| 41 | #define FUSE_KERNEL_VERSION 7 | 65 | #define FUSE_KERNEL_VERSION 7 |
| 42 | 66 | ||
| 43 | /** Minor version number of this interface */ | 67 | /** Minor version number of this interface */ |
| 44 | #define FUSE_KERNEL_MINOR_VERSION 12 | 68 | #define FUSE_KERNEL_MINOR_VERSION 13 |
| 45 | 69 | ||
| 46 | /** The node ID of the root inode */ | 70 | /** The node ID of the root inode */ |
| 47 | #define FUSE_ROOT_ID 1 | 71 | #define FUSE_ROOT_ID 1 |
| @@ -427,7 +451,8 @@ struct fuse_init_out { | |||
| 427 | __u32 minor; | 451 | __u32 minor; |
| 428 | __u32 max_readahead; | 452 | __u32 max_readahead; |
| 429 | __u32 flags; | 453 | __u32 flags; |
| 430 | __u32 unused; | 454 | __u16 max_background; |
| 455 | __u16 congestion_threshold; | ||
| 431 | __u32 max_write; | 456 | __u32 max_write; |
| 432 | }; | 457 | }; |
| 433 | 458 | ||
