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