Home
last modified time | relevance | path

Searched refs:in_f (Results 1 – 5 of 5) sorted by relevance

/openbmc/linux/fs/xfs/
H A Dxfs_inode_item_recover.c78 struct xfs_inode_log_format *in_f, in xfs_recover_inode_owner_change() argument
84 ASSERT(in_f->ilf_fields & (XFS_ILOG_DOWNER|XFS_ILOG_AOWNER)); in xfs_recover_inode_owner_change()
86 ip = xfs_inode_alloc(mp, in_f->ilf_ino); in xfs_recover_inode_owner_change()
97 if (in_f->ilf_fields & XFS_ILOG_DOWNER) { in xfs_recover_inode_owner_change()
98 ASSERT(in_f->ilf_fields & XFS_ILOG_DBROOT); in xfs_recover_inode_owner_change()
105 if (in_f->ilf_fields & XFS_ILOG_AOWNER) { in xfs_recover_inode_owner_change()
106 ASSERT(in_f->ilf_fields & XFS_ILOG_ABROOT); in xfs_recover_inode_owner_change()
276 struct xfs_inode_log_format *in_f; in xlog_recover_inode_commit_pass2() local
292 in_f = item->ri_buf[0].i_addr; in xlog_recover_inode_commit_pass2()
294 in_f = kmem_alloc(sizeof(struct xfs_inode_log_format), 0); in xlog_recover_inode_commit_pass2()
[all …]
H A Dxfs_inode_item.c1176 struct xfs_inode_log_format *in_f) in xfs_inode_item_format_convert() argument
1185 in_f->ilf_type = in_f32->ilf_type; in xfs_inode_item_format_convert()
1186 in_f->ilf_size = in_f32->ilf_size; in xfs_inode_item_format_convert()
1187 in_f->ilf_fields = in_f32->ilf_fields; in xfs_inode_item_format_convert()
1188 in_f->ilf_asize = in_f32->ilf_asize; in xfs_inode_item_format_convert()
1189 in_f->ilf_dsize = in_f32->ilf_dsize; in xfs_inode_item_format_convert()
1190 in_f->ilf_ino = in_f32->ilf_ino; in xfs_inode_item_format_convert()
1191 memcpy(&in_f->ilf_u, &in_f32->ilf_u, sizeof(in_f->ilf_u)); in xfs_inode_item_format_convert()
1192 in_f->ilf_blkno = in_f32->ilf_blkno; in xfs_inode_item_format_convert()
1193 in_f->ilf_len = in_f32->ilf_len; in xfs_inode_item_format_convert()
[all …]
H A Dxfs_trace.h2331 TP_PROTO(struct xlog *log, struct xfs_inode_log_format *in_f),
2332 TP_ARGS(log, in_f),
2346 __entry->ino = in_f->ilf_ino;
2347 __entry->size = in_f->ilf_size;
2348 __entry->fields = in_f->ilf_fields;
2349 __entry->asize = in_f->ilf_asize;
2350 __entry->dsize = in_f->ilf_dsize;
2351 __entry->blkno = in_f->ilf_blkno;
2352 __entry->len = in_f->ilf_len;
2353 __entry->boffset = in_f->ilf_boffset;
[all …]
H A Dxfs_log_recover.c2131 struct xfs_inode_log_format *in_f; /* any will do */ in xlog_recover_add_to_trans() local
2165 in_f = (struct xfs_inode_log_format *)ptr; in xlog_recover_add_to_trans()
2179 if (in_f->ilf_size == 0 || in xlog_recover_add_to_trans()
2180 in_f->ilf_size > XLOG_MAX_REGIONS_IN_ITEM) { in xlog_recover_add_to_trans()
2183 in_f->ilf_size); in xlog_recover_add_to_trans()
2189 item->ri_total = in_f->ilf_size; in xlog_recover_add_to_trans()
/openbmc/openbmc/poky/bitbake/lib/ply/
H A Dyacc.py1853 in_f = open(filename,"rb")
1855 tabversion = pickle.load(in_f)
1858 self.lr_method = pickle.load(in_f)
1859 signature = pickle.load(in_f)
1860 self.lr_action = pickle.load(in_f)
1861 self.lr_goto = pickle.load(in_f)
1862 productions = pickle.load(in_f)
1868 in_f.close()