Lines Matching refs:fc
41 struct fs_context *fc, in supported_squashfs_filesystem() argument
47 errorf(fc, "Major/Minor mismatch, older Squashfs %d.%d " in supported_squashfs_filesystem()
51 errorf(fc, "Major/Minor mismatch, trying to mount newer " in supported_squashfs_filesystem()
53 errorf(fc, "Please update your kernel"); in supported_squashfs_filesystem()
59 errorf(fc, "Filesystem uses \"%s\" compression. This is not supported", in supported_squashfs_filesystem()
68 static int squashfs_fill_super(struct super_block *sb, struct fs_context *fc) in squashfs_fill_super() argument
103 errorf(fc, "unable to read squashfs_super_block"); in squashfs_fill_super()
114 if (!(fc->sb_flags & SB_SILENT)) in squashfs_fill_super()
115 errorf(fc, "Can't find a SQUASHFS superblock on %pg", in squashfs_fill_super()
122 fc, in squashfs_fill_super()
146 errorf(fc, "Page size > filesystem block size (%d). This is " in squashfs_fill_super()
205 errorf(fc, "Failed to allocate read_page block"); in squashfs_fill_super()
228 errorf(fc, "unable to read xattr id index table"); in squashfs_fill_super()
242 errorf(fc, "unable to read id index table"); in squashfs_fill_super()
258 errorf(fc, "unable to read inode lookup table"); in squashfs_fill_super()
283 errorf(fc, "unable to read fragment index table"); in squashfs_fill_super()
330 errorf(fc, "squashfs image failed sanity check"); in squashfs_fill_super()
346 static int squashfs_get_tree(struct fs_context *fc) in squashfs_get_tree() argument
348 return get_tree_bdev(fc, squashfs_fill_super); in squashfs_get_tree()
351 static int squashfs_reconfigure(struct fs_context *fc) in squashfs_reconfigure() argument
353 sync_filesystem(fc->root->d_sb); in squashfs_reconfigure()
354 fc->sb_flags |= SB_RDONLY; in squashfs_reconfigure()
363 static int squashfs_init_fs_context(struct fs_context *fc) in squashfs_init_fs_context() argument
365 fc->ops = &squashfs_context_ops; in squashfs_init_fs_context()