Searched refs:ino (Results 1 - 25 of 418) sorted by relevance

1234567891011>>

/linux-master/fs/autofs/
H A Dsymlink.c13 struct autofs_info *ino; local
18 ino = autofs_dentry_ino(dentry);
19 if (ino && !autofs_oz_mode(sbi))
20 ino->last_used = jiffies;
H A Dexpire.c14 struct autofs_info *ino = autofs_dentry_ino(dentry); local
17 if (ino == NULL)
22 if (!timeout || time_after(ino->last_used + timeout, jiffies))
59 struct autofs_info *ino; local
61 ino = autofs_dentry_ino(top);
62 ino->last_used = jiffies;
160 struct autofs_info *ino; local
162 ino = autofs_dentry_ino(top);
163 if (ino)
164 ino
210 struct autofs_info *ino = autofs_dentry_ino(p); local
277 struct autofs_info *ino; local
323 struct autofs_info *ino = autofs_dentry_ino(dentry); local
427 struct autofs_info *ino; local
490 struct autofs_info *ino = autofs_dentry_ino(dentry); local
539 struct autofs_info *ino; local
584 struct autofs_info *ino = autofs_dentry_ino(dentry); local
[all...]
H A Dautofs_i.h92 u64 ino; member in struct:autofs_wait_queue
151 static inline bool autofs_empty(struct autofs_info *ino) argument
153 return ino->count < 2;
261 struct autofs_info *ino = autofs_dentry_ino(dentry); local
263 if (ino) {
264 if (list_empty(&ino->expiring))
265 list_add(&ino->expiring, &sbi->expiring_list);
272 struct autofs_info *ino = autofs_dentry_ino(dentry); local
274 if (ino) {
276 if (list_empty(&ino
285 struct autofs_info *ino = autofs_dentry_ino(dentry); local
[all...]
/linux-master/fs/qnx6/
H A Dnamei.c19 unsigned ino; local
28 ino = qnx6_find_entry(len, dir, name, &page);
29 if (ino) {
30 foundinode = qnx6_iget(dir->i_sb, ino);
/linux-master/tools/cgroup/
H A Dmemcg_shrinker.py16 ino = os.stat(path).st_ino
17 cgroups[ino] = path
19 # (memcg ino, path)
32 ino = int(items[0])
33 # (count, shrinker, memcg ino)
34 shrinkers.append((int(items[1]), shrinker, ino))
50 count, name, ino = (s[0], s[1], s[2])
54 if ino == 0 or ino == 1:
58 cg = cgroups[ino]
[all...]
/linux-master/fs/xfs/scrub/
H A Dreaddir.h11 xfs_ino_t ino, void *priv);
17 const struct xfs_name *name, xfs_ino_t *ino);
H A Dinode.c215 xfs_ino_t ino,
224 xchk_ino_set_corrupt(sc, ino);
238 xchk_ino_set_warning(sc, ino);
251 xfs_ino_t ino,
262 xchk_ino_set_corrupt(sc, ino);
270 xfs_ino_t ino,
285 if ((flags & XFS_DIFLAG_NEWRTBM) && ino != mp->m_sb.sb_rbmino)
307 xchk_ino_set_corrupt(sc, ino);
315 xfs_ino_t ino,
324 xchk_ino_set_warning(sc, ino);
212 xchk_inode_extsize( struct xfs_scrub *sc, struct xfs_dinode *dip, xfs_ino_t ino, uint16_t mode, uint16_t flags) argument
248 xchk_inode_cowextsize( struct xfs_scrub *sc, struct xfs_dinode *dip, xfs_ino_t ino, uint16_t mode, uint16_t flags, uint64_t flags2) argument
267 xchk_inode_flags( struct xfs_scrub *sc, struct xfs_dinode *dip, xfs_ino_t ino, uint16_t mode, uint16_t flags) argument
312 xchk_inode_flags2( struct xfs_scrub *sc, struct xfs_dinode *dip, xfs_ino_t ino, uint16_t mode, uint16_t flags, uint64_t flags2) argument
359 xchk_dinode_nsec( struct xfs_scrub *sc, xfs_ino_t ino, struct xfs_dinode *dip, const xfs_timestamp_t ts) argument
374 xchk_dinode( struct xfs_scrub *sc, struct xfs_dinode *dip, xfs_ino_t ino) argument
606 xchk_inode_xref_finobt( struct xfs_scrub *sc, xfs_ino_t ino) argument
683 xchk_inode_xref( struct xfs_scrub *sc, xfs_ino_t ino, struct xfs_dinode *dip) argument
720 xchk_inode_check_reflink_iflag( struct xfs_scrub *sc, xfs_ino_t ino) argument
[all...]
/linux-master/fs/affs/
H A Ddir.c56 u32 ino; local
59 pr_debug("%s(ino=%lu,f_pos=%llx)\n", __func__, inode->i_ino, ctx->pos);
83 ino = (u32)(long)file->private_data;
84 if (ino && inode_eq_iversion(inode, file->f_version)) {
85 pr_debug("readdir() left off=%d\n", ino);
89 ino = be32_to_cpu(AFFS_HEAD(dir_bh)->table[hash_pos]);
90 for (i = 0; ino && i < chain_pos; i++) {
91 fh_bh = affs_bread(sb, ino);
97 ino = be32_to_cpu(AFFS_TAIL(sb, fh_bh)->hash_chain);
101 if (ino)
[all...]
/linux-master/arch/sparc/kernel/
H A Dprom_irqtrans.c20 static unsigned long psycho_pcislot_imap_offset(unsigned long ino) argument
22 unsigned int bus = (ino & 0x10) >> 4;
23 unsigned int slot = (ino & 0x0c) >> 2;
40 #define psycho_iclr_offset(ino) \
41 ((ino & 0x20) ? (PSYCHO_ICLR_SCSI + (((ino) & 0x1f) << 3)) : \
42 (PSYCHO_ICLR_A_SLOT0 + (((ino) & 0x1f)<<3)))
45 unsigned int ino,
53 ino &= 0x3f;
54 if (ino < PSYCHO_ONBOARD_IRQ_BAS
44 psycho_irq_build(struct device_node *dp, unsigned int ino, void *_data) argument
115 sabre_wsync_handler(unsigned int ino, void *_arg1, void *_arg2) argument
163 sabre_pcislot_imap_offset(unsigned long ino) argument
222 sabre_irq_build(struct device_node *dp, unsigned int ino, void *_data) argument
296 schizo_imap_offset(unsigned long ino) argument
301 schizo_iclr_offset(unsigned long ino) argument
306 schizo_ino_to_iclr(unsigned long pbm_regs, unsigned int ino) argument
313 schizo_ino_to_imap(unsigned long pbm_regs, unsigned int ino) argument
334 tomatillo_wsync_handler(unsigned int ino, void *_arg1, void *_arg2) argument
379 schizo_irq_build(struct device_node *dp, unsigned int ino, void *_data) argument
489 fire_imap_offset(unsigned long ino) argument
494 fire_iclr_offset(unsigned long ino) argument
499 fire_ino_to_iclr(unsigned long pbm_regs, unsigned int ino) argument
505 fire_ino_to_imap(unsigned long pbm_regs, unsigned int ino) argument
511 fire_irq_build(struct device_node *dp, unsigned int ino, void *_data) argument
649 sbus_of_build_irq(struct device_node *dp, unsigned int ino, void *_data) argument
719 central_build_irq(struct device_node *dp, unsigned int ino, void *_data) argument
[all...]
/linux-master/fs/sysv/
H A Dialloc.c57 sysv_raw_inode(struct super_block *sb, unsigned ino, struct buffer_head **bh) argument
63 block += (ino-1) >> sbi->s_inodes_per_block_bits;
68 return res + ((ino-1) & sbi->s_inodes_per_block_1);
76 int i = 0, ino; local
78 ino = SYSV_ROOT_INO+1;
79 raw_inode = sysv_raw_inode(sb, ino, &bh);
82 while (ino <= sbi->s_ninodes) {
84 *sv_sb_fic_inode(sb,i++) = cpu_to_fs16(SYSV_SB(sb), ino);
88 if ((ino++ & sbi->s_inodes_per_block_1) == 0) {
90 raw_inode = sysv_raw_inode(sb, ino,
105 unsigned int ino; local
141 sysv_ino_t ino; local
187 int ino, count, sb_count; local
[all...]
/linux-master/fs/nilfs2/
H A Dexport.h12 * @ino: inode number
19 u64 ino; member in struct:nilfs_fid
H A Difile.h22 nilfs_ifile_map_inode(struct inode *ifile, ino_t ino, struct buffer_head *ibh) argument
26 return nilfs_palloc_block_get_entry(ifile, ino, ibh, kaddr);
/linux-master/fs/xfs/
H A Dxfs_export.h51 u64 ino; member in struct:xfs_fid64
/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_ns_current_pid_tgid.c11 __u64 ino = 0; variable
18 if (bpf_get_ns_current_pid_tgid(dev, ino, &nsdata, sizeof(struct bpf_pidns_info)))
H A Dbpf_iter_netlink.c19 unsigned long group, ino; local
51 ino = 0;
58 bpf_probe_read_kernel(&ino, sizeof(ino), &inode->i_ino);
60 BPF_SEQ_PRINTF(seq, "%-8u %-8lu\n", s->sk_drops.counter, ino);
H A Dbpf_iter_unix.c14 unsigned long ino; local
20 bpf_probe_read_kernel(&ino, sizeof(ino), &inode->i_ino);
21 return ino;
/linux-master/fs/squashfs/
H A Dexport.c37 * Look-up inode number (ino) in table, returning the inode location.
45 __le64 ino; local
55 err = squashfs_read_metadata(sb, &ino, &start, &offset, sizeof(ino));
60 (u64) le64_to_cpu(ino));
62 return le64_to_cpu(ino);
69 long long ino; local
74 ino = squashfs_inode_lookup(sb, ino_num);
75 if (ino >= 0)
76 dentry = d_obtain_alias(squashfs_iget(sb, ino, ino_nu
[all...]
/linux-master/fs/minix/
H A Dbitmap.c107 minix_V1_raw_inode(struct super_block *sb, ino_t ino, struct buffer_head **bh) argument
113 if (!ino || ino > sbi->s_ninodes) {
115 sb->s_id, (long)ino);
118 ino--;
120 ino / MINIX_INODES_PER_BLOCK;
127 return p + ino % MINIX_INODES_PER_BLOCK;
131 minix_V2_raw_inode(struct super_block *sb, ino_t ino, struct buffer_head **bh) argument
139 if (!ino || ino > sb
189 unsigned long ino, bit; local
[all...]
/linux-master/include/trace/events/
H A Dnilfs2.h168 unsigned long ino,
171 TP_ARGS(inode, ino, block),
175 __field(unsigned long, ino)
181 __entry->ino = ino;
185 TP_printk("inode = %p ino = %lu block = %lu",
187 __entry->ino,
193 unsigned long ino,
197 TP_ARGS(inode, ino, blkoff, mode),
201 __field(unsigned long, ino)
[all...]
/linux-master/fs/xfs/libxfs/
H A Dxfs_symlink_remote.h14 int xfs_symlink_hdr_set(struct xfs_mount *mp, xfs_ino_t ino, uint32_t offset,
16 bool xfs_symlink_hdr_ok(xfs_ino_t ino, uint32_t offset,
H A Dxfs_types.c100 xfs_ino_t ino)
102 xfs_agnumber_t agno = XFS_INO_TO_AGNO(mp, ino);
103 xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ino);
107 if (XFS_AGINO_TO_INO(mp, agno, agino) != ino)
116 xfs_ino_t ino)
118 return ino == mp->m_sb.sb_rbmino || ino == mp->m_sb.sb_rsumino ||
120 xfs_is_quota_inode(&mp->m_sb, ino));
130 xfs_ino_t ino)
132 if (xfs_internal_inum(mp, ino))
98 xfs_verify_ino( struct xfs_mount *mp, xfs_ino_t ino) argument
114 xfs_internal_inum( struct xfs_mount *mp, xfs_ino_t ino) argument
128 xfs_verify_dir_ino( struct xfs_mount *mp, xfs_ino_t ino) argument
[all...]
/linux-master/fs/qnx4/
H A Ddir.c24 int ix, ino; local
50 ino = blknum * QNX4_INODES_PER_BLOCK + ix - 1;
52 ino = ( le32_to_cpu(de->link.dl_inode_blk) - 1 ) *
58 if (!dir_emit(ctx, fname, size, ino, DT_UNKNOWN)) {
/linux-master/fs/efs/
H A Dnamei.c77 static struct inode *efs_nfs_get_inode(struct super_block *sb, u64 ino, argument
82 if (ino == 0)
84 inode = efs_iget(sb, ino);
113 efs_ino_t ino; local
115 ino = efs_find_entry(d_inode(child), "..", 2);
116 if (ino)
117 parent = d_obtain_alias(efs_iget(child->d_sb, ino));
/linux-master/fs/hostfs/
H A Dhostfs_kern.c128 static char *inode_name(struct inode *ino) argument
133 dentry = d_find_alias(ino);
273 unsigned long long next, ino; local
286 while ((name = read_dir(dir, &next, &ino, &len, &type)) != NULL) {
287 if (!dir_emit(ctx, name, len, ino, type))
295 static int hostfs_open(struct inode *ino, struct file *file) argument
303 if ((mode & HOSTFS_I(ino)->mode) == mode)
306 mode |= HOSTFS_I(ino)->mode;
325 mutex_lock(&HOSTFS_I(ino)->open_mutex);
327 if ((mode & HOSTFS_I(ino)
511 hostfs_inode_update(struct inode *ino, const struct hostfs_stat *st) argument
530 hostfs_inode_set(struct inode *ino, void *data) argument
628 hostfs_lookup(struct inode *ino, struct dentry *dentry, unsigned int flags) argument
646 hostfs_link(struct dentry *to, struct inode *ino, struct dentry *from) argument
665 hostfs_unlink(struct inode *ino, struct dentry *dentry) argument
681 hostfs_symlink(struct mnt_idmap *idmap, struct inode *ino, struct dentry *dentry, const char *to) argument
694 hostfs_mkdir(struct mnt_idmap *idmap, struct inode *ino, struct dentry *dentry, umode_t mode) argument
707 hostfs_rmdir(struct inode *ino, struct dentry *dentry) argument
774 hostfs_permission(struct mnt_idmap *idmap, struct inode *ino, int desired) argument
[all...]
/linux-master/fs/ocfs2/
H A Docfs2_trace.h529 TP_PROTO(unsigned long long ino, unsigned int new_cpos,
531 TP_ARGS(ino, new_cpos, clusters, depth),
533 __field(unsigned long long, ino)
539 __entry->ino = ino;
545 __entry->ino, __entry->new_cpos,
1044 TP_PROTO(unsigned long long ino, unsigned int cpos,
1047 TP_ARGS(ino, cpos, len, p_cluster, ext_flags),
1049 __field(unsigned long long, ino)
1056 __entry->ino
[all...]

Completed in 408 milliseconds

1234567891011>>