xfs:free bp in xlog_find_tail() error path
[deliverable/linux.git] / fs / xfs / xfs_icreate_item.c
CommitLineData
3ebe7d2d
DC
1/*
2 * Copyright (c) 2008-2010, 2013 Dave Chinner
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18#include "xfs.h"
19#include "xfs_fs.h"
20#include "xfs_types.h"
21#include "xfs_bit.h"
22#include "xfs_log.h"
3ebe7d2d 23#include "xfs_trans.h"
3ebe7d2d
DC
24#include "xfs_sb.h"
25#include "xfs_ag.h"
3ebe7d2d
DC
26#include "xfs_mount.h"
27#include "xfs_trans_priv.h"
3ebe7d2d
DC
28#include "xfs_error.h"
29#include "xfs_icreate_item.h"
30
31kmem_zone_t *xfs_icreate_zone; /* inode create item zone */
32
33static inline struct xfs_icreate_item *ICR_ITEM(struct xfs_log_item *lip)
34{
35 return container_of(lip, struct xfs_icreate_item, ic_item);
36}
37
38/*
39 * This returns the number of iovecs needed to log the given inode item.
40 *
41 * We only need one iovec for the icreate log structure.
42 */
43STATIC uint
44xfs_icreate_item_size(
45 struct xfs_log_item *lip)
46{
47 return 1;
48}
49
50/*
51 * This is called to fill in the vector of log iovecs for the
52 * given inode create log item.
53 */
54STATIC void
55xfs_icreate_item_format(
56 struct xfs_log_item *lip,
57 struct xfs_log_iovec *log_vector)
58{
59 struct xfs_icreate_item *icp = ICR_ITEM(lip);
60
61 log_vector->i_addr = (xfs_caddr_t)&icp->ic_format;
62 log_vector->i_len = sizeof(struct xfs_icreate_log);
63 log_vector->i_type = XLOG_REG_TYPE_ICREATE;
64}
65
66
67/* Pinning has no meaning for the create item, so just return. */
68STATIC void
69xfs_icreate_item_pin(
70 struct xfs_log_item *lip)
71{
72}
73
74
75/* pinning has no meaning for the create item, so just return. */
76STATIC void
77xfs_icreate_item_unpin(
78 struct xfs_log_item *lip,
79 int remove)
80{
81}
82
83STATIC void
84xfs_icreate_item_unlock(
85 struct xfs_log_item *lip)
86{
87 struct xfs_icreate_item *icp = ICR_ITEM(lip);
88
89 if (icp->ic_item.li_flags & XFS_LI_ABORTED)
90 kmem_zone_free(xfs_icreate_zone, icp);
91 return;
92}
93
94/*
95 * Because we have ordered buffers being tracked in the AIL for the inode
96 * creation, we don't need the create item after this. Hence we can free
97 * the log item and return -1 to tell the caller we're done with the item.
98 */
99STATIC xfs_lsn_t
100xfs_icreate_item_committed(
101 struct xfs_log_item *lip,
102 xfs_lsn_t lsn)
103{
104 struct xfs_icreate_item *icp = ICR_ITEM(lip);
105
106 kmem_zone_free(xfs_icreate_zone, icp);
107 return (xfs_lsn_t)-1;
108}
109
110/* item can never get into the AIL */
111STATIC uint
112xfs_icreate_item_push(
113 struct xfs_log_item *lip,
114 struct list_head *buffer_list)
115{
116 ASSERT(0);
117 return XFS_ITEM_SUCCESS;
118}
119
120/* Ordered buffers do the dependency tracking here, so this does nothing. */
121STATIC void
122xfs_icreate_item_committing(
123 struct xfs_log_item *lip,
124 xfs_lsn_t lsn)
125{
126}
127
128/*
129 * This is the ops vector shared by all buf log items.
130 */
131static struct xfs_item_ops xfs_icreate_item_ops = {
132 .iop_size = xfs_icreate_item_size,
133 .iop_format = xfs_icreate_item_format,
134 .iop_pin = xfs_icreate_item_pin,
135 .iop_unpin = xfs_icreate_item_unpin,
136 .iop_push = xfs_icreate_item_push,
137 .iop_unlock = xfs_icreate_item_unlock,
138 .iop_committed = xfs_icreate_item_committed,
139 .iop_committing = xfs_icreate_item_committing,
140};
141
142
143/*
144 * Initialize the inode log item for a newly allocated (in-core) inode.
145 *
146 * Inode extents can only reside within an AG. Hence specify the starting
147 * block for the inode chunk by offset within an AG as well as the
148 * length of the allocated extent.
149 *
150 * This joins the item to the transaction and marks it dirty so
151 * that we don't need a separate call to do this, nor does the
152 * caller need to know anything about the icreate item.
153 */
154void
155xfs_icreate_log(
156 struct xfs_trans *tp,
157 xfs_agnumber_t agno,
158 xfs_agblock_t agbno,
159 unsigned int count,
160 unsigned int inode_size,
161 xfs_agblock_t length,
162 unsigned int generation)
163{
164 struct xfs_icreate_item *icp;
165
166 icp = kmem_zone_zalloc(xfs_icreate_zone, KM_SLEEP);
167
168 xfs_log_item_init(tp->t_mountp, &icp->ic_item, XFS_LI_ICREATE,
169 &xfs_icreate_item_ops);
170
171 icp->ic_format.icl_type = XFS_LI_ICREATE;
172 icp->ic_format.icl_size = 1; /* single vector */
173 icp->ic_format.icl_ag = cpu_to_be32(agno);
174 icp->ic_format.icl_agbno = cpu_to_be32(agbno);
175 icp->ic_format.icl_count = cpu_to_be32(count);
176 icp->ic_format.icl_isize = cpu_to_be32(inode_size);
177 icp->ic_format.icl_length = cpu_to_be32(length);
178 icp->ic_format.icl_gen = cpu_to_be32(generation);
179
180 xfs_trans_add_item(tp, &icp->ic_item);
181 tp->t_flags |= XFS_TRANS_DIRTY;
182 icp->ic_item.li_desc->lid_flags |= XFS_LID_DIRTY;
183}
This page took 0.037532 seconds and 5 git commands to generate.