Lines Matching defs:sb
36 zpl_inode_alloc(struct super_block *sb)
40 VERIFY3S(zfs_inode_alloc(sb, &ip), ==, 0);
96 zpl_put_super(struct super_block *sb)
102 error = -zfs_umount(sb);
108 zpl_sync_fs(struct super_block *sb, int wait)
116 error = -zfs_sync(sb, wait, cr);
161 zpl_remount_fs(struct super_block *sb, int *flags, char *data)
168 error = -zfs_remount(sb, flags, &zm);
250 zpl_fill_super(struct super_block *sb, void *data, int silent)
257 error = -zfs_domount(sb, zm, silent);
358 struct super_block *sb = zpl_mount_impl(fs_type, flags, &zm);
359 if (IS_ERR(sb))
360 return (ERR_CAST(sb));
362 return (dget(sb->s_root));
366 zpl_kill_sb(struct super_block *sb)
368 zfs_preumount(sb);
369 kill_anon_super(sb);
375 struct super_block *sb = (struct super_block *)arg;
385 if (atomic_inc_not_zero(&sb->s_active)) {
386 (void) -zfs_prune(sb, nr_to_scan, &objects);
387 atomic_dec(&sb->s_active);