blob: d99a0a3e5f400e767ff6f76296f4596bff6f7f58 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Dave Chinner3ebe7d22013-06-27 16:04:53 +10002/*
3 * Copyright (c) 2008-2010, 2013 Dave Chinner
4 * All Rights Reserved.
Dave Chinner3ebe7d22013-06-27 16:04:53 +10005 */
6#include "xfs.h"
7#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +11008#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +11009#include "xfs_log_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110010#include "xfs_trans.h"
Dave Chinner3ebe7d22013-06-27 16:04:53 +100011#include "xfs_trans_priv.h"
Dave Chinner3ebe7d22013-06-27 16:04:53 +100012#include "xfs_icreate_item.h"
Christoph Hellwig12343512013-12-13 11:00:43 +110013#include "xfs_log.h"
Dave Chinner3ebe7d22013-06-27 16:04:53 +100014
15kmem_zone_t *xfs_icreate_zone; /* inode create item zone */
16
17static inline struct xfs_icreate_item *ICR_ITEM(struct xfs_log_item *lip)
18{
19 return container_of(lip, struct xfs_icreate_item, ic_item);
20}
21
22/*
23 * This returns the number of iovecs needed to log the given inode item.
24 *
25 * We only need one iovec for the icreate log structure.
26 */
Dave Chinner166d1362013-08-12 20:50:04 +100027STATIC void
Dave Chinner3ebe7d22013-06-27 16:04:53 +100028xfs_icreate_item_size(
Dave Chinner166d1362013-08-12 20:50:04 +100029 struct xfs_log_item *lip,
30 int *nvecs,
31 int *nbytes)
Dave Chinner3ebe7d22013-06-27 16:04:53 +100032{
Dave Chinner166d1362013-08-12 20:50:04 +100033 *nvecs += 1;
34 *nbytes += sizeof(struct xfs_icreate_log);
Dave Chinner3ebe7d22013-06-27 16:04:53 +100035}
36
37/*
38 * This is called to fill in the vector of log iovecs for the
39 * given inode create log item.
40 */
41STATIC void
42xfs_icreate_item_format(
43 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +110044 struct xfs_log_vec *lv)
Dave Chinner3ebe7d22013-06-27 16:04:53 +100045{
46 struct xfs_icreate_item *icp = ICR_ITEM(lip);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +110047 struct xfs_log_iovec *vecp = NULL;
Dave Chinner3ebe7d22013-06-27 16:04:53 +100048
Christoph Hellwigbde7cff2013-12-13 11:34:02 +110049 xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_ICREATE,
Christoph Hellwig12343512013-12-13 11:00:43 +110050 &icp->ic_format,
51 sizeof(struct xfs_icreate_log));
Dave Chinner3ebe7d22013-06-27 16:04:53 +100052}
53
Dave Chinner3ebe7d22013-06-27 16:04:53 +100054STATIC void
Christoph Hellwigddf92052019-06-28 19:27:32 -070055xfs_icreate_item_release(
Dave Chinner3ebe7d22013-06-27 16:04:53 +100056 struct xfs_log_item *lip)
57{
Christoph Hellwigddf92052019-06-28 19:27:32 -070058 kmem_zone_free(xfs_icreate_zone, ICR_ITEM(lip));
Dave Chinner3ebe7d22013-06-27 16:04:53 +100059}
60
Bhumika Goyalbb6e0eb2016-11-28 14:57:42 +110061static const struct xfs_item_ops xfs_icreate_item_ops = {
Christoph Hellwig9ce632a2019-06-28 19:27:32 -070062 .flags = XFS_ITEM_RELEASE_WHEN_COMMITTED,
Dave Chinner3ebe7d22013-06-27 16:04:53 +100063 .iop_size = xfs_icreate_item_size,
64 .iop_format = xfs_icreate_item_format,
Christoph Hellwigddf92052019-06-28 19:27:32 -070065 .iop_release = xfs_icreate_item_release,
Dave Chinner3ebe7d22013-06-27 16:04:53 +100066};
67
68
69/*
70 * Initialize the inode log item for a newly allocated (in-core) inode.
71 *
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.
75 *
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.
79 */
80void
81xfs_icreate_log(
82 struct xfs_trans *tp,
83 xfs_agnumber_t agno,
84 xfs_agblock_t agbno,
85 unsigned int count,
86 unsigned int inode_size,
87 xfs_agblock_t length,
88 unsigned int generation)
89{
90 struct xfs_icreate_item *icp;
91
92 icp = kmem_zone_zalloc(xfs_icreate_zone, KM_SLEEP);
93
94 xfs_log_item_init(tp->t_mountp, &icp->ic_item, XFS_LI_ICREATE,
95 &xfs_icreate_item_ops);
96
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);
105
106 xfs_trans_add_item(tp, &icp->ic_item);
107 tp->t_flags |= XFS_TRANS_DIRTY;
Dave Chinnere6631f82018-05-09 07:49:37 -0700108 set_bit(XFS_LI_DIRTY, &icp->ic_item.li_flags);
Dave Chinner3ebe7d22013-06-27 16:04:53 +1000109}