1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2008-2010, 2013 Dave Chinner
8 #include "xfs_shared.h"
9 #include "xfs_log_format.h"
10 #include "xfs_trans.h"
11 #include "xfs_trans_priv.h"
12 #include "xfs_icreate_item.h"
15 kmem_zone_t *xfs_icreate_zone; /* inode create item zone */
17 static inline struct xfs_icreate_item *ICR_ITEM(struct xfs_log_item *lip)
19 return container_of(lip, struct xfs_icreate_item, ic_item);
23 * This returns the number of iovecs needed to log the given inode item.
25 * We only need one iovec for the icreate log structure.
28 xfs_icreate_item_size(
29 struct xfs_log_item *lip,
34 *nbytes += sizeof(struct xfs_icreate_log);
38 * This is called to fill in the vector of log iovecs for the
39 * given inode create log item.
42 xfs_icreate_item_format(
43 struct xfs_log_item *lip,
44 struct xfs_log_vec *lv)
46 struct xfs_icreate_item *icp = ICR_ITEM(lip);
47 struct xfs_log_iovec *vecp = NULL;
49 xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_ICREATE,
51 sizeof(struct xfs_icreate_log));
55 xfs_icreate_item_release(
56 struct xfs_log_item *lip)
58 kmem_zone_free(xfs_icreate_zone, ICR_ITEM(lip));
61 static const struct xfs_item_ops xfs_icreate_item_ops = {
62 .flags = XFS_ITEM_RELEASE_WHEN_COMMITTED,
63 .iop_size = xfs_icreate_item_size,
64 .iop_format = xfs_icreate_item_format,
65 .iop_release = xfs_icreate_item_release,
70 * Initialize the inode log item for a newly allocated (in-core) inode.
72 * Inode extents can only reside within an AG. Hence specify the starting
73 * block for the inode chunk by offset within an AG as well as the
74 * length of the allocated extent.
76 * This joins the item to the transaction and marks it dirty so
77 * that we don't need a separate call to do this, nor does the
78 * caller need to know anything about the icreate item.
86 unsigned int inode_size,
88 unsigned int generation)
90 struct xfs_icreate_item *icp;
92 icp = kmem_zone_zalloc(xfs_icreate_zone, 0);
94 xfs_log_item_init(tp->t_mountp, &icp->ic_item, XFS_LI_ICREATE,
95 &xfs_icreate_item_ops);
97 icp->ic_format.icl_type = XFS_LI_ICREATE;
98 icp->ic_format.icl_size = 1; /* single vector */
99 icp->ic_format.icl_ag = cpu_to_be32(agno);
100 icp->ic_format.icl_agbno = cpu_to_be32(agbno);
101 icp->ic_format.icl_count = cpu_to_be32(count);
102 icp->ic_format.icl_isize = cpu_to_be32(inode_size);
103 icp->ic_format.icl_length = cpu_to_be32(length);
104 icp->ic_format.icl_gen = cpu_to_be32(generation);
106 xfs_trans_add_item(tp, &icp->ic_item);
107 tp->t_flags |= XFS_TRANS_DIRTY;
108 set_bit(XFS_LI_DIRTY, &icp->ic_item.li_flags);