Searched refs:xino (Results 1 – 6 of 6) sorted by relevance
/linux/fs/ubifs/ |
H A D | xattr.c | 494 struct inode *xino; in ubifs_purge_xattrs() local 516 xino = ubifs_iget(c->vfs_sb, le64_to_cpu(xent->inum)); in ubifs_purge_xattrs() 517 if (IS_ERR(xino)) { in ubifs_purge_xattrs() 518 err = PTR_ERR(xino); in ubifs_purge_xattrs() 525 ubifs_assert(c, ubifs_inode(xino)->xattr); in ubifs_purge_xattrs() 527 clear_nlink(xino); in ubifs_purge_xattrs() 528 err = remove_xattr(c, host, xino, &nm); in ubifs_purge_xattrs() 529 iput(xino); in ubifs_purge_xattrs()
|
H A D | journal.c | 1019 struct inode *xino; in ubifs_jnl_write_inode() local 1037 xino = ubifs_iget(c->vfs_sb, le64_to_cpu(xent->inum)); in ubifs_jnl_write_inode() 1038 if (IS_ERR(xino)) { in ubifs_jnl_write_inode() 1039 err = PTR_ERR(xino); in ubifs_jnl_write_inode() 1047 ubifs_assert(c, ubifs_inode(xino)->xattr); in ubifs_jnl_write_inode() 1049 clear_nlink(xino); in ubifs_jnl_write_inode() 1050 pack_inode(c, ino, xino, 0); in ubifs_jnl_write_inode() 1052 iput(xino); in ubifs_jnl_write_inode()
|
/linux/fs/overlayfs/ |
H A D | super.c | 408 if (ofs->config.xino == OVL_XINO_AUTO && in ovl_lower_dir() 410 ofs->config.xino = OVL_XINO_OFF; in ovl_lower_dir() 720 if (ofs->config.xino == OVL_XINO_AUTO) { in ovl_make_workdir() 721 ofs->config.xino = OVL_XINO_OFF; in ovl_make_workdir() 936 if (ofs->config.xino == OVL_XINO_AUTO) { in ovl_get_fsid() 937 ofs->config.xino = OVL_XINO_OFF; in ovl_get_fsid() 1079 if (ofs->config.xino == OVL_XINO_ON) in ovl_get_layers() 1082 } else if (ofs->config.xino == OVL_XINO_OFF) { in ovl_get_layers() 1342 if (ofs->config.xino != OVL_XINO_OFF) { in ovl_fill_super() 1346 ofs->config.xino = OVL_XINO_OFF; in ovl_fill_super()
|
H A D | params.c | 97 return ovl_parameter_xino[config->xino].name; in ovl_xino_mode() 650 config->xino = result.uint_32; in ovl_parse_param() 769 ofs->config.xino = ovl_xino_def(); in ovl_init_fs_context() 1062 if (ofs->config.xino != ovl_xino_def() && !ovl_same_fs(ofs)) in ovl_show_options()
|
H A D | ovl_entry.h | 18 int xino; member
|
/linux/Documentation/filesystems/ |
H A D | overlayfs.rst | 41 with the "xino" feature. The "xino" feature composes a unique object 43 The "xino" feature uses the high inode number bits for fsid, because the 45 the underlying inode number does overflow into the high xino bits, overlay 46 filesystem will fall back to the non xino behavior for that inode. 48 The "xino" feature can be enabled with the "-o xino=on" overlay mount option. 51 the lifetime of the filesystem. The "-o xino=auto" overlay mount option 52 enables the "xino" feature only if the persistent st_ino requirement is met. 71 | xino=off | | | | | | | | | 73 | xino=on/auto | Y | Y | Y | Y | Y | Y | Y | Y | 75 | xino=on/auto,| N | N | Y | N | N | Y | N | Y | [all …]
|