Dave Chinner | 0b61f8a | 2018-06-05 19:42:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 3 | * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc. |
| 4 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include "xfs.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 7 | #include "xfs_fs.h" |
Dave Chinner | 70a9883 | 2013-10-23 10:36:05 +1100 | [diff] [blame] | 8 | #include "xfs_shared.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 9 | #include "xfs_format.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 10 | #include "xfs_log_format.h" |
| 11 | #include "xfs_trans_resv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include "xfs_mount.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 13 | #include "xfs_inode.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 14 | #include "xfs_trans.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 15 | #include "xfs_buf_item.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include "xfs_trans_priv.h" |
| 17 | #include "xfs_error.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 18 | #include "xfs_trace.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Christoph Hellwig | 4a5224d | 2010-04-18 00:10:45 +0000 | [diff] [blame] | 20 | /* |
| 21 | * Check to see if a buffer matching the given parameters is already |
| 22 | * a part of the given transaction. |
| 23 | */ |
| 24 | STATIC struct xfs_buf * |
| 25 | xfs_trans_buf_item_match( |
| 26 | struct xfs_trans *tp, |
| 27 | struct xfs_buftarg *target, |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 28 | struct xfs_buf_map *map, |
| 29 | int nmaps) |
Christoph Hellwig | 4a5224d | 2010-04-18 00:10:45 +0000 | [diff] [blame] | 30 | { |
Dave Chinner | e6631f8 | 2018-05-09 07:49:37 -0700 | [diff] [blame] | 31 | struct xfs_log_item *lip; |
Christoph Hellwig | e98c414 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 32 | struct xfs_buf_log_item *blip; |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 33 | int len = 0; |
| 34 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 36 | for (i = 0; i < nmaps; i++) |
| 37 | len += map[i].bm_len; |
| 38 | |
Dave Chinner | e6631f8 | 2018-05-09 07:49:37 -0700 | [diff] [blame] | 39 | list_for_each_entry(lip, &tp->t_items, li_trans) { |
| 40 | blip = (struct xfs_buf_log_item *)lip; |
Christoph Hellwig | e98c414 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 41 | if (blip->bli_item.li_type == XFS_LI_BUF && |
Chandra Seetharaman | 49074c0 | 2011-07-22 23:40:40 +0000 | [diff] [blame] | 42 | blip->bli_buf->b_target == target && |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 43 | XFS_BUF_ADDR(blip->bli_buf) == map[0].bm_bn && |
| 44 | blip->bli_buf->b_length == len) { |
| 45 | ASSERT(blip->bli_buf->b_map_count == nmaps); |
Christoph Hellwig | e98c414 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 46 | return blip->bli_buf; |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 47 | } |
Christoph Hellwig | 4a5224d | 2010-04-18 00:10:45 +0000 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | return NULL; |
| 51 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Christoph Hellwig | d7e84f4 | 2010-02-15 23:35:09 +0000 | [diff] [blame] | 53 | /* |
| 54 | * Add the locked buffer to the transaction. |
| 55 | * |
| 56 | * The buffer must be locked, and it cannot be associated with any |
| 57 | * transaction. |
| 58 | * |
| 59 | * If the buffer does not yet have a buf log item associated with it, |
| 60 | * then allocate one for it. Then add the buf item to the transaction. |
| 61 | */ |
| 62 | STATIC void |
| 63 | _xfs_trans_bjoin( |
| 64 | struct xfs_trans *tp, |
| 65 | struct xfs_buf *bp, |
| 66 | int reset_recur) |
| 67 | { |
| 68 | struct xfs_buf_log_item *bip; |
| 69 | |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 70 | ASSERT(bp->b_transp == NULL); |
Christoph Hellwig | d7e84f4 | 2010-02-15 23:35:09 +0000 | [diff] [blame] | 71 | |
| 72 | /* |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 73 | * The xfs_buf_log_item pointer is stored in b_log_item. If |
Christoph Hellwig | d7e84f4 | 2010-02-15 23:35:09 +0000 | [diff] [blame] | 74 | * it doesn't have one yet, then allocate one and initialize it. |
| 75 | * The checks to see if one is there are in xfs_buf_item_init(). |
| 76 | */ |
| 77 | xfs_buf_item_init(bp, tp->t_mountp); |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 78 | bip = bp->b_log_item; |
Christoph Hellwig | d7e84f4 | 2010-02-15 23:35:09 +0000 | [diff] [blame] | 79 | ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); |
Mark Tinguely | 0f22f9d | 2012-12-04 17:18:03 -0600 | [diff] [blame] | 80 | ASSERT(!(bip->__bli_format.blf_flags & XFS_BLF_CANCEL)); |
Christoph Hellwig | d7e84f4 | 2010-02-15 23:35:09 +0000 | [diff] [blame] | 81 | ASSERT(!(bip->bli_flags & XFS_BLI_LOGGED)); |
| 82 | if (reset_recur) |
| 83 | bip->bli_recur = 0; |
| 84 | |
| 85 | /* |
| 86 | * Take a reference for this transaction on the buf item. |
| 87 | */ |
| 88 | atomic_inc(&bip->bli_refcount); |
| 89 | |
| 90 | /* |
Dave Chinner | e6631f8 | 2018-05-09 07:49:37 -0700 | [diff] [blame] | 91 | * Attach the item to the transaction so we can find it in |
| 92 | * xfs_trans_get_buf() and friends. |
Christoph Hellwig | d7e84f4 | 2010-02-15 23:35:09 +0000 | [diff] [blame] | 93 | */ |
Christoph Hellwig | e98c414 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 94 | xfs_trans_add_item(tp, &bip->bli_item); |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 95 | bp->b_transp = tp; |
Christoph Hellwig | d7e84f4 | 2010-02-15 23:35:09 +0000 | [diff] [blame] | 96 | |
| 97 | } |
| 98 | |
| 99 | void |
| 100 | xfs_trans_bjoin( |
| 101 | struct xfs_trans *tp, |
| 102 | struct xfs_buf *bp) |
| 103 | { |
| 104 | _xfs_trans_bjoin(tp, bp, 0); |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 105 | trace_xfs_trans_bjoin(bp->b_log_item); |
Christoph Hellwig | d7e84f4 | 2010-02-15 23:35:09 +0000 | [diff] [blame] | 106 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
| 108 | /* |
| 109 | * Get and lock the buffer for the caller if it is not already |
| 110 | * locked within the given transaction. If it is already locked |
| 111 | * within the transaction, just increment its lock recursion count |
| 112 | * and return a pointer to it. |
| 113 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | * If the transaction pointer is NULL, make this just a normal |
| 115 | * get_buf() call. |
| 116 | */ |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 117 | struct xfs_buf * |
| 118 | xfs_trans_get_buf_map( |
| 119 | struct xfs_trans *tp, |
| 120 | struct xfs_buftarg *target, |
| 121 | struct xfs_buf_map *map, |
| 122 | int nmaps, |
| 123 | xfs_buf_flags_t flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { |
| 125 | xfs_buf_t *bp; |
Carlos Maiolino | 70a2065 | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 126 | struct xfs_buf_log_item *bip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 128 | if (!tp) |
| 129 | return xfs_buf_get_map(target, map, nmaps, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
| 131 | /* |
| 132 | * If we find the buffer in the cache with this transaction |
| 133 | * pointer in its b_fsprivate2 field, then we know we already |
| 134 | * have it locked. In this case we just increment the lock |
| 135 | * recursion count and return the buffer to the caller. |
| 136 | */ |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 137 | bp = xfs_trans_buf_item_match(tp, target, map, nmaps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | if (bp != NULL) { |
Christoph Hellwig | 0c842ad | 2011-07-08 14:36:19 +0200 | [diff] [blame] | 139 | ASSERT(xfs_buf_islocked(bp)); |
Christoph Hellwig | c867cb6 | 2011-10-10 16:52:46 +0000 | [diff] [blame] | 140 | if (XFS_FORCED_SHUTDOWN(tp->t_mountp)) { |
| 141 | xfs_buf_stale(bp); |
Dave Chinner | b0388bf | 2016-02-10 15:01:11 +1100 | [diff] [blame] | 142 | bp->b_flags |= XBF_DONE; |
Christoph Hellwig | c867cb6 | 2011-10-10 16:52:46 +0000 | [diff] [blame] | 143 | } |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 144 | |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 145 | ASSERT(bp->b_transp == tp); |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 146 | bip = bp->b_log_item; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | ASSERT(bip != NULL); |
| 148 | ASSERT(atomic_read(&bip->bli_refcount) > 0); |
| 149 | bip->bli_recur++; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 150 | trace_xfs_trans_get_buf_recur(bip); |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 151 | return bp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 154 | bp = xfs_buf_get_map(target, map, nmaps, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | if (bp == NULL) { |
| 156 | return NULL; |
| 157 | } |
| 158 | |
Chandra Seetharaman | 5a52c2a58 | 2011-07-22 23:39:51 +0000 | [diff] [blame] | 159 | ASSERT(!bp->b_error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
Christoph Hellwig | d7e84f4 | 2010-02-15 23:35:09 +0000 | [diff] [blame] | 161 | _xfs_trans_bjoin(tp, bp, 1); |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 162 | trace_xfs_trans_get_buf(bp->b_log_item); |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 163 | return bp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | /* |
| 167 | * Get and lock the superblock buffer of this file system for the |
| 168 | * given transaction. |
| 169 | * |
| 170 | * We don't need to use incore_match() here, because the superblock |
| 171 | * buffer is a private buffer which we keep a pointer to in the |
| 172 | * mount structure. |
| 173 | */ |
| 174 | xfs_buf_t * |
Carlos Maiolino | 70a2065 | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 175 | xfs_trans_getsb( |
| 176 | xfs_trans_t *tp, |
| 177 | struct xfs_mount *mp, |
| 178 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | { |
| 180 | xfs_buf_t *bp; |
Carlos Maiolino | 70a2065 | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 181 | struct xfs_buf_log_item *bip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
| 183 | /* |
| 184 | * Default to just trying to lock the superblock buffer |
| 185 | * if tp is NULL. |
| 186 | */ |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 187 | if (tp == NULL) |
| 188 | return xfs_getsb(mp, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
| 190 | /* |
| 191 | * If the superblock buffer already has this transaction |
| 192 | * pointer in its b_fsprivate2 field, then we know we already |
| 193 | * have it locked. In this case we just increment the lock |
| 194 | * recursion count and return the buffer to the caller. |
| 195 | */ |
| 196 | bp = mp->m_sb_bp; |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 197 | if (bp->b_transp == tp) { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 198 | bip = bp->b_log_item; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | ASSERT(bip != NULL); |
| 200 | ASSERT(atomic_read(&bip->bli_refcount) > 0); |
| 201 | bip->bli_recur++; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 202 | trace_xfs_trans_getsb_recur(bip); |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 203 | return bp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | bp = xfs_getsb(mp, flags); |
Christoph Hellwig | d7e84f4 | 2010-02-15 23:35:09 +0000 | [diff] [blame] | 207 | if (bp == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
Christoph Hellwig | d7e84f4 | 2010-02-15 23:35:09 +0000 | [diff] [blame] | 210 | _xfs_trans_bjoin(tp, bp, 1); |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 211 | trace_xfs_trans_getsb(bp->b_log_item); |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 212 | return bp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | } |
| 214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | /* |
| 216 | * Get and lock the buffer for the caller if it is not already |
| 217 | * locked within the given transaction. If it has not yet been |
| 218 | * read in, read it from disk. If it is already locked |
| 219 | * within the transaction and already read in, just increment its |
| 220 | * lock recursion count and return a pointer to it. |
| 221 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | * If the transaction pointer is NULL, make this just a normal |
| 223 | * read_buf() call. |
| 224 | */ |
| 225 | int |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 226 | xfs_trans_read_buf_map( |
| 227 | struct xfs_mount *mp, |
| 228 | struct xfs_trans *tp, |
| 229 | struct xfs_buftarg *target, |
| 230 | struct xfs_buf_map *map, |
| 231 | int nmaps, |
| 232 | xfs_buf_flags_t flags, |
Dave Chinner | c3f8fc7 | 2012-11-12 22:54:01 +1100 | [diff] [blame] | 233 | struct xfs_buf **bpp, |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 234 | const struct xfs_buf_ops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | { |
Dave Chinner | 2d3d0c5 | 2014-12-04 09:43:13 +1100 | [diff] [blame] | 236 | struct xfs_buf *bp = NULL; |
| 237 | struct xfs_buf_log_item *bip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | int error; |
| 239 | |
Dave Chinner | 7ca790a | 2012-04-23 15:58:55 +1000 | [diff] [blame] | 240 | *bpp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | /* |
| 242 | * If we find the buffer in the cache with this transaction |
| 243 | * pointer in its b_fsprivate2 field, then we know we already |
| 244 | * have it locked. If it is already read in we just increment |
| 245 | * the lock recursion count and return the buffer to the caller. |
| 246 | * If the buffer is not yet read in, then we read it in, increment |
| 247 | * the lock recursion count, and return it to the caller. |
| 248 | */ |
Dave Chinner | 2d3d0c5 | 2014-12-04 09:43:13 +1100 | [diff] [blame] | 249 | if (tp) |
| 250 | bp = xfs_trans_buf_item_match(tp, target, map, nmaps); |
| 251 | if (bp) { |
Christoph Hellwig | 0c842ad | 2011-07-08 14:36:19 +0200 | [diff] [blame] | 252 | ASSERT(xfs_buf_islocked(bp)); |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 253 | ASSERT(bp->b_transp == tp); |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 254 | ASSERT(bp->b_log_item != NULL); |
Chandra Seetharaman | 5a52c2a58 | 2011-07-22 23:39:51 +0000 | [diff] [blame] | 255 | ASSERT(!bp->b_error); |
Dave Chinner | 2d3d0c5 | 2014-12-04 09:43:13 +1100 | [diff] [blame] | 256 | ASSERT(bp->b_flags & XBF_DONE); |
Christoph Hellwig | 83a0adc | 2013-12-17 00:03:52 -0800 | [diff] [blame] | 257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | /* |
| 259 | * We never locked this buf ourselves, so we shouldn't |
| 260 | * brelse it either. Just get out. |
| 261 | */ |
| 262 | if (XFS_FORCED_SHUTDOWN(mp)) { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 263 | trace_xfs_trans_read_buf_shut(bp, _RET_IP_); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 264 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 267 | bip = bp->b_log_item; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | bip->bli_recur++; |
| 269 | |
| 270 | ASSERT(atomic_read(&bip->bli_refcount) > 0); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 271 | trace_xfs_trans_read_buf_recur(bip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | *bpp = bp; |
| 273 | return 0; |
| 274 | } |
| 275 | |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 276 | bp = xfs_buf_read_map(target, map, nmaps, flags, ops); |
Dave Chinner | 2d3d0c5 | 2014-12-04 09:43:13 +1100 | [diff] [blame] | 277 | if (!bp) { |
| 278 | if (!(flags & XBF_TRYLOCK)) |
| 279 | return -ENOMEM; |
| 280 | return tp ? 0 : -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | } |
Dave Chinner | 2d3d0c5 | 2014-12-04 09:43:13 +1100 | [diff] [blame] | 282 | |
| 283 | /* |
| 284 | * If we've had a read error, then the contents of the buffer are |
| 285 | * invalid and should not be used. To ensure that a followup read tries |
| 286 | * to pull the buffer from disk again, we clear the XBF_DONE flag and |
| 287 | * mark the buffer stale. This ensures that anyone who has a current |
| 288 | * reference to the buffer will interpret it's contents correctly and |
| 289 | * future cache lookups will also treat it as an empty, uninitialised |
| 290 | * buffer. |
| 291 | */ |
Chandra Seetharaman | 5a52c2a58 | 2011-07-22 23:39:51 +0000 | [diff] [blame] | 292 | if (bp->b_error) { |
| 293 | error = bp->b_error; |
Dave Chinner | 2d3d0c5 | 2014-12-04 09:43:13 +1100 | [diff] [blame] | 294 | if (!XFS_FORCED_SHUTDOWN(mp)) |
| 295 | xfs_buf_ioerror_alert(bp, __func__); |
| 296 | bp->b_flags &= ~XBF_DONE; |
Christoph Hellwig | c867cb6 | 2011-10-10 16:52:46 +0000 | [diff] [blame] | 297 | xfs_buf_stale(bp); |
Dave Chinner | 2d3d0c5 | 2014-12-04 09:43:13 +1100 | [diff] [blame] | 298 | |
| 299 | if (tp && (tp->t_flags & XFS_TRANS_DIRTY)) |
Nathan Scott | 7d04a33 | 2006-06-09 14:58:38 +1000 | [diff] [blame] | 300 | xfs_force_shutdown(tp->t_mountp, SHUTDOWN_META_IO_ERROR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | xfs_buf_relse(bp); |
Dave Chinner | ac75a1f | 2014-03-07 16:19:14 +1100 | [diff] [blame] | 302 | |
| 303 | /* bad CRC means corrupted metadata */ |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 304 | if (error == -EFSBADCRC) |
| 305 | error = -EFSCORRUPTED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | return error; |
| 307 | } |
Dave Chinner | 2d3d0c5 | 2014-12-04 09:43:13 +1100 | [diff] [blame] | 308 | |
| 309 | if (XFS_FORCED_SHUTDOWN(mp)) { |
| 310 | xfs_buf_relse(bp); |
| 311 | trace_xfs_trans_read_buf_shut(bp, _RET_IP_); |
| 312 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
Dave Chinner | e9892d3 | 2015-02-10 09:23:40 +1100 | [diff] [blame] | 315 | if (tp) { |
Dave Chinner | 2d3d0c5 | 2014-12-04 09:43:13 +1100 | [diff] [blame] | 316 | _xfs_trans_bjoin(tp, bp, 1); |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 317 | trace_xfs_trans_read_buf(bp->b_log_item); |
Dave Chinner | e9892d3 | 2015-02-10 09:23:40 +1100 | [diff] [blame] | 318 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | *bpp = bp; |
| 320 | return 0; |
| 321 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | /* |
| 325 | * Release the buffer bp which was previously acquired with one of the |
| 326 | * xfs_trans_... buffer allocation routines if the buffer has not |
| 327 | * been modified within this transaction. If the buffer is modified |
| 328 | * within this transaction, do decrement the recursion count but do |
| 329 | * not release the buffer even if the count goes to 0. If the buffer is not |
| 330 | * modified within the transaction, decrement the recursion count and |
| 331 | * release the buffer if the recursion count goes to 0. |
| 332 | * |
| 333 | * If the buffer is to be released and it was not modified before |
| 334 | * this transaction began, then free the buf_log_item associated with it. |
| 335 | * |
| 336 | * If the transaction pointer is NULL, make this just a normal |
| 337 | * brelse() call. |
| 338 | */ |
| 339 | void |
Carlos Maiolino | 70a2065 | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 340 | xfs_trans_brelse( |
| 341 | xfs_trans_t *tp, |
| 342 | xfs_buf_t *bp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | { |
Carlos Maiolino | 70a2065 | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 344 | struct xfs_buf_log_item *bip; |
Brian Foster | 79e641ce | 2017-06-14 21:35:35 -0700 | [diff] [blame] | 345 | int freed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
| 347 | /* |
| 348 | * Default to a normal brelse() call if the tp is NULL. |
| 349 | */ |
| 350 | if (tp == NULL) { |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 351 | ASSERT(bp->b_transp == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | xfs_buf_relse(bp); |
| 353 | return; |
| 354 | } |
| 355 | |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 356 | ASSERT(bp->b_transp == tp); |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 357 | bip = bp->b_log_item; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | ASSERT(bip->bli_item.li_type == XFS_LI_BUF); |
| 359 | ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); |
Mark Tinguely | 0f22f9d | 2012-12-04 17:18:03 -0600 | [diff] [blame] | 360 | ASSERT(!(bip->__bli_format.blf_flags & XFS_BLF_CANCEL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | ASSERT(atomic_read(&bip->bli_refcount) > 0); |
| 362 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 363 | trace_xfs_trans_brelse(bip); |
| 364 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | /* |
| 366 | * If the release is just for a recursive lock, |
| 367 | * then decrement the count and return. |
| 368 | */ |
| 369 | if (bip->bli_recur > 0) { |
| 370 | bip->bli_recur--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | return; |
| 372 | } |
| 373 | |
| 374 | /* |
| 375 | * If the buffer is dirty within this transaction, we can't |
| 376 | * release it until we commit. |
| 377 | */ |
Dave Chinner | e6631f8 | 2018-05-09 07:49:37 -0700 | [diff] [blame] | 378 | if (test_bit(XFS_LI_DIRTY, &bip->bli_item.li_flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
| 381 | /* |
| 382 | * If the buffer has been invalidated, then we can't release |
| 383 | * it until the transaction commits to disk unless it is re-dirtied |
| 384 | * as part of this transaction. This prevents us from pulling |
| 385 | * the item from the AIL before we should. |
| 386 | */ |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 387 | if (bip->bli_flags & XFS_BLI_STALE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | |
| 390 | ASSERT(!(bip->bli_flags & XFS_BLI_LOGGED)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
| 392 | /* |
| 393 | * Free up the log item descriptor tracking the released item. |
| 394 | */ |
Christoph Hellwig | e98c414 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 395 | xfs_trans_del_item(&bip->bli_item); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | |
| 397 | /* |
| 398 | * Clear the hold flag in the buf log item if it is set. |
| 399 | * We wouldn't want the next user of the buffer to |
| 400 | * get confused. |
| 401 | */ |
| 402 | if (bip->bli_flags & XFS_BLI_HOLD) { |
| 403 | bip->bli_flags &= ~XFS_BLI_HOLD; |
| 404 | } |
| 405 | |
| 406 | /* |
| 407 | * Drop our reference to the buf log item. |
| 408 | */ |
Brian Foster | 79e641ce | 2017-06-14 21:35:35 -0700 | [diff] [blame] | 409 | freed = atomic_dec_and_test(&bip->bli_refcount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
| 411 | /* |
Brian Foster | 79e641ce | 2017-06-14 21:35:35 -0700 | [diff] [blame] | 412 | * If the buf item is not tracking data in the log, then we must free it |
| 413 | * before releasing the buffer back to the free pool. |
| 414 | * |
| 415 | * If the fs has shutdown and we dropped the last reference, it may fall |
| 416 | * on us to release a (possibly dirty) bli if it never made it to the |
| 417 | * AIL (e.g., the aborted unpin already happened and didn't release it |
Matthew Wilcox | 57e8095 | 2018-03-07 14:59:39 -0800 | [diff] [blame] | 418 | * due to our reference). Since we're already shutdown and need |
| 419 | * ail_lock, just force remove from the AIL and release the bli here. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | */ |
Brian Foster | 79e641ce | 2017-06-14 21:35:35 -0700 | [diff] [blame] | 421 | if (XFS_FORCED_SHUTDOWN(tp->t_mountp) && freed) { |
| 422 | xfs_trans_ail_remove(&bip->bli_item, SHUTDOWN_LOG_IO_ERROR); |
| 423 | xfs_buf_item_relse(bp); |
Brian Foster | a4f6cf6 | 2017-08-29 10:08:36 -0700 | [diff] [blame] | 424 | } else if (!(bip->bli_flags & XFS_BLI_DIRTY)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | /*** |
| 426 | ASSERT(bp->b_pincount == 0); |
| 427 | ***/ |
| 428 | ASSERT(atomic_read(&bip->bli_refcount) == 0); |
Dave Chinner | 22525c1 | 2018-05-09 07:47:34 -0700 | [diff] [blame] | 429 | ASSERT(!test_bit(XFS_LI_IN_AIL, &bip->bli_item.li_flags)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | ASSERT(!(bip->bli_flags & XFS_BLI_INODE_ALLOC_BUF)); |
| 431 | xfs_buf_item_relse(bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | } |
Christoph Hellwig | 5b03ff1 | 2012-02-20 02:31:22 +0000 | [diff] [blame] | 433 | |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 434 | bp->b_transp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | xfs_buf_relse(bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | * Mark the buffer as not needing to be unlocked when the buf item's |
Dave Chinner | 904c17e | 2013-08-28 21:12:03 +1000 | [diff] [blame] | 440 | * iop_unlock() routine is called. The buffer must already be locked |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | * and associated with the given transaction. |
| 442 | */ |
| 443 | /* ARGSUSED */ |
| 444 | void |
Carlos Maiolino | 70a2065 | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 445 | xfs_trans_bhold( |
| 446 | xfs_trans_t *tp, |
| 447 | xfs_buf_t *bp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 449 | struct xfs_buf_log_item *bip = bp->b_log_item; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 451 | ASSERT(bp->b_transp == tp); |
Christoph Hellwig | adadbee | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 452 | ASSERT(bip != NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); |
Mark Tinguely | 0f22f9d | 2012-12-04 17:18:03 -0600 | [diff] [blame] | 454 | ASSERT(!(bip->__bli_format.blf_flags & XFS_BLF_CANCEL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | ASSERT(atomic_read(&bip->bli_refcount) > 0); |
Christoph Hellwig | adadbee | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 456 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | bip->bli_flags |= XFS_BLI_HOLD; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 458 | trace_xfs_trans_bhold(bip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | } |
| 460 | |
| 461 | /* |
Tim Shimmin | efa092f | 2005-09-05 08:29:01 +1000 | [diff] [blame] | 462 | * Cancel the previous buffer hold request made on this buffer |
| 463 | * for this transaction. |
| 464 | */ |
| 465 | void |
Carlos Maiolino | 70a2065 | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 466 | xfs_trans_bhold_release( |
| 467 | xfs_trans_t *tp, |
| 468 | xfs_buf_t *bp) |
Tim Shimmin | efa092f | 2005-09-05 08:29:01 +1000 | [diff] [blame] | 469 | { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 470 | struct xfs_buf_log_item *bip = bp->b_log_item; |
Tim Shimmin | efa092f | 2005-09-05 08:29:01 +1000 | [diff] [blame] | 471 | |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 472 | ASSERT(bp->b_transp == tp); |
Christoph Hellwig | adadbee | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 473 | ASSERT(bip != NULL); |
Tim Shimmin | efa092f | 2005-09-05 08:29:01 +1000 | [diff] [blame] | 474 | ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); |
Mark Tinguely | 0f22f9d | 2012-12-04 17:18:03 -0600 | [diff] [blame] | 475 | ASSERT(!(bip->__bli_format.blf_flags & XFS_BLF_CANCEL)); |
Tim Shimmin | efa092f | 2005-09-05 08:29:01 +1000 | [diff] [blame] | 476 | ASSERT(atomic_read(&bip->bli_refcount) > 0); |
| 477 | ASSERT(bip->bli_flags & XFS_BLI_HOLD); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 478 | |
Christoph Hellwig | adadbee | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 479 | bip->bli_flags &= ~XFS_BLI_HOLD; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 480 | trace_xfs_trans_bhold_release(bip); |
Tim Shimmin | efa092f | 2005-09-05 08:29:01 +1000 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | /* |
Brian Foster | 9684010 | 2017-08-29 10:08:38 -0700 | [diff] [blame] | 484 | * Mark a buffer dirty in the transaction. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | */ |
| 486 | void |
Brian Foster | 9684010 | 2017-08-29 10:08:38 -0700 | [diff] [blame] | 487 | xfs_trans_dirty_buf( |
| 488 | struct xfs_trans *tp, |
| 489 | struct xfs_buf *bp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 491 | struct xfs_buf_log_item *bip = bp->b_log_item; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 493 | ASSERT(bp->b_transp == tp); |
Christoph Hellwig | adadbee | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 494 | ASSERT(bip != NULL); |
Christoph Hellwig | cb669ca | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 495 | ASSERT(bp->b_iodone == NULL || |
| 496 | bp->b_iodone == xfs_buf_iodone_callbacks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | |
| 498 | /* |
| 499 | * Mark the buffer as needing to be written out eventually, |
| 500 | * and set its iodone function to remove the buffer's buf log |
| 501 | * item from the AIL and free it when the buffer is flushed |
| 502 | * to disk. See xfs_buf_attach_iodone() for more details |
| 503 | * on li_cb and xfs_buf_iodone_callbacks(). |
| 504 | * If we end up aborting this transaction, we trap this buffer |
| 505 | * inside the b_bdstrat callback so that this won't get written to |
| 506 | * disk. |
| 507 | */ |
Dave Chinner | b0388bf | 2016-02-10 15:01:11 +1100 | [diff] [blame] | 508 | bp->b_flags |= XBF_DONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | ASSERT(atomic_read(&bip->bli_refcount) > 0); |
Christoph Hellwig | cb669ca | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 511 | bp->b_iodone = xfs_buf_iodone_callbacks; |
Christoph Hellwig | ca30b2a | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 512 | bip->bli_item.li_cb = xfs_buf_iodone; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | |
| 514 | /* |
| 515 | * If we invalidated the buffer within this transaction, then |
| 516 | * cancel the invalidation now that we're dirtying the buffer |
| 517 | * again. There are no races with the code in xfs_buf_item_unpin(), |
| 518 | * because we have a reference to the buffer this entire time. |
| 519 | */ |
| 520 | if (bip->bli_flags & XFS_BLI_STALE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | bip->bli_flags &= ~XFS_BLI_STALE; |
Dave Chinner | 5cfd28b | 2016-02-10 15:01:11 +1100 | [diff] [blame] | 522 | ASSERT(bp->b_flags & XBF_STALE); |
| 523 | bp->b_flags &= ~XBF_STALE; |
Mark Tinguely | 0f22f9d | 2012-12-04 17:18:03 -0600 | [diff] [blame] | 524 | bip->__bli_format.blf_flags &= ~XFS_BLF_CANCEL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | } |
Brian Foster | 9684010 | 2017-08-29 10:08:38 -0700 | [diff] [blame] | 526 | bip->bli_flags |= XFS_BLI_DIRTY | XFS_BLI_LOGGED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | tp->t_flags |= XFS_TRANS_DIRTY; |
Dave Chinner | e6631f8 | 2018-05-09 07:49:37 -0700 | [diff] [blame] | 529 | set_bit(XFS_LI_DIRTY, &bip->bli_item.li_flags); |
Brian Foster | 9684010 | 2017-08-29 10:08:38 -0700 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | /* |
| 533 | * This is called to mark bytes first through last inclusive of the given |
| 534 | * buffer as needing to be logged when the transaction is committed. |
| 535 | * The buffer must already be associated with the given transaction. |
| 536 | * |
| 537 | * First and last are numbers relative to the beginning of this buffer, |
| 538 | * so the first byte in the buffer is numbered 0 regardless of the |
| 539 | * value of b_blkno. |
| 540 | */ |
| 541 | void |
| 542 | xfs_trans_log_buf( |
| 543 | struct xfs_trans *tp, |
| 544 | struct xfs_buf *bp, |
| 545 | uint first, |
| 546 | uint last) |
| 547 | { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 548 | struct xfs_buf_log_item *bip = bp->b_log_item; |
Brian Foster | 9684010 | 2017-08-29 10:08:38 -0700 | [diff] [blame] | 549 | |
| 550 | ASSERT(first <= last && last < BBTOB(bp->b_length)); |
Brian Foster | 8dc518d | 2017-08-29 10:08:38 -0700 | [diff] [blame] | 551 | ASSERT(!(bip->bli_flags & XFS_BLI_ORDERED)); |
Brian Foster | 9684010 | 2017-08-29 10:08:38 -0700 | [diff] [blame] | 552 | |
| 553 | xfs_trans_dirty_buf(tp, bp); |
Dave Chinner | 5f6bed7 | 2013-06-27 16:04:52 +1000 | [diff] [blame] | 554 | |
Brian Foster | 9684010 | 2017-08-29 10:08:38 -0700 | [diff] [blame] | 555 | trace_xfs_trans_log_buf(bip); |
Brian Foster | 8dc518d | 2017-08-29 10:08:38 -0700 | [diff] [blame] | 556 | xfs_buf_item_log(bip, first, last); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | |
| 560 | /* |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 561 | * Invalidate a buffer that is being used within a transaction. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | * |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 563 | * Typically this is because the blocks in the buffer are being freed, so we |
| 564 | * need to prevent it from being written out when we're done. Allowing it |
| 565 | * to be written again might overwrite data in the free blocks if they are |
| 566 | * reallocated to a file. |
| 567 | * |
| 568 | * We prevent the buffer from being written out by marking it stale. We can't |
| 569 | * get rid of the buf log item at this point because the buffer may still be |
| 570 | * pinned by another transaction. If that is the case, then we'll wait until |
| 571 | * the buffer is committed to disk for the last time (we can tell by the ref |
| 572 | * count) and free it in xfs_buf_item_unpin(). Until that happens we will |
| 573 | * keep the buffer locked so that the buffer and buf log item are not reused. |
| 574 | * |
| 575 | * We also set the XFS_BLF_CANCEL flag in the buf log format structure and log |
| 576 | * the buf item. This will be used at recovery time to determine that copies |
| 577 | * of the buffer in the log before this should not be replayed. |
| 578 | * |
| 579 | * We mark the item descriptor and the transaction dirty so that we'll hold |
| 580 | * the buffer until after the commit. |
| 581 | * |
| 582 | * Since we're invalidating the buffer, we also clear the state about which |
| 583 | * parts of the buffer have been logged. We also clear the flag indicating |
| 584 | * that this is an inode buffer since the data in the buffer will no longer |
| 585 | * be valid. |
| 586 | * |
| 587 | * We set the stale bit in the buffer as well since we're getting rid of it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | */ |
| 589 | void |
| 590 | xfs_trans_binval( |
Carlos Maiolino | 70a2065 | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 591 | xfs_trans_t *tp, |
| 592 | xfs_buf_t *bp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 594 | struct xfs_buf_log_item *bip = bp->b_log_item; |
Mark Tinguely | 91e4bac | 2012-12-04 17:18:05 -0600 | [diff] [blame] | 595 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 597 | ASSERT(bp->b_transp == tp); |
Christoph Hellwig | adadbee | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 598 | ASSERT(bip != NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | ASSERT(atomic_read(&bip->bli_refcount) > 0); |
| 600 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 601 | trace_xfs_trans_binval(bip); |
| 602 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | if (bip->bli_flags & XFS_BLI_STALE) { |
| 604 | /* |
| 605 | * If the buffer is already invalidated, then |
| 606 | * just return. |
| 607 | */ |
Dave Chinner | 5cfd28b | 2016-02-10 15:01:11 +1100 | [diff] [blame] | 608 | ASSERT(bp->b_flags & XBF_STALE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | ASSERT(!(bip->bli_flags & (XFS_BLI_LOGGED | XFS_BLI_DIRTY))); |
Mark Tinguely | 0f22f9d | 2012-12-04 17:18:03 -0600 | [diff] [blame] | 610 | ASSERT(!(bip->__bli_format.blf_flags & XFS_BLF_INODE_BUF)); |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 611 | ASSERT(!(bip->__bli_format.blf_flags & XFS_BLFT_MASK)); |
Mark Tinguely | 0f22f9d | 2012-12-04 17:18:03 -0600 | [diff] [blame] | 612 | ASSERT(bip->__bli_format.blf_flags & XFS_BLF_CANCEL); |
Dave Chinner | e6631f8 | 2018-05-09 07:49:37 -0700 | [diff] [blame] | 613 | ASSERT(test_bit(XFS_LI_DIRTY, &bip->bli_item.li_flags)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | ASSERT(tp->t_flags & XFS_TRANS_DIRTY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | return; |
| 616 | } |
| 617 | |
Christoph Hellwig | c867cb6 | 2011-10-10 16:52:46 +0000 | [diff] [blame] | 618 | xfs_buf_stale(bp); |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 619 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | bip->bli_flags |= XFS_BLI_STALE; |
Dave Chinner | ccf7c23 | 2010-05-20 23:19:42 +1000 | [diff] [blame] | 621 | bip->bli_flags &= ~(XFS_BLI_INODE_BUF | XFS_BLI_LOGGED | XFS_BLI_DIRTY); |
Mark Tinguely | 0f22f9d | 2012-12-04 17:18:03 -0600 | [diff] [blame] | 622 | bip->__bli_format.blf_flags &= ~XFS_BLF_INODE_BUF; |
| 623 | bip->__bli_format.blf_flags |= XFS_BLF_CANCEL; |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 624 | bip->__bli_format.blf_flags &= ~XFS_BLFT_MASK; |
Mark Tinguely | 91e4bac | 2012-12-04 17:18:05 -0600 | [diff] [blame] | 625 | for (i = 0; i < bip->bli_format_count; i++) { |
| 626 | memset(bip->bli_formats[i].blf_data_map, 0, |
| 627 | (bip->bli_formats[i].blf_map_size * sizeof(uint))); |
| 628 | } |
Dave Chinner | e6631f8 | 2018-05-09 07:49:37 -0700 | [diff] [blame] | 629 | set_bit(XFS_LI_DIRTY, &bip->bli_item.li_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | tp->t_flags |= XFS_TRANS_DIRTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | } |
| 632 | |
| 633 | /* |
Dave Chinner | ccf7c23 | 2010-05-20 23:19:42 +1000 | [diff] [blame] | 634 | * This call is used to indicate that the buffer contains on-disk inodes which |
| 635 | * must be handled specially during recovery. They require special handling |
| 636 | * because only the di_next_unlinked from the inodes in the buffer should be |
| 637 | * recovered. The rest of the data in the buffer is logged via the inodes |
| 638 | * themselves. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | * |
Dave Chinner | ccf7c23 | 2010-05-20 23:19:42 +1000 | [diff] [blame] | 640 | * All we do is set the XFS_BLI_INODE_BUF flag in the items flags so it can be |
| 641 | * transferred to the buffer's log format structure so that we'll know what to |
| 642 | * do at recovery time. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | void |
| 645 | xfs_trans_inode_buf( |
Carlos Maiolino | 70a2065 | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 646 | xfs_trans_t *tp, |
| 647 | xfs_buf_t *bp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 649 | struct xfs_buf_log_item *bip = bp->b_log_item; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 651 | ASSERT(bp->b_transp == tp); |
Christoph Hellwig | adadbee | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 652 | ASSERT(bip != NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | ASSERT(atomic_read(&bip->bli_refcount) > 0); |
| 654 | |
Dave Chinner | ccf7c23 | 2010-05-20 23:19:42 +1000 | [diff] [blame] | 655 | bip->bli_flags |= XFS_BLI_INODE_BUF; |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 656 | xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DINO_BUF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | } |
| 658 | |
| 659 | /* |
| 660 | * This call is used to indicate that the buffer is going to |
| 661 | * be staled and was an inode buffer. This means it gets |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 662 | * special processing during unpin - where any inodes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | * associated with the buffer should be removed from ail. |
| 664 | * There is also special processing during recovery, |
| 665 | * any replay of the inodes in the buffer needs to be |
| 666 | * prevented as the buffer may have been reused. |
| 667 | */ |
| 668 | void |
| 669 | xfs_trans_stale_inode_buf( |
Carlos Maiolino | 70a2065 | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 670 | xfs_trans_t *tp, |
| 671 | xfs_buf_t *bp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 673 | struct xfs_buf_log_item *bip = bp->b_log_item; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 675 | ASSERT(bp->b_transp == tp); |
Christoph Hellwig | adadbee | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 676 | ASSERT(bip != NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | ASSERT(atomic_read(&bip->bli_refcount) > 0); |
| 678 | |
| 679 | bip->bli_flags |= XFS_BLI_STALE_INODE; |
Christoph Hellwig | ca30b2a | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 680 | bip->bli_item.li_cb = xfs_buf_iodone; |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 681 | xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DINO_BUF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | } |
| 683 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | /* |
| 685 | * Mark the buffer as being one which contains newly allocated |
| 686 | * inodes. We need to make sure that even if this buffer is |
| 687 | * relogged as an 'inode buf' we still recover all of the inode |
| 688 | * images in the face of a crash. This works in coordination with |
| 689 | * xfs_buf_item_committed() to ensure that the buffer remains in the |
| 690 | * AIL at its original location even after it has been relogged. |
| 691 | */ |
| 692 | /* ARGSUSED */ |
| 693 | void |
| 694 | xfs_trans_inode_alloc_buf( |
Carlos Maiolino | 70a2065 | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 695 | xfs_trans_t *tp, |
| 696 | xfs_buf_t *bp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 698 | struct xfs_buf_log_item *bip = bp->b_log_item; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
Christoph Hellwig | bf9d901 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 700 | ASSERT(bp->b_transp == tp); |
Christoph Hellwig | adadbee | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 701 | ASSERT(bip != NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | ASSERT(atomic_read(&bip->bli_refcount) > 0); |
| 703 | |
| 704 | bip->bli_flags |= XFS_BLI_INODE_ALLOC_BUF; |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 705 | xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DINO_BUF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | } |
| 707 | |
Christoph Hellwig | ee1a47a | 2013-04-21 14:53:46 -0500 | [diff] [blame] | 708 | /* |
Brian Foster | 8dc518d | 2017-08-29 10:08:38 -0700 | [diff] [blame] | 709 | * Mark the buffer as ordered for this transaction. This means that the contents |
| 710 | * of the buffer are not recorded in the transaction but it is tracked in the |
| 711 | * AIL as though it was. This allows us to record logical changes in |
| 712 | * transactions rather than the physical changes we make to the buffer without |
| 713 | * changing writeback ordering constraints of metadata buffers. |
Dave Chinner | 5f6bed7 | 2013-06-27 16:04:52 +1000 | [diff] [blame] | 714 | */ |
Brian Foster | a5814bc | 2017-08-29 10:08:40 -0700 | [diff] [blame] | 715 | bool |
Dave Chinner | 5f6bed7 | 2013-06-27 16:04:52 +1000 | [diff] [blame] | 716 | xfs_trans_ordered_buf( |
| 717 | struct xfs_trans *tp, |
| 718 | struct xfs_buf *bp) |
| 719 | { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 720 | struct xfs_buf_log_item *bip = bp->b_log_item; |
Dave Chinner | 5f6bed7 | 2013-06-27 16:04:52 +1000 | [diff] [blame] | 721 | |
| 722 | ASSERT(bp->b_transp == tp); |
| 723 | ASSERT(bip != NULL); |
| 724 | ASSERT(atomic_read(&bip->bli_refcount) > 0); |
Brian Foster | a5814bc | 2017-08-29 10:08:40 -0700 | [diff] [blame] | 725 | |
| 726 | if (xfs_buf_item_dirty_format(bip)) |
| 727 | return false; |
Dave Chinner | 5f6bed7 | 2013-06-27 16:04:52 +1000 | [diff] [blame] | 728 | |
| 729 | bip->bli_flags |= XFS_BLI_ORDERED; |
| 730 | trace_xfs_buf_item_ordered(bip); |
Brian Foster | 8dc518d | 2017-08-29 10:08:38 -0700 | [diff] [blame] | 731 | |
| 732 | /* |
| 733 | * We don't log a dirty range of an ordered buffer but it still needs |
| 734 | * to be marked dirty and that it has been logged. |
| 735 | */ |
| 736 | xfs_trans_dirty_buf(tp, bp); |
Brian Foster | a5814bc | 2017-08-29 10:08:40 -0700 | [diff] [blame] | 737 | return true; |
Dave Chinner | 5f6bed7 | 2013-06-27 16:04:52 +1000 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | /* |
Christoph Hellwig | ee1a47a | 2013-04-21 14:53:46 -0500 | [diff] [blame] | 741 | * Set the type of the buffer for log recovery so that it can correctly identify |
| 742 | * and hence attach the correct buffer ops to the buffer after replay. |
| 743 | */ |
| 744 | void |
| 745 | xfs_trans_buf_set_type( |
| 746 | struct xfs_trans *tp, |
| 747 | struct xfs_buf *bp, |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 748 | enum xfs_blft type) |
Christoph Hellwig | ee1a47a | 2013-04-21 14:53:46 -0500 | [diff] [blame] | 749 | { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 750 | struct xfs_buf_log_item *bip = bp->b_log_item; |
Christoph Hellwig | ee1a47a | 2013-04-21 14:53:46 -0500 | [diff] [blame] | 751 | |
Dave Chinner | d75afeb | 2013-04-03 16:11:29 +1100 | [diff] [blame] | 752 | if (!tp) |
| 753 | return; |
| 754 | |
Christoph Hellwig | ee1a47a | 2013-04-21 14:53:46 -0500 | [diff] [blame] | 755 | ASSERT(bp->b_transp == tp); |
| 756 | ASSERT(bip != NULL); |
| 757 | ASSERT(atomic_read(&bip->bli_refcount) > 0); |
Christoph Hellwig | ee1a47a | 2013-04-21 14:53:46 -0500 | [diff] [blame] | 758 | |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 759 | xfs_blft_to_flags(&bip->__bli_format, type); |
Christoph Hellwig | ee1a47a | 2013-04-21 14:53:46 -0500 | [diff] [blame] | 760 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | |
Dave Chinner | d75afeb | 2013-04-03 16:11:29 +1100 | [diff] [blame] | 762 | void |
| 763 | xfs_trans_buf_copy_type( |
| 764 | struct xfs_buf *dst_bp, |
| 765 | struct xfs_buf *src_bp) |
| 766 | { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 767 | struct xfs_buf_log_item *sbip = src_bp->b_log_item; |
| 768 | struct xfs_buf_log_item *dbip = dst_bp->b_log_item; |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 769 | enum xfs_blft type; |
Dave Chinner | d75afeb | 2013-04-03 16:11:29 +1100 | [diff] [blame] | 770 | |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 771 | type = xfs_blft_from_flags(&sbip->__bli_format); |
| 772 | xfs_blft_to_flags(&dbip->__bli_format, type); |
Dave Chinner | d75afeb | 2013-04-03 16:11:29 +1100 | [diff] [blame] | 773 | } |
| 774 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | /* |
| 776 | * Similar to xfs_trans_inode_buf(), this marks the buffer as a cluster of |
| 777 | * dquots. However, unlike in inode buffer recovery, dquot buffers get |
| 778 | * recovered in their entirety. (Hence, no XFS_BLI_DQUOT_ALLOC_BUF flag). |
| 779 | * The only thing that makes dquot buffers different from regular |
| 780 | * buffers is that we must not replay dquot bufs when recovering |
| 781 | * if a _corresponding_ quotaoff has happened. We also have to distinguish |
| 782 | * between usr dquot bufs and grp dquot bufs, because usr and grp quotas |
| 783 | * can be turned off independently. |
| 784 | */ |
| 785 | /* ARGSUSED */ |
| 786 | void |
| 787 | xfs_trans_dquot_buf( |
Carlos Maiolino | 70a2065 | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 788 | xfs_trans_t *tp, |
| 789 | xfs_buf_t *bp, |
| 790 | uint type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 792 | struct xfs_buf_log_item *bip = bp->b_log_item; |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 793 | |
Dave Chinner | c115541 | 2010-05-07 11:05:19 +1000 | [diff] [blame] | 794 | ASSERT(type == XFS_BLF_UDQUOT_BUF || |
| 795 | type == XFS_BLF_PDQUOT_BUF || |
| 796 | type == XFS_BLF_GDQUOT_BUF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 798 | bip->__bli_format.blf_flags |= type; |
| 799 | |
| 800 | switch (type) { |
| 801 | case XFS_BLF_UDQUOT_BUF: |
| 802 | type = XFS_BLFT_UDQUOT_BUF; |
| 803 | break; |
| 804 | case XFS_BLF_PDQUOT_BUF: |
| 805 | type = XFS_BLFT_PDQUOT_BUF; |
| 806 | break; |
| 807 | case XFS_BLF_GDQUOT_BUF: |
| 808 | type = XFS_BLFT_GDQUOT_BUF; |
| 809 | break; |
| 810 | default: |
| 811 | type = XFS_BLFT_UNKNOWN_BUF; |
| 812 | break; |
| 813 | } |
| 814 | |
Christoph Hellwig | ee1a47a | 2013-04-21 14:53:46 -0500 | [diff] [blame] | 815 | xfs_trans_buf_set_type(tp, bp, type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | } |