Directory Files
.. 77
File Size
Kconfig 1.2 kB
Makefile 283 B
alloc.c 25 kB
alloc.h 3.2 kB
bmap.c 15 kB
bmap.h 8.0 kB
btnode.c 7.4 kB
btnode.h 1.4 kB
btree.c 65 kB
btree.h 2.1 kB
cpfile.c 26 kB
cpfile.h 1.2 kB
dat.c 14 kB
dat.h 1.8 kB
dir.c 17 kB
direct.c 9.0 kB
direct.h 634 B
export.h 505 B
file.c 3.8 kB
gcinode.c 5.3 kB
ifile.c 5.3 kB
ifile.h 1.2 kB
inode.c 34 kB
ioctl.c 36 kB
mdt.c 16 kB
mdt.h 3.7 kB
namei.c 13 kB
nilfs.h 13 kB
nilfs2.mod.c 0 B
page.c 14 kB
page.h 1.9 kB
recovery.c 24 kB
segbuf.c 12 kB
segbuf.h 5.6 kB
segment.c 77 kB
segment.h 8.0 kB
sufile.c 33 kB
sufile.h 4.3 kB
super.c 36 kB
sysfs.c 32 kB
sysfs.h 5.3 kB
the_nilfs.c 24 kB
the_nilfs.h 12 kB

Linux v6.6.1 - nilfs2

# SPDX-License-Identifier: GPL-2.0-only
config NILFS2_FS
	tristate "NILFS2 file system support"
	select BUFFER_HEAD
	select CRC32
	select LEGACY_DIRECT_IO
	help
	  NILFS2 is a log-structured file system (LFS) supporting continuous
	  snapshotting.  In addition to versioning capability of the entire
	  file system, users can even restore files mistakenly overwritten or
	  destroyed just a few seconds ago.  Since this file system can keep
	  consistency like conventional LFS, it achieves quick recovery after
	  system crashes.

	  NILFS2 creates a number of checkpoints every few seconds or per
	  synchronous write basis (unless there is no change).  Users can
	  select significant versions among continuously created checkpoints,
	  and can change them into snapshots which will be preserved for long
	  periods until they are changed back to checkpoints.  Each
	  snapshot is mountable as a read-only file system concurrently with
	  its writable mount, and this feature is convenient for online backup.

	  Some features including atime, extended attributes, and POSIX ACLs,
	  are not supported yet.

	  To compile this file system support as a module, choose M here: the
	  module will be called nilfs2.  If unsure, say N.