Lines Matching defs:fixup
2331 struct btrfs_writepage_fixup *fixup;
2342 fixup = container_of(work, struct btrfs_writepage_fixup, work);
2343 page = fixup->page;
2344 inode = BTRFS_I(fixup->inode);
2358 * Before we queued this fixup, we took a reference on the page.
2369 * first time we come into the fixup worker, or could happen
2448 kfree(fixup);
2452 * that could need flushing space. Recursing back to fixup worker would
2473 struct btrfs_writepage_fixup *fixup;
2480 * PageChecked is set below when we create a fixup worker for this page,
2489 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2490 if (!fixup)
2502 btrfs_init_work(&fixup->work, btrfs_writepage_fixup_worker, NULL, NULL);
2503 fixup->page = page;
2504 fixup->inode = inode;
2505 btrfs_queue_work(fs_info->fixup_workers, &fixup->work);