/* SPDX-License-Identifier: GPL-2.0 */ #ifndef MIGRATE_MODE_H_INCLUDED #define MIGRATE_MODE_H_INCLUDED /* * MIGRATE_ASYNC means never block * MIGRATE_SYNC_LIGHT in the current implementation means to allow blocking * on most operations but not ->writepage as the potential stall time * is too significant * MIGRATE_SYNC will block when migrating pages * MIGRATE_SYNC_NO_COPY will block when migrating pages but will not copy pages * with the CPU. Instead, page copy happens outside the migratepage() * callback and is likely using a DMA engine. See migrate_vma() and HMM * (mm/hmm.c) for users of this mode. */ enum migrate_mode { MIGRATE_ASYNC, MIGRATE_SYNC_LIGHT, MIGRATE_SYNC, MIGRATE_SYNC_NO_COPY, }; #endif /* MIGRATE_MODE_H_INCLUDED */ Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/fs/statfs.c
AgeCommit message (Expand)Author
2024-11-03fdget_raw() users: switch to CLASS(fd_raw)Al Viro
2024-08-12introduce fd_file(), convert all accessors to it.Al Viro
2023-05-17statfs: enforce statfs[64] structure initializationIlya Leoshkevich
2021-02-13s390,alpha: switch to 64-bit ino_tHeiko Carstens
2020-12-01block: remove i_bdevChristoph Hellwig
2020-08-27Add a "nosymfollow" mount option.Mattias Nissler
2019-10-03vfs: Fix EOVERFLOW testing in put_compat_statfs64Eric Sandeen
2019-02-07vfs: add vfs_get_fsid() helperAmir Goldstein
2018-07-12kernel: add kcompat_sys_{f,}statfs64()Mark Rutland
2017-11-27Rename superblock flags (MS_xyz -> SB_xyz)Linus Torvalds
2017-11-17Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman
2017-10-14make vfs_ustat() staticAl Viro
2017-07-08Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds
2017-06-29Make statfs properly return read-only state after emergency remountCarlos Maiolino
2017-06-04compat statfs: switch to copy_to_user()Al Viro
2017-04-17statfs: move compat syscalls from compat.cAl Viro
2016-12-05vfs: misc struct path constificationAl Viro