Lines Matching refs:as
293 struct afs_super_info *as = sb->s_fs_info; in afs_test_super() local
295 return as->volume == as1->volume; in afs_test_super()
310 struct afs_super_info *as = sb->s_fs_info; in afs_fill_super() local
322 sb->s_bdi = &as->volume->bdi; in afs_fill_super()
323 strlcpy(sb->s_id, as->volume->vlocation->vldb.name, sizeof(sb->s_id)); in afs_fill_super()
326 fid.vid = as->volume->vid; in afs_fill_super()
362 struct afs_super_info *as; in afs_mount() local
401 as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL); in afs_mount()
402 if (!as) { in afs_mount()
407 as->volume = vol; in afs_mount()
410 sb = sget(fs_type, afs_test_super, afs_set_super, flags, as); in afs_mount()
414 kfree(as); in afs_mount()
432 kfree(as); in afs_mount()
450 struct afs_super_info *as = sb->s_fs_info; in afs_kill_super() local
452 afs_put_volume(as->volume); in afs_kill_super()
453 kfree(as); in afs_kill_super()