Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 19 | #include "xfs_fs.h" |
Christoph Hellwig | 4fb6e8a | 2014-11-28 14:25:04 +1100 | [diff] [blame] | 20 | #include "xfs_format.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 21 | #include "xfs_log_format.h" |
| 22 | #include "xfs_trans_resv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "xfs_mount.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 24 | #include "xfs_trans.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include "xfs_trans_priv.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 26 | #include "xfs_buf_item.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include "xfs_extfree_item.h" |
Christoph Hellwig | 1234351 | 2013-12-13 11:00:43 +1100 | [diff] [blame] | 28 | #include "xfs_log.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | |
| 31 | kmem_zone_t *xfs_efi_zone; |
| 32 | kmem_zone_t *xfs_efd_zone; |
| 33 | |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 34 | static inline struct xfs_efi_log_item *EFI_ITEM(struct xfs_log_item *lip) |
| 35 | { |
| 36 | return container_of(lip, struct xfs_efi_log_item, efi_item); |
| 37 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Christoph Hellwig | 7d795ca | 2005-06-21 15:41:19 +1000 | [diff] [blame] | 39 | void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 40 | xfs_efi_item_free( |
| 41 | struct xfs_efi_log_item *efip) |
Christoph Hellwig | 7d795ca | 2005-06-21 15:41:19 +1000 | [diff] [blame] | 42 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 43 | if (efip->efi_format.efi_nextents > XFS_EFI_MAX_FAST_EXTENTS) |
Denys Vlasenko | f0e2d93 | 2008-05-19 16:31:57 +1000 | [diff] [blame] | 44 | kmem_free(efip); |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 45 | else |
Christoph Hellwig | 7d795ca | 2005-06-21 15:41:19 +1000 | [diff] [blame] | 46 | kmem_zone_free(xfs_efi_zone, efip); |
Christoph Hellwig | 7d795ca | 2005-06-21 15:41:19 +1000 | [diff] [blame] | 47 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | /* |
Dave Chinner | b199c8a | 2010-12-20 11:59:49 +1100 | [diff] [blame] | 50 | * Freeing the efi requires that we remove it from the AIL if it has already |
| 51 | * been placed there. However, the EFI may not yet have been placed in the AIL |
| 52 | * when called by xfs_efi_release() from EFD processing due to the ordering of |
Dave Chinner | 666d644 | 2013-04-03 14:09:21 +1100 | [diff] [blame] | 53 | * committed vs unpin operations in bulk insert operations. Hence the reference |
| 54 | * count to ensure only the last caller frees the EFI. |
Dave Chinner | b199c8a | 2010-12-20 11:59:49 +1100 | [diff] [blame] | 55 | */ |
| 56 | STATIC void |
| 57 | __xfs_efi_release( |
| 58 | struct xfs_efi_log_item *efip) |
| 59 | { |
| 60 | struct xfs_ail *ailp = efip->efi_item.li_ailp; |
| 61 | |
Dave Chinner | 666d644 | 2013-04-03 14:09:21 +1100 | [diff] [blame] | 62 | if (atomic_dec_and_test(&efip->efi_refcount)) { |
Dave Chinner | b199c8a | 2010-12-20 11:59:49 +1100 | [diff] [blame] | 63 | spin_lock(&ailp->xa_lock); |
Brian Foster | 8d99fe9 | 2015-08-19 09:51:16 +1000 | [diff] [blame] | 64 | /* |
| 65 | * We don't know whether the EFI made it to the AIL. Remove it |
| 66 | * if so. Note that xfs_trans_ail_delete() drops the AIL lock. |
| 67 | */ |
| 68 | if (efip->efi_item.li_flags & XFS_LI_IN_AIL) |
| 69 | xfs_trans_ail_delete(ailp, &efip->efi_item, |
| 70 | SHUTDOWN_LOG_IO_ERROR); |
| 71 | else |
| 72 | spin_unlock(&ailp->xa_lock); |
Dave Chinner | b199c8a | 2010-12-20 11:59:49 +1100 | [diff] [blame] | 73 | xfs_efi_item_free(efip); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | * This returns the number of iovecs needed to log the given efi item. |
| 79 | * We only need 1 iovec for an efi item. It just logs the efi_log_format |
| 80 | * structure. |
| 81 | */ |
Dave Chinner | 166d136 | 2013-08-12 20:50:04 +1000 | [diff] [blame] | 82 | static inline int |
| 83 | xfs_efi_item_sizeof( |
| 84 | struct xfs_efi_log_item *efip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | { |
Dave Chinner | 166d136 | 2013-08-12 20:50:04 +1000 | [diff] [blame] | 86 | return sizeof(struct xfs_efi_log_format) + |
| 87 | (efip->efi_format.efi_nextents - 1) * sizeof(xfs_extent_t); |
| 88 | } |
| 89 | |
| 90 | STATIC void |
| 91 | xfs_efi_item_size( |
| 92 | struct xfs_log_item *lip, |
| 93 | int *nvecs, |
| 94 | int *nbytes) |
| 95 | { |
| 96 | *nvecs += 1; |
| 97 | *nbytes += xfs_efi_item_sizeof(EFI_ITEM(lip)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | /* |
| 101 | * This is called to fill in the vector of log iovecs for the |
| 102 | * given efi log item. We use only 1 iovec, and we point that |
| 103 | * at the efi_log_format structure embedded in the efi item. |
| 104 | * It is at this point that we assert that all of the extent |
| 105 | * slots in the efi item have been filled. |
| 106 | */ |
| 107 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 108 | xfs_efi_item_format( |
| 109 | struct xfs_log_item *lip, |
Christoph Hellwig | bde7cff | 2013-12-13 11:34:02 +1100 | [diff] [blame] | 110 | struct xfs_log_vec *lv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 112 | struct xfs_efi_log_item *efip = EFI_ITEM(lip); |
Christoph Hellwig | bde7cff | 2013-12-13 11:34:02 +1100 | [diff] [blame] | 113 | struct xfs_log_iovec *vecp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Dave Chinner | b199c8a | 2010-12-20 11:59:49 +1100 | [diff] [blame] | 115 | ASSERT(atomic_read(&efip->efi_next_extent) == |
| 116 | efip->efi_format.efi_nextents); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
| 118 | efip->efi_format.efi_type = XFS_LI_EFI; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | efip->efi_format.efi_size = 1; |
| 120 | |
Christoph Hellwig | bde7cff | 2013-12-13 11:34:02 +1100 | [diff] [blame] | 121 | xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_EFI_FORMAT, |
Christoph Hellwig | 1234351 | 2013-12-13 11:00:43 +1100 | [diff] [blame] | 122 | &efip->efi_format, |
| 123 | xfs_efi_item_sizeof(efip)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | |
| 127 | /* |
| 128 | * Pinning has no meaning for an efi item, so just return. |
| 129 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 131 | xfs_efi_item_pin( |
| 132 | struct xfs_log_item *lip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | } |
| 135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | /* |
Brian Foster | 8d99fe9 | 2015-08-19 09:51:16 +1000 | [diff] [blame] | 137 | * The unpin operation is the last place an EFI is manipulated in the log. It is |
| 138 | * either inserted in the AIL or aborted in the event of a log I/O error. In |
| 139 | * either case, the EFI transaction has been successfully committed to make it |
| 140 | * this far. Therefore, we expect whoever committed the EFI to either construct |
| 141 | * and commit the EFD or drop the EFD's reference in the event of error. Simply |
| 142 | * drop the log's EFI reference now that the log is done with it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 145 | xfs_efi_item_unpin( |
| 146 | struct xfs_log_item *lip, |
| 147 | int remove) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 149 | struct xfs_efi_log_item *efip = EFI_ITEM(lip); |
Brian Foster | 5e4b538 | 2015-08-19 09:50:12 +1000 | [diff] [blame] | 150 | xfs_efi_release(efip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | /* |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 154 | * Efi items have no locking or pushing. However, since EFIs are pulled from |
| 155 | * the AIL when their corresponding EFDs are committed to disk, their situation |
| 156 | * is very similar to being pinned. Return XFS_ITEM_PINNED so that the caller |
| 157 | * will eventually flush the log. This should help in getting the EFI out of |
| 158 | * the AIL. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | STATIC uint |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 161 | xfs_efi_item_push( |
| 162 | struct xfs_log_item *lip, |
| 163 | struct list_head *buffer_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | { |
| 165 | return XFS_ITEM_PINNED; |
| 166 | } |
| 167 | |
Brian Foster | 8d99fe9 | 2015-08-19 09:51:16 +1000 | [diff] [blame] | 168 | /* |
| 169 | * The EFI has been either committed or aborted if the transaction has been |
| 170 | * cancelled. If the transaction was cancelled, an EFD isn't going to be |
| 171 | * constructed and thus we free the EFI here directly. |
| 172 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 174 | xfs_efi_item_unlock( |
| 175 | struct xfs_log_item *lip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 177 | if (lip->li_flags & XFS_LI_ABORTED) |
| 178 | xfs_efi_item_free(EFI_ITEM(lip)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | /* |
Dave Chinner | b199c8a | 2010-12-20 11:59:49 +1100 | [diff] [blame] | 182 | * The EFI is logged only once and cannot be moved in the log, so simply return |
Dave Chinner | 666d644 | 2013-04-03 14:09:21 +1100 | [diff] [blame] | 183 | * the lsn at which it's been logged. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | STATIC xfs_lsn_t |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 186 | xfs_efi_item_committed( |
| 187 | struct xfs_log_item *lip, |
| 188 | xfs_lsn_t lsn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
| 190 | return lsn; |
| 191 | } |
| 192 | |
| 193 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | * The EFI dependency tracking op doesn't do squat. It can't because |
| 195 | * it doesn't know where the free extent is coming from. The dependency |
| 196 | * tracking has to be handled by the "enclosing" metadata object. For |
| 197 | * example, for inodes, the inode is locked throughout the extent freeing |
| 198 | * so the dependency should be recorded there. |
| 199 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 201 | xfs_efi_item_committing( |
| 202 | struct xfs_log_item *lip, |
| 203 | xfs_lsn_t lsn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | /* |
| 208 | * This is the ops vector shared by all efi log items. |
| 209 | */ |
Christoph Hellwig | 272e42b | 2011-10-28 09:54:24 +0000 | [diff] [blame] | 210 | static const struct xfs_item_ops xfs_efi_item_ops = { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 211 | .iop_size = xfs_efi_item_size, |
| 212 | .iop_format = xfs_efi_item_format, |
| 213 | .iop_pin = xfs_efi_item_pin, |
| 214 | .iop_unpin = xfs_efi_item_unpin, |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 215 | .iop_unlock = xfs_efi_item_unlock, |
| 216 | .iop_committed = xfs_efi_item_committed, |
| 217 | .iop_push = xfs_efi_item_push, |
| 218 | .iop_committing = xfs_efi_item_committing |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | }; |
| 220 | |
| 221 | |
| 222 | /* |
| 223 | * Allocate and initialize an efi item with the given number of extents. |
| 224 | */ |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 225 | struct xfs_efi_log_item * |
| 226 | xfs_efi_init( |
| 227 | struct xfs_mount *mp, |
| 228 | uint nextents) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
| 230 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 231 | struct xfs_efi_log_item *efip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | uint size; |
| 233 | |
| 234 | ASSERT(nextents > 0); |
| 235 | if (nextents > XFS_EFI_MAX_FAST_EXTENTS) { |
| 236 | size = (uint)(sizeof(xfs_efi_log_item_t) + |
| 237 | ((nextents - 1) * sizeof(xfs_extent_t))); |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 238 | efip = kmem_zalloc(size, KM_SLEEP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } else { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 240 | efip = kmem_zone_zalloc(xfs_efi_zone, KM_SLEEP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | } |
| 242 | |
Dave Chinner | 43f5efc | 2010-03-23 10:10:00 +1100 | [diff] [blame] | 243 | xfs_log_item_init(mp, &efip->efi_item, XFS_LI_EFI, &xfs_efi_item_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | efip->efi_format.efi_nextents = nextents; |
Christoph Hellwig | db9d67d | 2015-06-22 09:43:32 +1000 | [diff] [blame] | 245 | efip->efi_format.efi_id = (uintptr_t)(void *)efip; |
Dave Chinner | b199c8a | 2010-12-20 11:59:49 +1100 | [diff] [blame] | 246 | atomic_set(&efip->efi_next_extent, 0); |
Dave Chinner | 666d644 | 2013-04-03 14:09:21 +1100 | [diff] [blame] | 247 | atomic_set(&efip->efi_refcount, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 249 | return efip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | /* |
Tim Shimmin | 6d192a9 | 2006-06-09 14:55:38 +1000 | [diff] [blame] | 253 | * Copy an EFI format buffer from the given buf, and into the destination |
| 254 | * EFI format structure. |
| 255 | * The given buffer can be in 32 bit or 64 bit form (which has different padding), |
| 256 | * one of which will be the native format for this kernel. |
| 257 | * It will handle the conversion of formats if necessary. |
| 258 | */ |
| 259 | int |
| 260 | xfs_efi_copy_format(xfs_log_iovec_t *buf, xfs_efi_log_format_t *dst_efi_fmt) |
| 261 | { |
Christoph Hellwig | 4e0d5f9 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 262 | xfs_efi_log_format_t *src_efi_fmt = buf->i_addr; |
Tim Shimmin | 6d192a9 | 2006-06-09 14:55:38 +1000 | [diff] [blame] | 263 | uint i; |
| 264 | uint len = sizeof(xfs_efi_log_format_t) + |
| 265 | (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_t); |
| 266 | uint len32 = sizeof(xfs_efi_log_format_32_t) + |
| 267 | (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_32_t); |
| 268 | uint len64 = sizeof(xfs_efi_log_format_64_t) + |
| 269 | (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_64_t); |
| 270 | |
| 271 | if (buf->i_len == len) { |
| 272 | memcpy((char *)dst_efi_fmt, (char*)src_efi_fmt, len); |
| 273 | return 0; |
| 274 | } else if (buf->i_len == len32) { |
Christoph Hellwig | 4e0d5f9 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 275 | xfs_efi_log_format_32_t *src_efi_fmt_32 = buf->i_addr; |
Tim Shimmin | 6d192a9 | 2006-06-09 14:55:38 +1000 | [diff] [blame] | 276 | |
| 277 | dst_efi_fmt->efi_type = src_efi_fmt_32->efi_type; |
| 278 | dst_efi_fmt->efi_size = src_efi_fmt_32->efi_size; |
| 279 | dst_efi_fmt->efi_nextents = src_efi_fmt_32->efi_nextents; |
| 280 | dst_efi_fmt->efi_id = src_efi_fmt_32->efi_id; |
| 281 | for (i = 0; i < dst_efi_fmt->efi_nextents; i++) { |
| 282 | dst_efi_fmt->efi_extents[i].ext_start = |
| 283 | src_efi_fmt_32->efi_extents[i].ext_start; |
| 284 | dst_efi_fmt->efi_extents[i].ext_len = |
| 285 | src_efi_fmt_32->efi_extents[i].ext_len; |
| 286 | } |
| 287 | return 0; |
| 288 | } else if (buf->i_len == len64) { |
Christoph Hellwig | 4e0d5f9 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 289 | xfs_efi_log_format_64_t *src_efi_fmt_64 = buf->i_addr; |
Tim Shimmin | 6d192a9 | 2006-06-09 14:55:38 +1000 | [diff] [blame] | 290 | |
| 291 | dst_efi_fmt->efi_type = src_efi_fmt_64->efi_type; |
| 292 | dst_efi_fmt->efi_size = src_efi_fmt_64->efi_size; |
| 293 | dst_efi_fmt->efi_nextents = src_efi_fmt_64->efi_nextents; |
| 294 | dst_efi_fmt->efi_id = src_efi_fmt_64->efi_id; |
| 295 | for (i = 0; i < dst_efi_fmt->efi_nextents; i++) { |
| 296 | dst_efi_fmt->efi_extents[i].ext_start = |
| 297 | src_efi_fmt_64->efi_extents[i].ext_start; |
| 298 | dst_efi_fmt->efi_extents[i].ext_len = |
| 299 | src_efi_fmt_64->efi_extents[i].ext_len; |
| 300 | } |
| 301 | return 0; |
| 302 | } |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 303 | return -EFSCORRUPTED; |
Tim Shimmin | 6d192a9 | 2006-06-09 14:55:38 +1000 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | /* |
Dave Chinner | b199c8a | 2010-12-20 11:59:49 +1100 | [diff] [blame] | 307 | * This is called by the efd item code below to release references to the given |
| 308 | * efi item. Each efd calls this with the number of extents that it has |
| 309 | * logged, and when the sum of these reaches the total number of extents logged |
| 310 | * by this efi item we can free the efi item. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | */ |
| 312 | void |
Brian Foster | 5e4b538 | 2015-08-19 09:50:12 +1000 | [diff] [blame] | 313 | xfs_efi_release( |
| 314 | struct xfs_efi_log_item *efip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | { |
Brian Foster | 5e4b538 | 2015-08-19 09:50:12 +1000 | [diff] [blame] | 316 | /* recovery needs us to drop the EFI reference, too */ |
| 317 | if (test_bit(XFS_EFI_RECOVERED, &efip->efi_flags)) |
Dave Chinner | 509e708 | 2013-05-20 09:51:10 +1000 | [diff] [blame] | 318 | __xfs_efi_release(efip); |
Brian Foster | 5e4b538 | 2015-08-19 09:50:12 +1000 | [diff] [blame] | 319 | |
| 320 | __xfs_efi_release(efip); |
| 321 | /* efip may now have been freed, do not reference it again. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 324 | static inline struct xfs_efd_log_item *EFD_ITEM(struct xfs_log_item *lip) |
Christoph Hellwig | 7d795ca | 2005-06-21 15:41:19 +1000 | [diff] [blame] | 325 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 326 | return container_of(lip, struct xfs_efd_log_item, efd_item); |
| 327 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 329 | STATIC void |
| 330 | xfs_efd_item_free(struct xfs_efd_log_item *efdp) |
| 331 | { |
| 332 | if (efdp->efd_format.efd_nextents > XFS_EFD_MAX_FAST_EXTENTS) |
Denys Vlasenko | f0e2d93 | 2008-05-19 16:31:57 +1000 | [diff] [blame] | 333 | kmem_free(efdp); |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 334 | else |
Christoph Hellwig | 7d795ca | 2005-06-21 15:41:19 +1000 | [diff] [blame] | 335 | kmem_zone_free(xfs_efd_zone, efdp); |
Christoph Hellwig | 7d795ca | 2005-06-21 15:41:19 +1000 | [diff] [blame] | 336 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
| 338 | /* |
| 339 | * This returns the number of iovecs needed to log the given efd item. |
| 340 | * We only need 1 iovec for an efd item. It just logs the efd_log_format |
| 341 | * structure. |
| 342 | */ |
Dave Chinner | 166d136 | 2013-08-12 20:50:04 +1000 | [diff] [blame] | 343 | static inline int |
| 344 | xfs_efd_item_sizeof( |
| 345 | struct xfs_efd_log_item *efdp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | { |
Dave Chinner | 166d136 | 2013-08-12 20:50:04 +1000 | [diff] [blame] | 347 | return sizeof(xfs_efd_log_format_t) + |
| 348 | (efdp->efd_format.efd_nextents - 1) * sizeof(xfs_extent_t); |
| 349 | } |
| 350 | |
| 351 | STATIC void |
| 352 | xfs_efd_item_size( |
| 353 | struct xfs_log_item *lip, |
| 354 | int *nvecs, |
| 355 | int *nbytes) |
| 356 | { |
| 357 | *nvecs += 1; |
| 358 | *nbytes += xfs_efd_item_sizeof(EFD_ITEM(lip)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | /* |
| 362 | * This is called to fill in the vector of log iovecs for the |
| 363 | * given efd log item. We use only 1 iovec, and we point that |
| 364 | * at the efd_log_format structure embedded in the efd item. |
| 365 | * It is at this point that we assert that all of the extent |
| 366 | * slots in the efd item have been filled. |
| 367 | */ |
| 368 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 369 | xfs_efd_item_format( |
| 370 | struct xfs_log_item *lip, |
Christoph Hellwig | bde7cff | 2013-12-13 11:34:02 +1100 | [diff] [blame] | 371 | struct xfs_log_vec *lv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 373 | struct xfs_efd_log_item *efdp = EFD_ITEM(lip); |
Christoph Hellwig | bde7cff | 2013-12-13 11:34:02 +1100 | [diff] [blame] | 374 | struct xfs_log_iovec *vecp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
| 376 | ASSERT(efdp->efd_next_extent == efdp->efd_format.efd_nextents); |
| 377 | |
| 378 | efdp->efd_format.efd_type = XFS_LI_EFD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | efdp->efd_format.efd_size = 1; |
| 380 | |
Christoph Hellwig | bde7cff | 2013-12-13 11:34:02 +1100 | [diff] [blame] | 381 | xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_EFD_FORMAT, |
Christoph Hellwig | 1234351 | 2013-12-13 11:00:43 +1100 | [diff] [blame] | 382 | &efdp->efd_format, |
| 383 | xfs_efd_item_sizeof(efdp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | } |
| 385 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | /* |
| 387 | * Pinning has no meaning for an efd item, so just return. |
| 388 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 390 | xfs_efd_item_pin( |
| 391 | struct xfs_log_item *lip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | } |
| 394 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | /* |
| 396 | * Since pinning has no meaning for an efd item, unpinning does |
| 397 | * not either. |
| 398 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 400 | xfs_efd_item_unpin( |
| 401 | struct xfs_log_item *lip, |
| 402 | int remove) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | /* |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 407 | * There isn't much you can do to push on an efd item. It is simply stuck |
| 408 | * waiting for the log to be flushed to disk. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | STATIC uint |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 411 | xfs_efd_item_push( |
| 412 | struct xfs_log_item *lip, |
| 413 | struct list_head *buffer_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | { |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 415 | return XFS_ITEM_PINNED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | } |
| 417 | |
Brian Foster | 8d99fe9 | 2015-08-19 09:51:16 +1000 | [diff] [blame] | 418 | /* |
| 419 | * The EFD is either committed or aborted if the transaction is cancelled. If |
| 420 | * the transaction is cancelled, drop our reference to the EFI and free the EFD. |
| 421 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 423 | xfs_efd_item_unlock( |
| 424 | struct xfs_log_item *lip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | { |
Brian Foster | 8d99fe9 | 2015-08-19 09:51:16 +1000 | [diff] [blame] | 426 | struct xfs_efd_log_item *efdp = EFD_ITEM(lip); |
| 427 | |
| 428 | if (lip->li_flags & XFS_LI_ABORTED) { |
| 429 | xfs_efi_release(efdp->efd_efip); |
| 430 | xfs_efd_item_free(efdp); |
| 431 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | /* |
Brian Foster | 8d99fe9 | 2015-08-19 09:51:16 +1000 | [diff] [blame] | 435 | * When the efd item is committed to disk, all we need to do is delete our |
| 436 | * reference to our partner efi item and then free ourselves. Since we're |
| 437 | * freeing ourselves we must return -1 to keep the transaction code from further |
| 438 | * referencing this item. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | STATIC xfs_lsn_t |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 441 | xfs_efd_item_committed( |
| 442 | struct xfs_log_item *lip, |
| 443 | xfs_lsn_t lsn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 445 | struct xfs_efd_log_item *efdp = EFD_ITEM(lip); |
| 446 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | /* |
Brian Foster | 8d99fe9 | 2015-08-19 09:51:16 +1000 | [diff] [blame] | 448 | * Drop the EFI reference regardless of whether the EFD has been |
| 449 | * aborted. Once the EFD transaction is constructed, it is the sole |
| 450 | * responsibility of the EFD to release the EFI (even if the EFI is |
| 451 | * aborted due to log I/O error). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | */ |
Brian Foster | 8d99fe9 | 2015-08-19 09:51:16 +1000 | [diff] [blame] | 453 | xfs_efi_release(efdp->efd_efip); |
Christoph Hellwig | 7d795ca | 2005-06-21 15:41:19 +1000 | [diff] [blame] | 454 | xfs_efd_item_free(efdp); |
Brian Foster | 8d99fe9 | 2015-08-19 09:51:16 +1000 | [diff] [blame] | 455 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | return (xfs_lsn_t)-1; |
| 457 | } |
| 458 | |
| 459 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | * The EFD dependency tracking op doesn't do squat. It can't because |
| 461 | * it doesn't know where the free extent is coming from. The dependency |
| 462 | * tracking has to be handled by the "enclosing" metadata object. For |
| 463 | * example, for inodes, the inode is locked throughout the extent freeing |
| 464 | * so the dependency should be recorded there. |
| 465 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 467 | xfs_efd_item_committing( |
| 468 | struct xfs_log_item *lip, |
| 469 | xfs_lsn_t lsn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | } |
| 472 | |
| 473 | /* |
| 474 | * This is the ops vector shared by all efd log items. |
| 475 | */ |
Christoph Hellwig | 272e42b | 2011-10-28 09:54:24 +0000 | [diff] [blame] | 476 | static const struct xfs_item_ops xfs_efd_item_ops = { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 477 | .iop_size = xfs_efd_item_size, |
| 478 | .iop_format = xfs_efd_item_format, |
| 479 | .iop_pin = xfs_efd_item_pin, |
| 480 | .iop_unpin = xfs_efd_item_unpin, |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 481 | .iop_unlock = xfs_efd_item_unlock, |
| 482 | .iop_committed = xfs_efd_item_committed, |
| 483 | .iop_push = xfs_efd_item_push, |
| 484 | .iop_committing = xfs_efd_item_committing |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | }; |
| 486 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | /* |
| 488 | * Allocate and initialize an efd item with the given number of extents. |
| 489 | */ |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 490 | struct xfs_efd_log_item * |
| 491 | xfs_efd_init( |
| 492 | struct xfs_mount *mp, |
| 493 | struct xfs_efi_log_item *efip, |
| 494 | uint nextents) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 497 | struct xfs_efd_log_item *efdp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | uint size; |
| 499 | |
| 500 | ASSERT(nextents > 0); |
| 501 | if (nextents > XFS_EFD_MAX_FAST_EXTENTS) { |
| 502 | size = (uint)(sizeof(xfs_efd_log_item_t) + |
| 503 | ((nextents - 1) * sizeof(xfs_extent_t))); |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 504 | efdp = kmem_zalloc(size, KM_SLEEP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | } else { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 506 | efdp = kmem_zone_zalloc(xfs_efd_zone, KM_SLEEP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | } |
| 508 | |
Dave Chinner | 43f5efc | 2010-03-23 10:10:00 +1100 | [diff] [blame] | 509 | xfs_log_item_init(mp, &efdp->efd_item, XFS_LI_EFD, &xfs_efd_item_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | efdp->efd_efip = efip; |
| 511 | efdp->efd_format.efd_nextents = nextents; |
| 512 | efdp->efd_format.efd_efi_id = efip->efi_format.efi_id; |
| 513 | |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 514 | return efdp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | } |