Searched refs:xino (Results 1 – 6 of 6) sorted by relevance
/Linux-v6.1/fs/ubifs/ |
D | xattr.c | 507 struct inode *xino; in ubifs_purge_xattrs() local 529 xino = ubifs_iget(c->vfs_sb, le64_to_cpu(xent->inum)); in ubifs_purge_xattrs() 530 if (IS_ERR(xino)) { in ubifs_purge_xattrs() 531 err = PTR_ERR(xino); in ubifs_purge_xattrs() 540 ubifs_assert(c, ubifs_inode(xino)->xattr); in ubifs_purge_xattrs() 542 clear_nlink(xino); in ubifs_purge_xattrs() 543 err = remove_xattr(c, host, xino, &nm); in ubifs_purge_xattrs() 547 iput(xino); in ubifs_purge_xattrs() 552 iput(xino); in ubifs_purge_xattrs()
|
D | journal.c | 881 struct inode *xino; in ubifs_jnl_write_inode() local 905 xino = ubifs_iget(c->vfs_sb, le64_to_cpu(xent->inum)); in ubifs_jnl_write_inode() 906 if (IS_ERR(xino)) { in ubifs_jnl_write_inode() 907 err = PTR_ERR(xino); in ubifs_jnl_write_inode() 915 ubifs_assert(c, ubifs_inode(xino)->xattr); in ubifs_jnl_write_inode() 917 clear_nlink(xino); in ubifs_jnl_write_inode() 918 pack_inode(c, ino, xino, 0); in ubifs_jnl_write_inode() 920 iput(xino); in ubifs_jnl_write_inode()
|
/Linux-v6.1/fs/overlayfs/ |
D | super.c | 380 if (ofs->config.xino != ovl_xino_def() && !ovl_same_fs(sb)) in ovl_show_options() 381 seq_printf(m, ",xino=%s", ovl_xino_str[ofs->config.xino]); in ovl_show_options() 597 config->xino = OVL_XINO_ON; in ovl_parse_opt() 601 config->xino = OVL_XINO_OFF; in ovl_parse_opt() 605 config->xino = OVL_XINO_AUTO; in ovl_parse_opt() 958 if (ofs->config.xino == OVL_XINO_AUTO && in ovl_lower_dir() 960 ofs->config.xino = OVL_XINO_OFF; in ovl_lower_dir() 1443 if (ofs->config.xino == OVL_XINO_AUTO) { in ovl_make_workdir() 1444 ofs->config.xino = OVL_XINO_OFF; in ovl_make_workdir() 1662 if (ofs->config.xino == OVL_XINO_AUTO) { in ovl_get_fsid() [all …]
|
D | ovl_entry.h | 19 int xino; member
|
D | overlayfs.h | 348 !ofs->config.redirect_dir && ofs->config.xino != OVL_XINO_ON); in ovl_allow_offline_changes() 474 return OVL_FS(sb)->config.xino == OVL_XINO_ON; in ovl_xino_warn()
|
/Linux-v6.1/Documentation/filesystems/ |
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 …]
|