Lines Matching refs:as
285 struct afs_super_info *as = sb->s_fs_info; in afs_test_super() local
287 return as->volume == as1->volume; in afs_test_super()
302 struct afs_super_info *as = sb->s_fs_info; in afs_fill_super() local
314 sb->s_bdi = &as->volume->bdi; in afs_fill_super()
315 strlcpy(sb->s_id, as->volume->vlocation->vldb.name, sizeof(sb->s_id)); in afs_fill_super()
318 fid.vid = as->volume->vid; in afs_fill_super()
354 struct afs_super_info *as; in afs_mount() local
389 as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL); in afs_mount()
390 if (!as) { in afs_mount()
395 as->volume = vol; in afs_mount()
398 sb = sget(fs_type, afs_test_super, afs_set_super, as); in afs_mount()
402 kfree(as); in afs_mount()
421 kfree(as); in afs_mount()
439 struct afs_super_info *as = sb->s_fs_info; in afs_kill_super() local
441 afs_put_volume(as->volume); in afs_kill_super()
442 kfree(as); in afs_kill_super()