]> asedeno.scripts.mit.edu Git - linux.git/blob - fs/afs/super.c
afs: Add fs_context support
[linux.git] / fs / afs / super.c
1 /* AFS superblock handling
2  *
3  * Copyright (c) 2002, 2007, 2018 Red Hat, Inc. All rights reserved.
4  *
5  * This software may be freely redistributed under the terms of the
6  * GNU General Public License.
7  *
8  * You should have received a copy of the GNU General Public License
9  * along with this program; if not, write to the Free Software
10  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
11  *
12  * Authors: David Howells <dhowells@redhat.com>
13  *          David Woodhouse <dwmw2@infradead.org>
14  *
15  */
16
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/mount.h>
20 #include <linux/init.h>
21 #include <linux/slab.h>
22 #include <linux/fs.h>
23 #include <linux/pagemap.h>
24 #include <linux/fs_parser.h>
25 #include <linux/statfs.h>
26 #include <linux/sched.h>
27 #include <linux/nsproxy.h>
28 #include <linux/magic.h>
29 #include <net/net_namespace.h>
30 #include "internal.h"
31
32 static void afs_i_init_once(void *foo);
33 static void afs_kill_super(struct super_block *sb);
34 static struct inode *afs_alloc_inode(struct super_block *sb);
35 static void afs_destroy_inode(struct inode *inode);
36 static int afs_statfs(struct dentry *dentry, struct kstatfs *buf);
37 static int afs_show_devname(struct seq_file *m, struct dentry *root);
38 static int afs_show_options(struct seq_file *m, struct dentry *root);
39 static int afs_init_fs_context(struct fs_context *fc);
40 static const struct fs_parameter_description afs_fs_parameters;
41
42 struct file_system_type afs_fs_type = {
43         .owner                  = THIS_MODULE,
44         .name                   = "afs",
45         .init_fs_context        = afs_init_fs_context,
46         .parameters             = &afs_fs_parameters,
47         .kill_sb                = afs_kill_super,
48         .fs_flags               = 0,
49 };
50 MODULE_ALIAS_FS("afs");
51
52 int afs_net_id;
53
54 static const struct super_operations afs_super_ops = {
55         .statfs         = afs_statfs,
56         .alloc_inode    = afs_alloc_inode,
57         .drop_inode     = afs_drop_inode,
58         .destroy_inode  = afs_destroy_inode,
59         .evict_inode    = afs_evict_inode,
60         .show_devname   = afs_show_devname,
61         .show_options   = afs_show_options,
62 };
63
64 static struct kmem_cache *afs_inode_cachep;
65 static atomic_t afs_count_active_inodes;
66
67 enum afs_param {
68         Opt_autocell,
69         Opt_cell,
70         Opt_dyn,
71         Opt_rwpath,
72         Opt_source,
73         Opt_vol,
74 };
75
76 static const struct fs_parameter_spec afs_param_specs[] = {
77         fsparam_flag  ("autocell",      Opt_autocell),
78         fsparam_string("cell",          Opt_cell),
79         fsparam_flag  ("dyn",           Opt_dyn),
80         fsparam_flag  ("rwpath",        Opt_rwpath),
81         fsparam_string("source",        Opt_source),
82         fsparam_string("vol",           Opt_vol),
83         {}
84 };
85
86 static const struct fs_parameter_description afs_fs_parameters = {
87         .name           = "kAFS",
88         .specs          = afs_param_specs,
89 };
90
91 /*
92  * initialise the filesystem
93  */
94 int __init afs_fs_init(void)
95 {
96         int ret;
97
98         _enter("");
99
100         /* create ourselves an inode cache */
101         atomic_set(&afs_count_active_inodes, 0);
102
103         ret = -ENOMEM;
104         afs_inode_cachep = kmem_cache_create("afs_inode_cache",
105                                              sizeof(struct afs_vnode),
106                                              0,
107                                              SLAB_HWCACHE_ALIGN|SLAB_ACCOUNT,
108                                              afs_i_init_once);
109         if (!afs_inode_cachep) {
110                 printk(KERN_NOTICE "kAFS: Failed to allocate inode cache\n");
111                 return ret;
112         }
113
114         /* now export our filesystem to lesser mortals */
115         ret = register_filesystem(&afs_fs_type);
116         if (ret < 0) {
117                 kmem_cache_destroy(afs_inode_cachep);
118                 _leave(" = %d", ret);
119                 return ret;
120         }
121
122         _leave(" = 0");
123         return 0;
124 }
125
126 /*
127  * clean up the filesystem
128  */
129 void afs_fs_exit(void)
130 {
131         _enter("");
132
133         afs_mntpt_kill_timer();
134         unregister_filesystem(&afs_fs_type);
135
136         if (atomic_read(&afs_count_active_inodes) != 0) {
137                 printk("kAFS: %d active inode objects still present\n",
138                        atomic_read(&afs_count_active_inodes));
139                 BUG();
140         }
141
142         /*
143          * Make sure all delayed rcu free inodes are flushed before we
144          * destroy cache.
145          */
146         rcu_barrier();
147         kmem_cache_destroy(afs_inode_cachep);
148         _leave("");
149 }
150
151 /*
152  * Display the mount device name in /proc/mounts.
153  */
154 static int afs_show_devname(struct seq_file *m, struct dentry *root)
155 {
156         struct afs_super_info *as = AFS_FS_S(root->d_sb);
157         struct afs_volume *volume = as->volume;
158         struct afs_cell *cell = as->cell;
159         const char *suf = "";
160         char pref = '%';
161
162         if (as->dyn_root) {
163                 seq_puts(m, "none");
164                 return 0;
165         }
166
167         switch (volume->type) {
168         case AFSVL_RWVOL:
169                 break;
170         case AFSVL_ROVOL:
171                 pref = '#';
172                 if (volume->type_force)
173                         suf = ".readonly";
174                 break;
175         case AFSVL_BACKVOL:
176                 pref = '#';
177                 suf = ".backup";
178                 break;
179         }
180
181         seq_printf(m, "%c%s:%s%s", pref, cell->name, volume->name, suf);
182         return 0;
183 }
184
185 /*
186  * Display the mount options in /proc/mounts.
187  */
188 static int afs_show_options(struct seq_file *m, struct dentry *root)
189 {
190         struct afs_super_info *as = AFS_FS_S(root->d_sb);
191
192         if (as->dyn_root)
193                 seq_puts(m, ",dyn");
194         if (test_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(d_inode(root))->flags))
195                 seq_puts(m, ",autocell");
196         return 0;
197 }
198
199 /*
200  * Parse the source name to get cell name, volume name, volume type and R/W
201  * selector.
202  *
203  * This can be one of the following:
204  *      "%[cell:]volume[.]"             R/W volume
205  *      "#[cell:]volume[.]"             R/O or R/W volume (rwpath=0),
206  *                                       or R/W (rwpath=1) volume
207  *      "%[cell:]volume.readonly"       R/O volume
208  *      "#[cell:]volume.readonly"       R/O volume
209  *      "%[cell:]volume.backup"         Backup volume
210  *      "#[cell:]volume.backup"         Backup volume
211  */
212 static int afs_parse_source(struct fs_context *fc, struct fs_parameter *param)
213 {
214         struct afs_fs_context *ctx = fc->fs_private;
215         struct afs_cell *cell;
216         const char *cellname, *suffix, *name = param->string;
217         int cellnamesz;
218
219         _enter(",%s", name);
220
221         if (!name) {
222                 printk(KERN_ERR "kAFS: no volume name specified\n");
223                 return -EINVAL;
224         }
225
226         if ((name[0] != '%' && name[0] != '#') || !name[1]) {
227                 /* To use dynroot, we don't want to have to provide a source */
228                 if (strcmp(name, "none") == 0) {
229                         ctx->no_cell = true;
230                         return 0;
231                 }
232                 printk(KERN_ERR "kAFS: unparsable volume name\n");
233                 return -EINVAL;
234         }
235
236         /* determine the type of volume we're looking for */
237         ctx->type = AFSVL_ROVOL;
238         ctx->force = false;
239         if (ctx->rwpath || name[0] == '%') {
240                 ctx->type = AFSVL_RWVOL;
241                 ctx->force = true;
242         }
243         name++;
244
245         /* split the cell name out if there is one */
246         ctx->volname = strchr(name, ':');
247         if (ctx->volname) {
248                 cellname = name;
249                 cellnamesz = ctx->volname - name;
250                 ctx->volname++;
251         } else {
252                 ctx->volname = name;
253                 cellname = NULL;
254                 cellnamesz = 0;
255         }
256
257         /* the volume type is further affected by a possible suffix */
258         suffix = strrchr(ctx->volname, '.');
259         if (suffix) {
260                 if (strcmp(suffix, ".readonly") == 0) {
261                         ctx->type = AFSVL_ROVOL;
262                         ctx->force = true;
263                 } else if (strcmp(suffix, ".backup") == 0) {
264                         ctx->type = AFSVL_BACKVOL;
265                         ctx->force = true;
266                 } else if (suffix[1] == 0) {
267                 } else {
268                         suffix = NULL;
269                 }
270         }
271
272         ctx->volnamesz = suffix ?
273                 suffix - ctx->volname : strlen(ctx->volname);
274
275         _debug("cell %*.*s [%p]",
276                cellnamesz, cellnamesz, cellname ?: "", ctx->cell);
277
278         /* lookup the cell record */
279         if (cellname) {
280                 cell = afs_lookup_cell(ctx->net, cellname, cellnamesz,
281                                        NULL, false);
282                 if (IS_ERR(cell)) {
283                         pr_err("kAFS: unable to lookup cell '%*.*s'\n",
284                                cellnamesz, cellnamesz, cellname ?: "");
285                         return PTR_ERR(cell);
286                 }
287                 afs_put_cell(ctx->net, ctx->cell);
288                 ctx->cell = cell;
289         }
290
291         _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
292                ctx->cell->name, ctx->cell,
293                ctx->volnamesz, ctx->volnamesz, ctx->volname,
294                suffix ?: "-", ctx->type, ctx->force ? " FORCE" : "");
295
296         fc->source = param->string;
297         param->string = NULL;
298         return 0;
299 }
300
301 /*
302  * Parse a single mount parameter.
303  */
304 static int afs_parse_param(struct fs_context *fc, struct fs_parameter *param)
305 {
306         struct fs_parse_result result;
307         struct afs_fs_context *ctx = fc->fs_private;
308         struct afs_cell *cell;
309         int opt;
310
311         opt = fs_parse(fc, &afs_fs_parameters, param, &result);
312         if (opt < 0)
313                 return opt;
314
315         switch (opt) {
316         case Opt_cell:
317                 if (param->size <= 0)
318                         return -EINVAL;
319                 if (param->size > AFS_MAXCELLNAME)
320                         return -ENAMETOOLONG;
321
322                 rcu_read_lock();
323                 cell = afs_lookup_cell_rcu(ctx->net, param->string, param->size);
324                 rcu_read_unlock();
325                 if (IS_ERR(cell))
326                         return PTR_ERR(cell);
327                 afs_put_cell(ctx->net, ctx->cell);
328                 ctx->cell = cell;
329                 break;
330
331         case Opt_source:
332                 return afs_parse_source(fc, param);
333
334         case Opt_autocell:
335                 ctx->autocell = true;
336                 break;
337
338         case Opt_dyn:
339                 ctx->dyn_root = true;
340                 break;
341
342         case Opt_rwpath:
343                 ctx->rwpath = true;
344                 break;
345
346         case Opt_vol:
347                 return invalf(fc, "'vol' param is obsolete");
348
349         default:
350                 return -EINVAL;
351         }
352
353         _leave(" = 0");
354         return 0;
355 }
356
357 /*
358  * Validate the options, get the cell key and look up the volume.
359  */
360 static int afs_validate_fc(struct fs_context *fc)
361 {
362         struct afs_fs_context *ctx = fc->fs_private;
363         struct afs_volume *volume;
364         struct key *key;
365
366         if (!ctx->dyn_root) {
367                 if (ctx->no_cell) {
368                         pr_warn("kAFS: Can only specify source 'none' with -o dyn\n");
369                         return -EINVAL;
370                 }
371
372                 if (!ctx->cell) {
373                         pr_warn("kAFS: No cell specified\n");
374                         return -EDESTADDRREQ;
375                 }
376
377                 /* We try to do the mount securely. */
378                 key = afs_request_key(ctx->cell);
379                 if (IS_ERR(key))
380                         return PTR_ERR(key);
381
382                 ctx->key = key;
383
384                 if (ctx->volume) {
385                         afs_put_volume(ctx->cell, ctx->volume);
386                         ctx->volume = NULL;
387                 }
388
389                 volume = afs_create_volume(ctx);
390                 if (IS_ERR(volume))
391                         return PTR_ERR(volume);
392
393                 ctx->volume = volume;
394         }
395
396         return 0;
397 }
398
399 /*
400  * check a superblock to see if it's the one we're looking for
401  */
402 static int afs_test_super(struct super_block *sb, struct fs_context *fc)
403 {
404         struct afs_fs_context *ctx = fc->fs_private;
405         struct afs_super_info *as = AFS_FS_S(sb);
406
407         return (as->net_ns == fc->net_ns &&
408                 as->volume &&
409                 as->volume->vid == ctx->volume->vid &&
410                 !as->dyn_root);
411 }
412
413 static int afs_dynroot_test_super(struct super_block *sb, struct fs_context *fc)
414 {
415         struct afs_super_info *as = AFS_FS_S(sb);
416
417         return (as->net_ns == fc->net_ns &&
418                 as->dyn_root);
419 }
420
421 static int afs_set_super(struct super_block *sb, struct fs_context *fc)
422 {
423         return set_anon_super(sb, NULL);
424 }
425
426 /*
427  * fill in the superblock
428  */
429 static int afs_fill_super(struct super_block *sb, struct afs_fs_context *ctx)
430 {
431         struct afs_super_info *as = AFS_FS_S(sb);
432         struct afs_fid fid;
433         struct inode *inode = NULL;
434         int ret;
435
436         _enter("");
437
438         /* fill in the superblock */
439         sb->s_blocksize         = PAGE_SIZE;
440         sb->s_blocksize_bits    = PAGE_SHIFT;
441         sb->s_magic             = AFS_FS_MAGIC;
442         sb->s_op                = &afs_super_ops;
443         if (!as->dyn_root)
444                 sb->s_xattr     = afs_xattr_handlers;
445         ret = super_setup_bdi(sb);
446         if (ret)
447                 return ret;
448         sb->s_bdi->ra_pages     = VM_MAX_READAHEAD * 1024 / PAGE_SIZE;
449
450         /* allocate the root inode and dentry */
451         if (as->dyn_root) {
452                 inode = afs_iget_pseudo_dir(sb, true);
453                 sb->s_flags     |= SB_RDONLY;
454         } else {
455                 sprintf(sb->s_id, "%llu", as->volume->vid);
456                 afs_activate_volume(as->volume);
457                 fid.vid         = as->volume->vid;
458                 fid.vnode       = 1;
459                 fid.vnode_hi    = 0;
460                 fid.unique      = 1;
461                 inode = afs_iget(sb, ctx->key, &fid, NULL, NULL, NULL);
462         }
463
464         if (IS_ERR(inode))
465                 return PTR_ERR(inode);
466
467         if (ctx->autocell || as->dyn_root)
468                 set_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(inode)->flags);
469
470         ret = -ENOMEM;
471         sb->s_root = d_make_root(inode);
472         if (!sb->s_root)
473                 goto error;
474
475         if (as->dyn_root) {
476                 sb->s_d_op = &afs_dynroot_dentry_operations;
477                 ret = afs_dynroot_populate(sb);
478                 if (ret < 0)
479                         goto error;
480         } else {
481                 sb->s_d_op = &afs_fs_dentry_operations;
482         }
483
484         _leave(" = 0");
485         return 0;
486
487 error:
488         _leave(" = %d", ret);
489         return ret;
490 }
491
492 static struct afs_super_info *afs_alloc_sbi(struct fs_context *fc)
493 {
494         struct afs_fs_context *ctx = fc->fs_private;
495         struct afs_super_info *as;
496
497         as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL);
498         if (as) {
499                 as->net_ns = get_net(fc->net_ns);
500                 if (ctx->dyn_root) {
501                         as->dyn_root = true;
502                 } else {
503                         as->cell = afs_get_cell(ctx->cell);
504                         as->volume = __afs_get_volume(ctx->volume);
505                 }
506         }
507         return as;
508 }
509
510 static void afs_destroy_sbi(struct afs_super_info *as)
511 {
512         if (as) {
513                 afs_put_volume(as->cell, as->volume);
514                 afs_put_cell(afs_net(as->net_ns), as->cell);
515                 put_net(as->net_ns);
516                 kfree(as);
517         }
518 }
519
520 static void afs_kill_super(struct super_block *sb)
521 {
522         struct afs_super_info *as = AFS_FS_S(sb);
523         struct afs_net *net = afs_net(as->net_ns);
524
525         if (as->dyn_root)
526                 afs_dynroot_depopulate(sb);
527
528         /* Clear the callback interests (which will do ilookup5) before
529          * deactivating the superblock.
530          */
531         if (as->volume)
532                 afs_clear_callback_interests(net, as->volume->servers);
533         kill_anon_super(sb);
534         if (as->volume)
535                 afs_deactivate_volume(as->volume);
536         afs_destroy_sbi(as);
537 }
538
539 /*
540  * Get an AFS superblock and root directory.
541  */
542 static int afs_get_tree(struct fs_context *fc)
543 {
544         struct afs_fs_context *ctx = fc->fs_private;
545         struct super_block *sb;
546         struct afs_super_info *as;
547         int ret;
548
549         ret = afs_validate_fc(fc);
550         if (ret)
551                 goto error;
552
553         _enter("");
554
555         /* allocate a superblock info record */
556         ret = -ENOMEM;
557         as = afs_alloc_sbi(fc);
558         if (!as)
559                 goto error;
560         fc->s_fs_info = as;
561
562         /* allocate a deviceless superblock */
563         sb = sget_fc(fc,
564                      as->dyn_root ? afs_dynroot_test_super : afs_test_super,
565                      afs_set_super);
566         if (IS_ERR(sb)) {
567                 ret = PTR_ERR(sb);
568                 goto error;
569         }
570
571         if (!sb->s_root) {
572                 /* initial superblock/root creation */
573                 _debug("create");
574                 ret = afs_fill_super(sb, ctx);
575                 if (ret < 0)
576                         goto error_sb;
577                 sb->s_flags |= SB_ACTIVE;
578         } else {
579                 _debug("reuse");
580                 ASSERTCMP(sb->s_flags, &, SB_ACTIVE);
581         }
582
583         fc->root = dget(sb->s_root);
584         _leave(" = 0 [%p]", sb);
585         return 0;
586
587 error_sb:
588         deactivate_locked_super(sb);
589 error:
590         _leave(" = %d", ret);
591         return ret;
592 }
593
594 static void afs_free_fc(struct fs_context *fc)
595 {
596         struct afs_fs_context *ctx = fc->fs_private;
597
598         afs_destroy_sbi(fc->s_fs_info);
599         afs_put_volume(ctx->cell, ctx->volume);
600         afs_put_cell(ctx->net, ctx->cell);
601         key_put(ctx->key);
602         kfree(ctx);
603 }
604
605 static const struct fs_context_operations afs_context_ops = {
606         .free           = afs_free_fc,
607         .parse_param    = afs_parse_param,
608         .get_tree       = afs_get_tree,
609 };
610
611 /*
612  * Set up the filesystem mount context.
613  */
614 static int afs_init_fs_context(struct fs_context *fc)
615 {
616         struct afs_fs_context *ctx;
617         struct afs_cell *cell;
618
619         if (current->nsproxy->net_ns != &init_net)
620                 return -EINVAL;
621
622         ctx = kzalloc(sizeof(struct afs_fs_context), GFP_KERNEL);
623         if (!ctx)
624                 return -ENOMEM;
625
626         ctx->type = AFSVL_ROVOL;
627         ctx->net = afs_net(fc->net_ns);
628
629         /* Default to the workstation cell. */
630         rcu_read_lock();
631         cell = afs_lookup_cell_rcu(ctx->net, NULL, 0);
632         rcu_read_unlock();
633         if (IS_ERR(cell))
634                 cell = NULL;
635         ctx->cell = cell;
636
637         fc->fs_private = ctx;
638         fc->ops = &afs_context_ops;
639         return 0;
640 }
641
642 /*
643  * Initialise an inode cache slab element prior to any use.  Note that
644  * afs_alloc_inode() *must* reset anything that could incorrectly leak from one
645  * inode to another.
646  */
647 static void afs_i_init_once(void *_vnode)
648 {
649         struct afs_vnode *vnode = _vnode;
650
651         memset(vnode, 0, sizeof(*vnode));
652         inode_init_once(&vnode->vfs_inode);
653         mutex_init(&vnode->io_lock);
654         init_rwsem(&vnode->validate_lock);
655         spin_lock_init(&vnode->wb_lock);
656         spin_lock_init(&vnode->lock);
657         INIT_LIST_HEAD(&vnode->wb_keys);
658         INIT_LIST_HEAD(&vnode->pending_locks);
659         INIT_LIST_HEAD(&vnode->granted_locks);
660         INIT_DELAYED_WORK(&vnode->lock_work, afs_lock_work);
661         seqlock_init(&vnode->cb_lock);
662 }
663
664 /*
665  * allocate an AFS inode struct from our slab cache
666  */
667 static struct inode *afs_alloc_inode(struct super_block *sb)
668 {
669         struct afs_vnode *vnode;
670
671         vnode = kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL);
672         if (!vnode)
673                 return NULL;
674
675         atomic_inc(&afs_count_active_inodes);
676
677         /* Reset anything that shouldn't leak from one inode to the next. */
678         memset(&vnode->fid, 0, sizeof(vnode->fid));
679         memset(&vnode->status, 0, sizeof(vnode->status));
680
681         vnode->volume           = NULL;
682         vnode->lock_key         = NULL;
683         vnode->permit_cache     = NULL;
684         vnode->cb_interest      = NULL;
685 #ifdef CONFIG_AFS_FSCACHE
686         vnode->cache            = NULL;
687 #endif
688
689         vnode->flags            = 1 << AFS_VNODE_UNSET;
690         vnode->cb_type          = 0;
691         vnode->lock_state       = AFS_VNODE_LOCK_NONE;
692
693         _leave(" = %p", &vnode->vfs_inode);
694         return &vnode->vfs_inode;
695 }
696
697 static void afs_i_callback(struct rcu_head *head)
698 {
699         struct inode *inode = container_of(head, struct inode, i_rcu);
700         struct afs_vnode *vnode = AFS_FS_I(inode);
701         kmem_cache_free(afs_inode_cachep, vnode);
702 }
703
704 /*
705  * destroy an AFS inode struct
706  */
707 static void afs_destroy_inode(struct inode *inode)
708 {
709         struct afs_vnode *vnode = AFS_FS_I(inode);
710
711         _enter("%p{%llx:%llu}", inode, vnode->fid.vid, vnode->fid.vnode);
712
713         _debug("DESTROY INODE %p", inode);
714
715         ASSERTCMP(vnode->cb_interest, ==, NULL);
716
717         call_rcu(&inode->i_rcu, afs_i_callback);
718         atomic_dec(&afs_count_active_inodes);
719 }
720
721 /*
722  * return information about an AFS volume
723  */
724 static int afs_statfs(struct dentry *dentry, struct kstatfs *buf)
725 {
726         struct afs_super_info *as = AFS_FS_S(dentry->d_sb);
727         struct afs_fs_cursor fc;
728         struct afs_volume_status vs;
729         struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
730         struct key *key;
731         int ret;
732
733         buf->f_type     = dentry->d_sb->s_magic;
734         buf->f_bsize    = AFS_BLOCK_SIZE;
735         buf->f_namelen  = AFSNAMEMAX - 1;
736
737         if (as->dyn_root) {
738                 buf->f_blocks   = 1;
739                 buf->f_bavail   = 0;
740                 buf->f_bfree    = 0;
741                 return 0;
742         }
743
744         key = afs_request_key(vnode->volume->cell);
745         if (IS_ERR(key))
746                 return PTR_ERR(key);
747
748         ret = -ERESTARTSYS;
749         if (afs_begin_vnode_operation(&fc, vnode, key)) {
750                 fc.flags |= AFS_FS_CURSOR_NO_VSLEEP;
751                 while (afs_select_fileserver(&fc)) {
752                         fc.cb_break = afs_calc_vnode_cb_break(vnode);
753                         afs_fs_get_volume_status(&fc, &vs);
754                 }
755
756                 afs_check_for_remote_deletion(&fc, fc.vnode);
757                 afs_vnode_commit_status(&fc, vnode, fc.cb_break);
758                 ret = afs_end_vnode_operation(&fc);
759         }
760
761         key_put(key);
762
763         if (ret == 0) {
764                 if (vs.max_quota == 0)
765                         buf->f_blocks = vs.part_max_blocks;
766                 else
767                         buf->f_blocks = vs.max_quota;
768                 buf->f_bavail = buf->f_bfree = buf->f_blocks - vs.blocks_in_use;
769         }
770
771         return ret;
772 }