2 * Copyright (C) 2014 Facebook. All rights reserved.
4 * This file is released under the GPL.
7 #include <linux/device-mapper.h>
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/blkdev.h>
12 #include <linux/bio.h>
13 #include <linux/dax.h>
14 #include <linux/slab.h>
15 #include <linux/kthread.h>
16 #include <linux/freezer.h>
17 #include <linux/uio.h>
19 #define DM_MSG_PREFIX "log-writes"
22 * This target will sequentially log all writes to the target device onto the
23 * log device. This is helpful for replaying writes to check for fs consistency
24 * at all times. This target provides a mechanism to mark specific events to
25 * check data at a later time. So for example you would:
29 * dmsetup message /dev/whatever mark mymark
32 * Then replay the log up to mymark and check the contents of the replay to
33 * verify it matches what was written.
35 * We log writes only after they have been flushed, this makes the log describe
36 * close to the order in which the data hits the actual disk, not its cache. So
37 * for example the following sequence (W means write, C means complete)
39 * Wa,Wb,Wc,Cc,Ca,FLUSH,FUAd,Cb,CFLUSH,CFUAd
41 * Would result in the log looking like this:
43 * c,a,b,flush,fuad,<other writes>,<next flush>
45 * This is meant to help expose problems where file systems do not properly wait
46 * on data being written before invoking a FLUSH. FUA bypasses cache so once it
47 * completes it is added to the log as it should be on disk.
49 * We treat DISCARDs as if they don't bypass cache so that they are logged in
50 * order of completion along with the normal writes. If we didn't do it this
51 * way we would process all the discards first and then write all the data, when
52 * in fact we want to do the data and the discard in the order that they
55 #define LOG_FLUSH_FLAG (1 << 0)
56 #define LOG_FUA_FLAG (1 << 1)
57 #define LOG_DISCARD_FLAG (1 << 2)
58 #define LOG_MARK_FLAG (1 << 3)
59 #define LOG_METADATA_FLAG (1 << 4)
61 #define WRITE_LOG_VERSION 1ULL
62 #define WRITE_LOG_MAGIC 0x6a736677736872ULL
63 #define WRITE_LOG_SUPER_SECTOR 0
66 * The disk format for this is braindead simple.
68 * At byte 0 we have our super, followed by the following sequence for
71 * [ 1 sector ][ entry->nr_sectors ]
72 * [log_write_entry][ data written ]
74 * The log_write_entry takes up a full sector so we can have arbitrary length
75 * marks and it leaves us room for extra content in the future.
79 * Basic info about the log for userspace.
81 struct log_write_super {
89 * sector - the sector we wrote.
90 * nr_sectors - the number of sectors we wrote.
91 * flags - flags for this log entry.
92 * data_len - the size of the data in this log entry, this is for private log
93 * entry stuff, the MARK data provided by userspace for example.
95 struct log_write_entry {
102 struct log_writes_c {
104 struct dm_dev *logdev;
109 atomic_t pending_blocks;
110 sector_t next_sector;
112 bool logging_enabled;
113 bool device_supports_discard;
114 spinlock_t blocks_lock;
115 struct list_head unflushed_blocks;
116 struct list_head logging_blocks;
117 wait_queue_head_t wait;
118 struct task_struct *log_kthread;
119 struct completion super_done;
122 struct pending_block {
129 struct list_head list;
130 struct bio_vec vecs[];
133 struct per_bio_data {
134 struct pending_block *block;
137 static inline sector_t bio_to_dev_sectors(struct log_writes_c *lc,
140 return sectors >> (lc->sectorshift - SECTOR_SHIFT);
143 static inline sector_t dev_to_bio_sectors(struct log_writes_c *lc,
146 return sectors << (lc->sectorshift - SECTOR_SHIFT);
149 static void put_pending_block(struct log_writes_c *lc)
151 if (atomic_dec_and_test(&lc->pending_blocks)) {
152 smp_mb__after_atomic();
153 if (waitqueue_active(&lc->wait))
158 static void put_io_block(struct log_writes_c *lc)
160 if (atomic_dec_and_test(&lc->io_blocks)) {
161 smp_mb__after_atomic();
162 if (waitqueue_active(&lc->wait))
167 static void log_end_io(struct bio *bio)
169 struct log_writes_c *lc = bio->bi_private;
171 if (bio->bi_status) {
174 DMERR("Error writing log block, error=%d", bio->bi_status);
175 spin_lock_irqsave(&lc->blocks_lock, flags);
176 lc->logging_enabled = false;
177 spin_unlock_irqrestore(&lc->blocks_lock, flags);
185 static void log_end_super(struct bio *bio)
187 struct log_writes_c *lc = bio->bi_private;
189 complete(&lc->super_done);
194 * Meant to be called if there is an error, it will free all the pages
195 * associated with the block.
197 static void free_pending_block(struct log_writes_c *lc,
198 struct pending_block *block)
202 for (i = 0; i < block->vec_cnt; i++) {
203 if (block->vecs[i].bv_page)
204 __free_page(block->vecs[i].bv_page);
208 put_pending_block(lc);
211 static int write_metadata(struct log_writes_c *lc, void *entry,
212 size_t entrylen, void *data, size_t datalen,
220 bio = bio_alloc(lc->logdev->bdev, 1, REQ_OP_WRITE, GFP_KERNEL);
221 bio->bi_iter.bi_size = 0;
222 bio->bi_iter.bi_sector = sector;
223 bio->bi_end_io = (sector == WRITE_LOG_SUPER_SECTOR) ?
224 log_end_super : log_end_io;
225 bio->bi_private = lc;
227 page = alloc_page(GFP_KERNEL);
229 DMERR("Couldn't alloc log page");
234 ptr = kmap_atomic(page);
235 memcpy(ptr, entry, entrylen);
237 memcpy(ptr + entrylen, data, datalen);
238 memset(ptr + entrylen + datalen, 0,
239 lc->sectorsize - entrylen - datalen);
242 ret = bio_add_page(bio, page, lc->sectorsize, 0);
243 if (ret != lc->sectorsize) {
244 DMERR("Couldn't add page to the log block");
257 static int write_inline_data(struct log_writes_c *lc, void *entry,
258 size_t entrylen, void *data, size_t datalen,
261 int bio_pages, pg_datalen, pg_sectorlen, i;
268 bio_pages = bio_max_segs(DIV_ROUND_UP(datalen, PAGE_SIZE));
270 atomic_inc(&lc->io_blocks);
272 bio = bio_alloc(lc->logdev->bdev, bio_pages, REQ_OP_WRITE,
274 bio->bi_iter.bi_size = 0;
275 bio->bi_iter.bi_sector = sector;
276 bio->bi_end_io = log_end_io;
277 bio->bi_private = lc;
279 for (i = 0; i < bio_pages; i++) {
280 pg_datalen = min_t(int, datalen, PAGE_SIZE);
281 pg_sectorlen = ALIGN(pg_datalen, lc->sectorsize);
283 page = alloc_page(GFP_KERNEL);
285 DMERR("Couldn't alloc inline data page");
289 ptr = kmap_atomic(page);
290 memcpy(ptr, data, pg_datalen);
291 if (pg_sectorlen > pg_datalen)
292 memset(ptr + pg_datalen, 0, pg_sectorlen - pg_datalen);
295 ret = bio_add_page(bio, page, pg_sectorlen, 0);
296 if (ret != pg_sectorlen) {
297 DMERR("Couldn't add page of inline data");
302 datalen -= pg_datalen;
307 sector += bio_pages * PAGE_SECTORS;
317 static int log_one_block(struct log_writes_c *lc,
318 struct pending_block *block, sector_t sector)
321 struct log_write_entry entry;
322 size_t metadatalen, ret;
325 entry.sector = cpu_to_le64(block->sector);
326 entry.nr_sectors = cpu_to_le64(block->nr_sectors);
327 entry.flags = cpu_to_le64(block->flags);
328 entry.data_len = cpu_to_le64(block->datalen);
330 metadatalen = (block->flags & LOG_MARK_FLAG) ? block->datalen : 0;
331 if (write_metadata(lc, &entry, sizeof(entry), block->data,
332 metadatalen, sector)) {
333 free_pending_block(lc, block);
337 sector += dev_to_bio_sectors(lc, 1);
339 if (block->datalen && metadatalen == 0) {
340 if (write_inline_data(lc, &entry, sizeof(entry), block->data,
341 block->datalen, sector)) {
342 free_pending_block(lc, block);
345 /* we don't support both inline data & bio data */
352 atomic_inc(&lc->io_blocks);
353 bio = bio_alloc(lc->logdev->bdev, bio_max_segs(block->vec_cnt),
354 REQ_OP_WRITE, GFP_KERNEL);
355 bio->bi_iter.bi_size = 0;
356 bio->bi_iter.bi_sector = sector;
357 bio->bi_end_io = log_end_io;
358 bio->bi_private = lc;
360 for (i = 0; i < block->vec_cnt; i++) {
362 * The page offset is always 0 because we allocate a new page
363 * for every bvec in the original bio for simplicity sake.
365 ret = bio_add_page(bio, block->vecs[i].bv_page,
366 block->vecs[i].bv_len, 0);
367 if (ret != block->vecs[i].bv_len) {
368 atomic_inc(&lc->io_blocks);
370 bio = bio_alloc(lc->logdev->bdev,
371 bio_max_segs(block->vec_cnt - i),
372 REQ_OP_WRITE, GFP_KERNEL);
373 bio->bi_iter.bi_size = 0;
374 bio->bi_iter.bi_sector = sector;
375 bio->bi_end_io = log_end_io;
376 bio->bi_private = lc;
378 ret = bio_add_page(bio, block->vecs[i].bv_page,
379 block->vecs[i].bv_len, 0);
380 if (ret != block->vecs[i].bv_len) {
381 DMERR("Couldn't add page on new bio?");
386 sector += block->vecs[i].bv_len >> SECTOR_SHIFT;
392 put_pending_block(lc);
395 free_pending_block(lc, block);
400 static int log_super(struct log_writes_c *lc)
402 struct log_write_super super;
404 super.magic = cpu_to_le64(WRITE_LOG_MAGIC);
405 super.version = cpu_to_le64(WRITE_LOG_VERSION);
406 super.nr_entries = cpu_to_le64(lc->logged_entries);
407 super.sectorsize = cpu_to_le32(lc->sectorsize);
409 if (write_metadata(lc, &super, sizeof(super), NULL, 0,
410 WRITE_LOG_SUPER_SECTOR)) {
411 DMERR("Couldn't write super");
416 * Super sector should be writen in-order, otherwise the
417 * nr_entries could be rewritten incorrectly by an old bio.
419 wait_for_completion_io(&lc->super_done);
424 static inline sector_t logdev_last_sector(struct log_writes_c *lc)
426 return bdev_nr_sectors(lc->logdev->bdev);
429 static int log_writes_kthread(void *arg)
431 struct log_writes_c *lc = (struct log_writes_c *)arg;
434 while (!kthread_should_stop()) {
436 bool logging_enabled;
437 struct pending_block *block = NULL;
440 spin_lock_irq(&lc->blocks_lock);
441 if (!list_empty(&lc->logging_blocks)) {
442 block = list_first_entry(&lc->logging_blocks,
443 struct pending_block, list);
444 list_del_init(&block->list);
445 if (!lc->logging_enabled)
448 sector = lc->next_sector;
449 if (!(block->flags & LOG_DISCARD_FLAG))
450 lc->next_sector += dev_to_bio_sectors(lc, block->nr_sectors);
451 lc->next_sector += dev_to_bio_sectors(lc, 1);
454 * Apparently the size of the device may not be known
455 * right away, so handle this properly.
458 lc->end_sector = logdev_last_sector(lc);
459 if (lc->end_sector &&
460 lc->next_sector >= lc->end_sector) {
461 DMERR("Ran out of space on the logdev");
462 lc->logging_enabled = false;
465 lc->logged_entries++;
466 atomic_inc(&lc->io_blocks);
468 super = (block->flags & (LOG_FUA_FLAG | LOG_MARK_FLAG));
470 atomic_inc(&lc->io_blocks);
473 logging_enabled = lc->logging_enabled;
474 spin_unlock_irq(&lc->blocks_lock);
476 if (logging_enabled) {
477 ret = log_one_block(lc, block, sector);
481 spin_lock_irq(&lc->blocks_lock);
482 lc->logging_enabled = false;
483 spin_unlock_irq(&lc->blocks_lock);
486 free_pending_block(lc, block);
490 if (!try_to_freeze()) {
491 set_current_state(TASK_INTERRUPTIBLE);
492 if (!kthread_should_stop() &&
493 list_empty(&lc->logging_blocks))
495 __set_current_state(TASK_RUNNING);
502 * Construct a log-writes mapping:
503 * log-writes <dev_path> <log_dev_path>
505 static int log_writes_ctr(struct dm_target *ti, unsigned int argc, char **argv)
507 struct log_writes_c *lc;
508 struct dm_arg_set as;
509 const char *devname, *logdevname;
516 ti->error = "Invalid argument count";
520 lc = kzalloc(sizeof(struct log_writes_c), GFP_KERNEL);
522 ti->error = "Cannot allocate context";
525 spin_lock_init(&lc->blocks_lock);
526 INIT_LIST_HEAD(&lc->unflushed_blocks);
527 INIT_LIST_HEAD(&lc->logging_blocks);
528 init_waitqueue_head(&lc->wait);
529 init_completion(&lc->super_done);
530 atomic_set(&lc->io_blocks, 0);
531 atomic_set(&lc->pending_blocks, 0);
533 devname = dm_shift_arg(&as);
534 ret = dm_get_device(ti, devname, dm_table_get_mode(ti->table), &lc->dev);
536 ti->error = "Device lookup failed";
540 logdevname = dm_shift_arg(&as);
541 ret = dm_get_device(ti, logdevname, dm_table_get_mode(ti->table),
544 ti->error = "Log device lookup failed";
545 dm_put_device(ti, lc->dev);
549 lc->sectorsize = bdev_logical_block_size(lc->dev->bdev);
550 lc->sectorshift = ilog2(lc->sectorsize);
551 lc->log_kthread = kthread_run(log_writes_kthread, lc, "log-write");
552 if (IS_ERR(lc->log_kthread)) {
553 ret = PTR_ERR(lc->log_kthread);
554 ti->error = "Couldn't alloc kthread";
555 dm_put_device(ti, lc->dev);
556 dm_put_device(ti, lc->logdev);
561 * next_sector is in 512b sectors to correspond to what bi_sector expects.
562 * The super starts at sector 0, and the next_sector is the next logical
563 * one based on the sectorsize of the device.
565 lc->next_sector = lc->sectorsize >> SECTOR_SHIFT;
566 lc->logging_enabled = true;
567 lc->end_sector = logdev_last_sector(lc);
568 lc->device_supports_discard = true;
570 ti->num_flush_bios = 1;
571 ti->flush_supported = true;
572 ti->num_discard_bios = 1;
573 ti->discards_supported = true;
574 ti->per_io_data_size = sizeof(struct per_bio_data);
583 static int log_mark(struct log_writes_c *lc, char *data)
585 struct pending_block *block;
586 size_t maxsize = lc->sectorsize - sizeof(struct log_write_entry);
588 block = kzalloc(sizeof(struct pending_block), GFP_KERNEL);
590 DMERR("Error allocating pending block");
594 block->data = kstrndup(data, maxsize - 1, GFP_KERNEL);
596 DMERR("Error copying mark data");
600 atomic_inc(&lc->pending_blocks);
601 block->datalen = strlen(block->data);
602 block->flags |= LOG_MARK_FLAG;
603 spin_lock_irq(&lc->blocks_lock);
604 list_add_tail(&block->list, &lc->logging_blocks);
605 spin_unlock_irq(&lc->blocks_lock);
606 wake_up_process(lc->log_kthread);
610 static void log_writes_dtr(struct dm_target *ti)
612 struct log_writes_c *lc = ti->private;
614 spin_lock_irq(&lc->blocks_lock);
615 list_splice_init(&lc->unflushed_blocks, &lc->logging_blocks);
616 spin_unlock_irq(&lc->blocks_lock);
619 * This is just nice to have since it'll update the super to include the
620 * unflushed blocks, if it fails we don't really care.
622 log_mark(lc, "dm-log-writes-end");
623 wake_up_process(lc->log_kthread);
624 wait_event(lc->wait, !atomic_read(&lc->io_blocks) &&
625 !atomic_read(&lc->pending_blocks));
626 kthread_stop(lc->log_kthread);
628 WARN_ON(!list_empty(&lc->logging_blocks));
629 WARN_ON(!list_empty(&lc->unflushed_blocks));
630 dm_put_device(ti, lc->dev);
631 dm_put_device(ti, lc->logdev);
635 static void normal_map_bio(struct dm_target *ti, struct bio *bio)
637 struct log_writes_c *lc = ti->private;
639 bio_set_dev(bio, lc->dev->bdev);
642 static int log_writes_map(struct dm_target *ti, struct bio *bio)
644 struct log_writes_c *lc = ti->private;
645 struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data));
646 struct pending_block *block;
647 struct bvec_iter iter;
651 bool flush_bio = (bio->bi_opf & REQ_PREFLUSH);
652 bool fua_bio = (bio->bi_opf & REQ_FUA);
653 bool discard_bio = (bio_op(bio) == REQ_OP_DISCARD);
654 bool meta_bio = (bio->bi_opf & REQ_META);
658 /* Don't bother doing anything if logging has been disabled */
659 if (!lc->logging_enabled)
663 * Map reads as normal.
665 if (bio_data_dir(bio) == READ)
668 /* No sectors and not a flush? Don't care */
669 if (!bio_sectors(bio) && !flush_bio)
673 * Discards will have bi_size set but there's no actual data, so just
674 * allocate the size of the pending block.
677 alloc_size = sizeof(struct pending_block);
679 alloc_size = struct_size(block, vecs, bio_segments(bio));
681 block = kzalloc(alloc_size, GFP_NOIO);
683 DMERR("Error allocating pending block");
684 spin_lock_irq(&lc->blocks_lock);
685 lc->logging_enabled = false;
686 spin_unlock_irq(&lc->blocks_lock);
687 return DM_MAPIO_KILL;
689 INIT_LIST_HEAD(&block->list);
691 atomic_inc(&lc->pending_blocks);
694 block->flags |= LOG_FLUSH_FLAG;
696 block->flags |= LOG_FUA_FLAG;
698 block->flags |= LOG_DISCARD_FLAG;
700 block->flags |= LOG_METADATA_FLAG;
702 block->sector = bio_to_dev_sectors(lc, bio->bi_iter.bi_sector);
703 block->nr_sectors = bio_to_dev_sectors(lc, bio_sectors(bio));
705 /* We don't need the data, just submit */
707 WARN_ON(flush_bio || fua_bio);
708 if (lc->device_supports_discard)
711 return DM_MAPIO_SUBMITTED;
714 /* Flush bio, splice the unflushed blocks onto this list and submit */
715 if (flush_bio && !bio_sectors(bio)) {
716 spin_lock_irq(&lc->blocks_lock);
717 list_splice_init(&lc->unflushed_blocks, &block->list);
718 spin_unlock_irq(&lc->blocks_lock);
723 * We will write this bio somewhere else way later so we need to copy
724 * the actual contents into new pages so we know the data will always be
727 * We do this because this could be a bio from O_DIRECT in which case we
728 * can't just hold onto the page until some later point, we have to
729 * manually copy the contents.
731 bio_for_each_segment(bv, bio, iter) {
735 page = alloc_page(GFP_NOIO);
737 DMERR("Error allocing page");
738 free_pending_block(lc, block);
739 spin_lock_irq(&lc->blocks_lock);
740 lc->logging_enabled = false;
741 spin_unlock_irq(&lc->blocks_lock);
742 return DM_MAPIO_KILL;
745 dst = kmap_atomic(page);
746 memcpy_from_bvec(dst, &bv);
748 block->vecs[i].bv_page = page;
749 block->vecs[i].bv_len = bv.bv_len;
754 /* Had a flush with data in it, weird */
756 spin_lock_irq(&lc->blocks_lock);
757 list_splice_init(&lc->unflushed_blocks, &block->list);
758 spin_unlock_irq(&lc->blocks_lock);
761 normal_map_bio(ti, bio);
762 return DM_MAPIO_REMAPPED;
765 static int normal_end_io(struct dm_target *ti, struct bio *bio,
768 struct log_writes_c *lc = ti->private;
769 struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data));
771 if (bio_data_dir(bio) == WRITE && pb->block) {
772 struct pending_block *block = pb->block;
775 spin_lock_irqsave(&lc->blocks_lock, flags);
776 if (block->flags & LOG_FLUSH_FLAG) {
777 list_splice_tail_init(&block->list, &lc->logging_blocks);
778 list_add_tail(&block->list, &lc->logging_blocks);
779 wake_up_process(lc->log_kthread);
780 } else if (block->flags & LOG_FUA_FLAG) {
781 list_add_tail(&block->list, &lc->logging_blocks);
782 wake_up_process(lc->log_kthread);
784 list_add_tail(&block->list, &lc->unflushed_blocks);
785 spin_unlock_irqrestore(&lc->blocks_lock, flags);
788 return DM_ENDIO_DONE;
792 * INFO format: <logged entries> <highest allocated sector>
794 static void log_writes_status(struct dm_target *ti, status_type_t type,
795 unsigned status_flags, char *result,
799 struct log_writes_c *lc = ti->private;
802 case STATUSTYPE_INFO:
803 DMEMIT("%llu %llu", lc->logged_entries,
804 (unsigned long long)lc->next_sector - 1);
805 if (!lc->logging_enabled)
806 DMEMIT(" logging_disabled");
809 case STATUSTYPE_TABLE:
810 DMEMIT("%s %s", lc->dev->name, lc->logdev->name);
819 static int log_writes_prepare_ioctl(struct dm_target *ti,
820 struct block_device **bdev)
822 struct log_writes_c *lc = ti->private;
823 struct dm_dev *dev = lc->dev;
827 * Only pass ioctls through if the device sizes match exactly.
829 if (ti->len != bdev_nr_sectors(dev->bdev))
834 static int log_writes_iterate_devices(struct dm_target *ti,
835 iterate_devices_callout_fn fn,
838 struct log_writes_c *lc = ti->private;
840 return fn(ti, lc->dev, 0, ti->len, data);
844 * Messages supported:
845 * mark <mark data> - specify the marked data.
847 static int log_writes_message(struct dm_target *ti, unsigned argc, char **argv,
848 char *result, unsigned maxlen)
851 struct log_writes_c *lc = ti->private;
854 DMWARN("Invalid log-writes message arguments, expect 2 arguments, got %d", argc);
858 if (!strcasecmp(argv[0], "mark"))
859 r = log_mark(lc, argv[1]);
861 DMWARN("Unrecognised log writes target message received: %s", argv[0]);
866 static void log_writes_io_hints(struct dm_target *ti, struct queue_limits *limits)
868 struct log_writes_c *lc = ti->private;
870 if (!bdev_max_discard_sectors(lc->dev->bdev)) {
871 lc->device_supports_discard = false;
872 limits->discard_granularity = lc->sectorsize;
873 limits->max_discard_sectors = (UINT_MAX >> SECTOR_SHIFT);
875 limits->logical_block_size = bdev_logical_block_size(lc->dev->bdev);
876 limits->physical_block_size = bdev_physical_block_size(lc->dev->bdev);
877 limits->io_min = limits->physical_block_size;
880 #if IS_ENABLED(CONFIG_FS_DAX)
881 static struct dax_device *log_writes_dax_pgoff(struct dm_target *ti,
884 struct log_writes_c *lc = ti->private;
886 *pgoff += (get_start_sect(lc->dev->bdev) >> PAGE_SECTORS_SHIFT);
887 return lc->dev->dax_dev;
890 static long log_writes_dax_direct_access(struct dm_target *ti, pgoff_t pgoff,
891 long nr_pages, enum dax_access_mode mode, void **kaddr,
894 struct dax_device *dax_dev = log_writes_dax_pgoff(ti, &pgoff);
896 return dax_direct_access(dax_dev, pgoff, nr_pages, mode, kaddr, pfn);
899 static int log_writes_dax_zero_page_range(struct dm_target *ti, pgoff_t pgoff,
902 struct dax_device *dax_dev = log_writes_dax_pgoff(ti, &pgoff);
904 return dax_zero_page_range(dax_dev, pgoff, nr_pages << PAGE_SHIFT);
907 static size_t log_writes_dax_recovery_write(struct dm_target *ti,
908 pgoff_t pgoff, void *addr, size_t bytes, struct iov_iter *i)
910 struct dax_device *dax_dev = log_writes_dax_pgoff(ti, &pgoff);
912 return dax_recovery_write(dax_dev, pgoff, addr, bytes, i);
916 #define log_writes_dax_direct_access NULL
917 #define log_writes_dax_zero_page_range NULL
918 #define log_writes_dax_recovery_write NULL
921 static struct target_type log_writes_target = {
922 .name = "log-writes",
923 .version = {1, 1, 0},
924 .module = THIS_MODULE,
925 .ctr = log_writes_ctr,
926 .dtr = log_writes_dtr,
927 .map = log_writes_map,
928 .end_io = normal_end_io,
929 .status = log_writes_status,
930 .prepare_ioctl = log_writes_prepare_ioctl,
931 .message = log_writes_message,
932 .iterate_devices = log_writes_iterate_devices,
933 .io_hints = log_writes_io_hints,
934 .direct_access = log_writes_dax_direct_access,
935 .dax_zero_page_range = log_writes_dax_zero_page_range,
936 .dax_recovery_write = log_writes_dax_recovery_write,
939 static int __init dm_log_writes_init(void)
941 int r = dm_register_target(&log_writes_target);
944 DMERR("register failed %d", r);
949 static void __exit dm_log_writes_exit(void)
951 dm_unregister_target(&log_writes_target);
954 module_init(dm_log_writes_init);
955 module_exit(dm_log_writes_exit);
957 MODULE_DESCRIPTION(DM_NAME " log writes target");
958 MODULE_AUTHOR("Josef Bacik <jbacik@fb.com>");
959 MODULE_LICENSE("GPL");