Searched refs:freeze_super (Results 1 – 10 of 10) sorted by relevance
| /linux-6.15/fs/ |
| H A D | ioctl.c | 394 if (sb->s_op->freeze_fs == NULL && sb->s_op->freeze_super == NULL) in ioctl_fsfreeze() 398 if (sb->s_op->freeze_super) in ioctl_fsfreeze() 399 return sb->s_op->freeze_super(sb, FREEZE_HOLDER_USERSPACE); in ioctl_fsfreeze() 400 return freeze_super(sb, FREEZE_HOLDER_USERSPACE); in ioctl_fsfreeze()
|
| H A D | super.c | 1480 if (sb->s_op->freeze_super) in fs_bdev_freeze() 1481 error = sb->s_op->freeze_super(sb, in fs_bdev_freeze() 1484 error = freeze_super(sb, in fs_bdev_freeze() 2001 int freeze_super(struct super_block *sb, enum freeze_holder who) in freeze_super() function 2088 EXPORT_SYMBOL(freeze_super);
|
| /linux-6.15/fs/xfs/ |
| H A D | xfs_notify_failure.c | 130 error = freeze_super(sb, FREEZE_HOLDER_KERNEL); in xfs_dax_notify_failure_freeze()
|
| /linux-6.15/fs/xfs/scrub/ |
| H A D | fscounters.c | 126 error = freeze_super(sc->mp->m_super, FREEZE_HOLDER_KERNEL); in xchk_fsfreeze()
|
| /linux-6.15/fs/gfs2/ |
| H A D | super.c | 706 error = freeze_super(sb, FREEZE_HOLDER_USERSPACE); in gfs2_freeze_func() 747 error = freeze_super(sb, FREEZE_HOLDER_USERSPACE); in gfs2_freeze_super() 1602 .freeze_super = gfs2_freeze_super,
|
| H A D | sys.c | 180 error = freeze_super(sdp->sd_vfs, FREEZE_HOLDER_USERSPACE); in freeze_store()
|
| /linux-6.15/Documentation/filesystems/ |
| H A D | vfs.rst | 263 int (*freeze_super) (struct super_block *sb, 354 ``freeze_super`` 356 Main difference is that ->freeze_super is called without taking 368 again after ->freeze_super. Optional.
|
| /linux-6.15/include/linux/ |
| H A D | fs.h | 2298 int (*freeze_super) (struct super_block *, enum freeze_holder who); member 2708 int freeze_super(struct super_block *super, enum freeze_holder who);
|
| /linux-6.15/fs/f2fs/ |
| H A D | gc.c | 2274 err = freeze_super(sbi->sb, FREEZE_HOLDER_USERSPACE); in f2fs_resize_fs()
|
| /linux-6.15/Documentation/filesystems/xfs/ |
| H A D | xfs-online-fsck-design.rst | 3124 | required the addition of a ``->freeze_super`` function to wrap | 3127 | the VFS ``freeze_super`` and ``thaw_super`` functions can drop the |
|