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