Darrick J. Wong | baf4bcac | 2016-10-03 09:11:20 -0700 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (C) 2016 Oracle. All Rights Reserved. |
| 3 | * |
| 4 | * Author: Darrick J. Wong <darrick.wong@oracle.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version 2 |
| 9 | * of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it would be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write the Free Software Foundation, |
| 18 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. |
| 19 | */ |
| 20 | #include "xfs.h" |
| 21 | #include "xfs_fs.h" |
| 22 | #include "xfs_format.h" |
| 23 | #include "xfs_log_format.h" |
| 24 | #include "xfs_trans_resv.h" |
| 25 | #include "xfs_mount.h" |
| 26 | #include "xfs_trans.h" |
| 27 | #include "xfs_trans_priv.h" |
| 28 | #include "xfs_buf_item.h" |
| 29 | #include "xfs_refcount_item.h" |
| 30 | #include "xfs_log.h" |
| 31 | |
| 32 | |
| 33 | kmem_zone_t *xfs_cui_zone; |
| 34 | kmem_zone_t *xfs_cud_zone; |
| 35 | |
| 36 | static inline struct xfs_cui_log_item *CUI_ITEM(struct xfs_log_item *lip) |
| 37 | { |
| 38 | return container_of(lip, struct xfs_cui_log_item, cui_item); |
| 39 | } |
| 40 | |
| 41 | void |
| 42 | xfs_cui_item_free( |
| 43 | struct xfs_cui_log_item *cuip) |
| 44 | { |
| 45 | if (cuip->cui_format.cui_nextents > XFS_CUI_MAX_FAST_EXTENTS) |
| 46 | kmem_free(cuip); |
| 47 | else |
| 48 | kmem_zone_free(xfs_cui_zone, cuip); |
| 49 | } |
| 50 | |
| 51 | STATIC void |
| 52 | xfs_cui_item_size( |
| 53 | struct xfs_log_item *lip, |
| 54 | int *nvecs, |
| 55 | int *nbytes) |
| 56 | { |
| 57 | struct xfs_cui_log_item *cuip = CUI_ITEM(lip); |
| 58 | |
| 59 | *nvecs += 1; |
| 60 | *nbytes += xfs_cui_log_format_sizeof(cuip->cui_format.cui_nextents); |
| 61 | } |
| 62 | |
| 63 | /* |
| 64 | * This is called to fill in the vector of log iovecs for the |
| 65 | * given cui log item. We use only 1 iovec, and we point that |
| 66 | * at the cui_log_format structure embedded in the cui item. |
| 67 | * It is at this point that we assert that all of the extent |
| 68 | * slots in the cui item have been filled. |
| 69 | */ |
| 70 | STATIC void |
| 71 | xfs_cui_item_format( |
| 72 | struct xfs_log_item *lip, |
| 73 | struct xfs_log_vec *lv) |
| 74 | { |
| 75 | struct xfs_cui_log_item *cuip = CUI_ITEM(lip); |
| 76 | struct xfs_log_iovec *vecp = NULL; |
| 77 | |
| 78 | ASSERT(atomic_read(&cuip->cui_next_extent) == |
| 79 | cuip->cui_format.cui_nextents); |
| 80 | |
| 81 | cuip->cui_format.cui_type = XFS_LI_CUI; |
| 82 | cuip->cui_format.cui_size = 1; |
| 83 | |
| 84 | xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_CUI_FORMAT, &cuip->cui_format, |
| 85 | xfs_cui_log_format_sizeof(cuip->cui_format.cui_nextents)); |
| 86 | } |
| 87 | |
| 88 | /* |
| 89 | * Pinning has no meaning for an cui item, so just return. |
| 90 | */ |
| 91 | STATIC void |
| 92 | xfs_cui_item_pin( |
| 93 | struct xfs_log_item *lip) |
| 94 | { |
| 95 | } |
| 96 | |
| 97 | /* |
| 98 | * The unpin operation is the last place an CUI is manipulated in the log. It is |
| 99 | * either inserted in the AIL or aborted in the event of a log I/O error. In |
| 100 | * either case, the CUI transaction has been successfully committed to make it |
| 101 | * this far. Therefore, we expect whoever committed the CUI to either construct |
| 102 | * and commit the CUD or drop the CUD's reference in the event of error. Simply |
| 103 | * drop the log's CUI reference now that the log is done with it. |
| 104 | */ |
| 105 | STATIC void |
| 106 | xfs_cui_item_unpin( |
| 107 | struct xfs_log_item *lip, |
| 108 | int remove) |
| 109 | { |
| 110 | struct xfs_cui_log_item *cuip = CUI_ITEM(lip); |
| 111 | |
| 112 | xfs_cui_release(cuip); |
| 113 | } |
| 114 | |
| 115 | /* |
| 116 | * CUI items have no locking or pushing. However, since CUIs are pulled from |
| 117 | * the AIL when their corresponding CUDs are committed to disk, their situation |
| 118 | * is very similar to being pinned. Return XFS_ITEM_PINNED so that the caller |
| 119 | * will eventually flush the log. This should help in getting the CUI out of |
| 120 | * the AIL. |
| 121 | */ |
| 122 | STATIC uint |
| 123 | xfs_cui_item_push( |
| 124 | struct xfs_log_item *lip, |
| 125 | struct list_head *buffer_list) |
| 126 | { |
| 127 | return XFS_ITEM_PINNED; |
| 128 | } |
| 129 | |
| 130 | /* |
| 131 | * The CUI has been either committed or aborted if the transaction has been |
| 132 | * cancelled. If the transaction was cancelled, an CUD isn't going to be |
| 133 | * constructed and thus we free the CUI here directly. |
| 134 | */ |
| 135 | STATIC void |
| 136 | xfs_cui_item_unlock( |
| 137 | struct xfs_log_item *lip) |
| 138 | { |
| 139 | if (lip->li_flags & XFS_LI_ABORTED) |
| 140 | xfs_cui_item_free(CUI_ITEM(lip)); |
| 141 | } |
| 142 | |
| 143 | /* |
| 144 | * The CUI is logged only once and cannot be moved in the log, so simply return |
| 145 | * the lsn at which it's been logged. |
| 146 | */ |
| 147 | STATIC xfs_lsn_t |
| 148 | xfs_cui_item_committed( |
| 149 | struct xfs_log_item *lip, |
| 150 | xfs_lsn_t lsn) |
| 151 | { |
| 152 | return lsn; |
| 153 | } |
| 154 | |
| 155 | /* |
| 156 | * The CUI dependency tracking op doesn't do squat. It can't because |
| 157 | * it doesn't know where the free extent is coming from. The dependency |
| 158 | * tracking has to be handled by the "enclosing" metadata object. For |
| 159 | * example, for inodes, the inode is locked throughout the extent freeing |
| 160 | * so the dependency should be recorded there. |
| 161 | */ |
| 162 | STATIC void |
| 163 | xfs_cui_item_committing( |
| 164 | struct xfs_log_item *lip, |
| 165 | xfs_lsn_t lsn) |
| 166 | { |
| 167 | } |
| 168 | |
| 169 | /* |
| 170 | * This is the ops vector shared by all cui log items. |
| 171 | */ |
| 172 | static const struct xfs_item_ops xfs_cui_item_ops = { |
| 173 | .iop_size = xfs_cui_item_size, |
| 174 | .iop_format = xfs_cui_item_format, |
| 175 | .iop_pin = xfs_cui_item_pin, |
| 176 | .iop_unpin = xfs_cui_item_unpin, |
| 177 | .iop_unlock = xfs_cui_item_unlock, |
| 178 | .iop_committed = xfs_cui_item_committed, |
| 179 | .iop_push = xfs_cui_item_push, |
| 180 | .iop_committing = xfs_cui_item_committing, |
| 181 | }; |
| 182 | |
| 183 | /* |
| 184 | * Allocate and initialize an cui item with the given number of extents. |
| 185 | */ |
| 186 | struct xfs_cui_log_item * |
| 187 | xfs_cui_init( |
| 188 | struct xfs_mount *mp, |
| 189 | uint nextents) |
| 190 | |
| 191 | { |
| 192 | struct xfs_cui_log_item *cuip; |
| 193 | |
| 194 | ASSERT(nextents > 0); |
| 195 | if (nextents > XFS_CUI_MAX_FAST_EXTENTS) |
| 196 | cuip = kmem_zalloc(xfs_cui_log_item_sizeof(nextents), |
| 197 | KM_SLEEP); |
| 198 | else |
| 199 | cuip = kmem_zone_zalloc(xfs_cui_zone, KM_SLEEP); |
| 200 | |
| 201 | xfs_log_item_init(mp, &cuip->cui_item, XFS_LI_CUI, &xfs_cui_item_ops); |
| 202 | cuip->cui_format.cui_nextents = nextents; |
| 203 | cuip->cui_format.cui_id = (uintptr_t)(void *)cuip; |
| 204 | atomic_set(&cuip->cui_next_extent, 0); |
| 205 | atomic_set(&cuip->cui_refcount, 2); |
| 206 | |
| 207 | return cuip; |
| 208 | } |
| 209 | |
| 210 | /* |
| 211 | * Freeing the CUI requires that we remove it from the AIL if it has already |
| 212 | * been placed there. However, the CUI may not yet have been placed in the AIL |
| 213 | * when called by xfs_cui_release() from CUD processing due to the ordering of |
| 214 | * committed vs unpin operations in bulk insert operations. Hence the reference |
| 215 | * count to ensure only the last caller frees the CUI. |
| 216 | */ |
| 217 | void |
| 218 | xfs_cui_release( |
| 219 | struct xfs_cui_log_item *cuip) |
| 220 | { |
| 221 | if (atomic_dec_and_test(&cuip->cui_refcount)) { |
| 222 | xfs_trans_ail_remove(&cuip->cui_item, SHUTDOWN_LOG_IO_ERROR); |
| 223 | xfs_cui_item_free(cuip); |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | static inline struct xfs_cud_log_item *CUD_ITEM(struct xfs_log_item *lip) |
| 228 | { |
| 229 | return container_of(lip, struct xfs_cud_log_item, cud_item); |
| 230 | } |
| 231 | |
| 232 | STATIC void |
| 233 | xfs_cud_item_size( |
| 234 | struct xfs_log_item *lip, |
| 235 | int *nvecs, |
| 236 | int *nbytes) |
| 237 | { |
| 238 | *nvecs += 1; |
| 239 | *nbytes += sizeof(struct xfs_cud_log_format); |
| 240 | } |
| 241 | |
| 242 | /* |
| 243 | * This is called to fill in the vector of log iovecs for the |
| 244 | * given cud log item. We use only 1 iovec, and we point that |
| 245 | * at the cud_log_format structure embedded in the cud item. |
| 246 | * It is at this point that we assert that all of the extent |
| 247 | * slots in the cud item have been filled. |
| 248 | */ |
| 249 | STATIC void |
| 250 | xfs_cud_item_format( |
| 251 | struct xfs_log_item *lip, |
| 252 | struct xfs_log_vec *lv) |
| 253 | { |
| 254 | struct xfs_cud_log_item *cudp = CUD_ITEM(lip); |
| 255 | struct xfs_log_iovec *vecp = NULL; |
| 256 | |
| 257 | cudp->cud_format.cud_type = XFS_LI_CUD; |
| 258 | cudp->cud_format.cud_size = 1; |
| 259 | |
| 260 | xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_CUD_FORMAT, &cudp->cud_format, |
| 261 | sizeof(struct xfs_cud_log_format)); |
| 262 | } |
| 263 | |
| 264 | /* |
| 265 | * Pinning has no meaning for an cud item, so just return. |
| 266 | */ |
| 267 | STATIC void |
| 268 | xfs_cud_item_pin( |
| 269 | struct xfs_log_item *lip) |
| 270 | { |
| 271 | } |
| 272 | |
| 273 | /* |
| 274 | * Since pinning has no meaning for an cud item, unpinning does |
| 275 | * not either. |
| 276 | */ |
| 277 | STATIC void |
| 278 | xfs_cud_item_unpin( |
| 279 | struct xfs_log_item *lip, |
| 280 | int remove) |
| 281 | { |
| 282 | } |
| 283 | |
| 284 | /* |
| 285 | * There isn't much you can do to push on an cud item. It is simply stuck |
| 286 | * waiting for the log to be flushed to disk. |
| 287 | */ |
| 288 | STATIC uint |
| 289 | xfs_cud_item_push( |
| 290 | struct xfs_log_item *lip, |
| 291 | struct list_head *buffer_list) |
| 292 | { |
| 293 | return XFS_ITEM_PINNED; |
| 294 | } |
| 295 | |
| 296 | /* |
| 297 | * The CUD is either committed or aborted if the transaction is cancelled. If |
| 298 | * the transaction is cancelled, drop our reference to the CUI and free the |
| 299 | * CUD. |
| 300 | */ |
| 301 | STATIC void |
| 302 | xfs_cud_item_unlock( |
| 303 | struct xfs_log_item *lip) |
| 304 | { |
| 305 | struct xfs_cud_log_item *cudp = CUD_ITEM(lip); |
| 306 | |
| 307 | if (lip->li_flags & XFS_LI_ABORTED) { |
| 308 | xfs_cui_release(cudp->cud_cuip); |
| 309 | kmem_zone_free(xfs_cud_zone, cudp); |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | /* |
| 314 | * When the cud item is committed to disk, all we need to do is delete our |
| 315 | * reference to our partner cui item and then free ourselves. Since we're |
| 316 | * freeing ourselves we must return -1 to keep the transaction code from |
| 317 | * further referencing this item. |
| 318 | */ |
| 319 | STATIC xfs_lsn_t |
| 320 | xfs_cud_item_committed( |
| 321 | struct xfs_log_item *lip, |
| 322 | xfs_lsn_t lsn) |
| 323 | { |
| 324 | struct xfs_cud_log_item *cudp = CUD_ITEM(lip); |
| 325 | |
| 326 | /* |
| 327 | * Drop the CUI reference regardless of whether the CUD has been |
| 328 | * aborted. Once the CUD transaction is constructed, it is the sole |
| 329 | * responsibility of the CUD to release the CUI (even if the CUI is |
| 330 | * aborted due to log I/O error). |
| 331 | */ |
| 332 | xfs_cui_release(cudp->cud_cuip); |
| 333 | kmem_zone_free(xfs_cud_zone, cudp); |
| 334 | |
| 335 | return (xfs_lsn_t)-1; |
| 336 | } |
| 337 | |
| 338 | /* |
| 339 | * The CUD dependency tracking op doesn't do squat. It can't because |
| 340 | * it doesn't know where the free extent is coming from. The dependency |
| 341 | * tracking has to be handled by the "enclosing" metadata object. For |
| 342 | * example, for inodes, the inode is locked throughout the extent freeing |
| 343 | * so the dependency should be recorded there. |
| 344 | */ |
| 345 | STATIC void |
| 346 | xfs_cud_item_committing( |
| 347 | struct xfs_log_item *lip, |
| 348 | xfs_lsn_t lsn) |
| 349 | { |
| 350 | } |
| 351 | |
| 352 | /* |
| 353 | * This is the ops vector shared by all cud log items. |
| 354 | */ |
| 355 | static const struct xfs_item_ops xfs_cud_item_ops = { |
| 356 | .iop_size = xfs_cud_item_size, |
| 357 | .iop_format = xfs_cud_item_format, |
| 358 | .iop_pin = xfs_cud_item_pin, |
| 359 | .iop_unpin = xfs_cud_item_unpin, |
| 360 | .iop_unlock = xfs_cud_item_unlock, |
| 361 | .iop_committed = xfs_cud_item_committed, |
| 362 | .iop_push = xfs_cud_item_push, |
| 363 | .iop_committing = xfs_cud_item_committing, |
| 364 | }; |
| 365 | |
| 366 | /* |
| 367 | * Allocate and initialize an cud item with the given number of extents. |
| 368 | */ |
| 369 | struct xfs_cud_log_item * |
| 370 | xfs_cud_init( |
| 371 | struct xfs_mount *mp, |
| 372 | struct xfs_cui_log_item *cuip) |
| 373 | |
| 374 | { |
| 375 | struct xfs_cud_log_item *cudp; |
| 376 | |
| 377 | cudp = kmem_zone_zalloc(xfs_cud_zone, KM_SLEEP); |
| 378 | xfs_log_item_init(mp, &cudp->cud_item, XFS_LI_CUD, &xfs_cud_item_ops); |
| 379 | cudp->cud_cuip = cuip; |
| 380 | cudp->cud_format.cud_cui_id = cuip->cui_format.cui_id; |
| 381 | |
| 382 | return cudp; |
| 383 | } |