Searched refs:ino (Results 226 - 250 of 418) sorted by relevance

1234567891011>>

/linux-master/include/linux/ceph/
H A Ddecode.h283 u64 ino, const char *path)
286 BUG_ON(*p + 1 + sizeof(ino) + sizeof(len) + len > end);
288 ceph_encode_64(p, ino);
282 ceph_encode_filepath(void **p, void *end, u64 ino, const char *path) argument
/linux-master/drivers/pci/
H A Dproc.c114 struct inode *ino = file_inode(file); local
115 struct pci_dev *dev = pde_data(ino);
183 i_size_write(ino, dev->cfg_size);
/linux-master/include/trace/events/
H A Dnetfs.h388 __field(ino_t, ino)
395 __entry->ino = folio->mapping->host->i_ino;
402 __entry->ino, __entry->index, __entry->index + __entry->nr - 1,
/linux-master/fs/erofs/
H A Dinode.c290 ino_t ino = (ino_t)nid; local
293 ino ^= nid >> (sizeof(erofs_nid_t) - sizeof(ino_t)) * 8;
294 return ino;
/linux-master/fs/nilfs2/
H A Dpage.c157 unsigned long ino; local
165 ino = m ? m->host->i_ino : 0;
168 "mapping=%p ino=%lu\n",
170 (unsigned long long)folio->index, folio->flags, m, ino);
406 nilfs_warn(sb, "discard dirty page: offset=%lld, ino=%lu",
/linux-master/include/linux/
H A Dnfs_fs.h642 ino_t ino = (ino_t) fileid; local
644 ino ^= fileid >> (sizeof(u64)-sizeof(ino_t)) * 8;
645 return ino;
/linux-master/fs/f2fs/
H A Df2fs.h282 /* for the list of ino */
284 ORPHAN_INO, /* for orphan ino list */
285 APPEND_INO, /* for append ino list */
286 UPDATE_INO, /* for update ino list */
287 TRANS_DIR_INO, /* for transactions dir ino list */
294 nid_t ino; /* inode number */ member in struct:ino_entry
669 nid_t ino; /* inode number */ member in struct:extent_tree
1031 nid_t ino; member in struct:flush_cmd
1199 nid_t ino; /* inode number */ member in struct:f2fs_io_info
1271 struct radix_tree_root ino_root; /* ino entr
4370 f2fs_cache_compressed_page(struct f2fs_sb_info *sbi, struct page *page, nid_t ino, block_t blkaddr) argument
4374 f2fs_invalidate_compress_pages(struct f2fs_sb_info *sbi, nid_t ino) argument
[all...]
/linux-master/fs/jfs/
H A Djfs_txnmgr.h56 u32 ino; /* inode number being created */ member in struct:tblock
H A Dinode.c24 struct inode *jfs_iget(struct super_block *sb, unsigned long ino) argument
29 inode = iget_locked(sb, ino);
/linux-master/fs/nfsd/
H A Dxdr.h165 loff_t offset, u64 ino, unsigned int d_type);
/linux-master/fs/omfs/
H A Dinode.c202 struct inode *omfs_iget(struct super_block *sb, ino_t ino) argument
211 inode = iget_locked(sb, ino);
217 bh = omfs_bread(inode->i_sb, ino);
224 if (ino != be64_to_cpu(oi->i_head.h_self))
/linux-master/fs/romfs/
H A Dsuper.c157 int j, ino, nextfh; local
196 ino = offset;
199 ino = be32_to_cpu(ri.spec);
200 if (!dir_emit(ctx, fsname, j, ino,
/linux-master/arch/s390/kernel/
H A Dcompat_linux.c133 tmp.st_ino = stat->ino;
134 tmp.__st_ino = (u32)stat->ino;
/linux-master/arch/x86/kernel/
H A Dsys_ia32.c141 unsafe_put_user(stat->ino, &ubuf->__st_ino, Efault);
142 unsafe_put_user(stat->ino, &ubuf->st_ino, Efault);
/linux-master/fs/ecryptfs/
H A Dfile.c83 int lower_namelen, loff_t offset, u64 ino, unsigned int d_type)
114 res = dir_emit(buf->caller, name, name_size, ino, d_type);
82 ecryptfs_filldir(struct dir_context *ctx, const char *lower_name, int lower_namelen, loff_t offset, u64 ino, unsigned int d_type) argument
/linux-master/fs/efs/
H A Dinode.c50 struct inode *efs_iget(struct super_block *super, unsigned long ino) argument
62 inode = iget_locked(super, ino);
/linux-master/security/integrity/evm/
H A Devm_crypto.c146 unsigned long ino; member in struct:h_misc
158 hmac_misc.ino = inode->i_ino;
/linux-master/fs/smb/client/
H A Dtrace.h677 TP_PROTO(unsigned long ino,
679 TP_ARGS(ino, rc),
681 __field(unsigned long, ino)
685 __entry->ino = ino;
689 __entry->ino, __entry->rc)
694 TP_PROTO(unsigned long ino, \
696 TP_ARGS(ino, rc))
/linux-master/tools/testing/selftests/bpf/progs/
H A Dprofiler.inc.h74 u32 ino; member in struct:kernfs_node___52::__anon3384::__anon3385
238 if (bpf_core_field_exists(node52->id.ino)) {
240 return BPF_CORE_READ(node52, id.ino);
539 u64 ino = BPF_CORE_READ(file_dentry, d_inode, i_ino);
540 *file_ino = ino;
541 bool* allowed_file = bpf_map_lookup_elem(&allowed_file_inodes, &ino);
/linux-master/fs/xfs/
H A Dxfs_inode.c758 xfs_ino_t ino,
781 if ((pip && ino == pip->i_ino) || !xfs_verify_dir_ino(mp, ino)) {
782 xfs_alert(mp, "Allocated a known in-use inode 0x%llx!", ino);
783 xfs_agno_mark_sick(mp, XFS_INO_TO_AGNO(mp, ino),
792 error = xfs_iget(mp, tp, ino, XFS_IGET_CREATE, XFS_ILOCK_EXCL, &ip);
1027 xfs_ino_t ino; local
1081 error = xfs_dialloc(&tp, dp->i_ino, mode, &ino);
1083 error = xfs_init_new_inode(idmap, tp, dp, ino, mode,
1186 xfs_ino_t ino; local
754 xfs_init_new_inode( struct mnt_idmap *idmap, struct xfs_trans *tp, struct xfs_inode *pip, xfs_ino_t ino, umode_t mode, xfs_nlink_t nlink, dev_t rdev, prid_t prid, bool init_xattrs, struct xfs_inode **ipp) argument
2047 xfs_ino_t ino; local
[all...]
/linux-master/fs/btrfs/
H A Ddelayed-inode.c71 u64 ino = btrfs_ino(btrfs_inode); local
81 node = xa_load(&root->delayed_nodes, ino);
128 u64 ino = btrfs_ino(btrfs_inode); local
140 btrfs_init_delayed_node(node, root, ino);
146 ret = xa_reserve(&root->delayed_nodes, ino, GFP_NOFS);
152 ptr = xa_load(&root->delayed_nodes, ino);
160 ptr = xa_store(&root->delayed_nodes, ino, node, GFP_ATOMIC);
850 const u64 ino = item->delayed_node->inode_id; local
889 if (key.objectid != ino ||
909 trace_btrfs_space_reservation(fs_info, "delayed_item", ino,
[all...]
/linux-master/fs/ext4/
H A Dinode.c341 ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
1502 "ino %lu, to_free %d with only %d reserved "
2667 "%ld pages, ino %lu; err %d", __func__,
4332 static int __ext4_get_inode_loc(struct super_block *sb, unsigned long ino, argument
4343 if (ino < EXT4_ROOT_INO ||
4344 ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
4347 iloc->block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
4356 inode_offset = ((ino - 1) %
4460 trace_ext4_load_inode(sb, ino);
4508 int ext4_get_fc_inode_loc(struct super_block *sb, unsigned long ino, argument
4655 __ext4_iget(struct super_block *sb, unsigned long ino, ext4_iget_flags flags, const char *function, unsigned int line) argument
4984 __ext4_update_other_inode_time(struct super_block *sb, unsigned long orig_ino, unsigned long ino, struct ext4_inode *raw_inode) argument
5024 unsigned long ino; local
[all...]
/linux-master/fs/kernfs/
H A Ddir.c714 * @id's lower 32bits encode ino and upper gen. If the gen portion is
724 ino_t ino = kernfs_id_ino(id); local
729 kn = idr_find(&root->ino_idr, (u32)ino);
735 if (kernfs_ino(kn) != ino)
978 * On 64bit ino setups, id is ino. On 32bit, low 32bits are ino.
979 * High bits generation. The starting value for both ino and
1827 struct kernfs_node *parent, ino_t ino, struct kernfs_node *pos)
1829 pos = kernfs_dir_pos(ns, parent, ino, po
1826 kernfs_dir_next_pos(const void *ns, struct kernfs_node *parent, ino_t ino, struct kernfs_node *pos) argument
1865 ino_t ino = kernfs_ino(pos); local
[all...]
/linux-master/kernel/
H A Dauditsc.c206 if ((n->ino != AUDIT_INO_UNSET) &&
598 result = audit_comparator(name->ino, f->op, f->val);
601 if (audit_comparator(n->ino, f->op, f->val)) {
635 name->ino,
887 int h = audit_hash_ino((u32)n->ino);
1551 if (n->ino != AUDIT_INO_UNSET)
1553 n->ino,
2187 aname->ino = AUDIT_INO_UNSET;
2275 name->ino = inode->i_ino;
2345 if (n->ino) {
[all...]
/linux-master/fs/ntfs3/
H A Drun.c920 int run_unpack(struct runs_tree *run, struct ntfs_sb_info *sbi, CLST ino, argument
926 bool is_mft = ino == MFT_REC_MFT;
1050 int run_unpack_ex(struct runs_tree *run, struct ntfs_sb_info *sbi, CLST ino, argument
1060 ret = run_unpack(run, sbi, ino, svcn, evcn, vcn, run_buf, run_buf_size);
1067 if (ino == MFT_REC_BADCLUST)

Completed in 257 milliseconds

1234567891011>>