Home
last modified time | relevance | path

Searched refs:freeze_super (Results 1 – 10 of 10) sorted by relevance

/linux-6.15/fs/
H A Dioctl.c394 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 Dsuper.c1480 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 Dxfs_notify_failure.c130 error = freeze_super(sb, FREEZE_HOLDER_KERNEL); in xfs_dax_notify_failure_freeze()
/linux-6.15/fs/xfs/scrub/
H A Dfscounters.c126 error = freeze_super(sc->mp->m_super, FREEZE_HOLDER_KERNEL); in xchk_fsfreeze()
/linux-6.15/fs/gfs2/
H A Dsuper.c706 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 Dsys.c180 error = freeze_super(sdp->sd_vfs, FREEZE_HOLDER_USERSPACE); in freeze_store()
/linux-6.15/Documentation/filesystems/
H A Dvfs.rst263 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 Dfs.h2298 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 Dgc.c2274 err = freeze_super(sbi->sb, FREEZE_HOLDER_USERSPACE); in f2fs_resize_fs()
/linux-6.15/Documentation/filesystems/xfs/
H A Dxfs-online-fsck-design.rst3124 | required the addition of a ``->freeze_super`` function to wrap |
3127 | the VFS ``freeze_super`` and ``thaw_super`` functions can drop the |