Lines Matching full:fc

94 static int vxfs_reconfigure(struct fs_context *fc)  in vxfs_reconfigure()  argument
96 sync_filesystem(fc->root->d_sb); in vxfs_reconfigure()
97 fc->sb_flags |= SB_RDONLY; in vxfs_reconfigure()
125 static int vxfs_try_sb_magic(struct super_block *sbp, struct fs_context *fc, in vxfs_try_sb_magic() argument
131 int silent = fc->sb_flags & SB_SILENT; in vxfs_try_sb_magic()
138 warnf(fc, in vxfs_try_sb_magic()
149 infof(fc, in vxfs_try_sb_magic()
172 * @fc: filesytem context
184 static int vxfs_fill_super(struct super_block *sbp, struct fs_context *fc) in vxfs_fill_super() argument
191 int silent = fc->sb_flags & SB_SILENT; in vxfs_fill_super()
198 warnf(fc, "vxfs: unable to allocate incore superblock"); in vxfs_fill_super()
204 warnf(fc, "vxfs: unable to set blocksize"); in vxfs_fill_super()
213 if (!vxfs_try_sb_magic(sbp, fc, 1, in vxfs_fill_super()
217 } else if (!vxfs_try_sb_magic(sbp, fc, 8, in vxfs_fill_super()
223 infof(fc, "vxfs: can't find superblock."); in vxfs_fill_super()
230 infof(fc, "vxfs: unsupported VxFS version (%d)", j); in vxfs_fill_super()
247 warnf(fc, "vxfs: unable to set final block size"); in vxfs_fill_super()
252 warnf(fc, "vxfs: unable to read olt"); in vxfs_fill_super()
257 warnf(fc, "vxfs: unable to read fshead"); in vxfs_fill_super()
268 warnf(fc, "vxfs: unable to get root dentry."); in vxfs_fill_super()
287 static int vxfs_get_tree(struct fs_context *fc) in vxfs_get_tree() argument
289 return get_tree_bdev(fc, vxfs_fill_super); in vxfs_get_tree()
297 static int vxfs_init_fs_context(struct fs_context *fc) in vxfs_init_fs_context() argument
299 fc->ops = &vxfs_context_ops; in vxfs_init_fs_context()