diff options
author | Josef Bacik <jbacik@fb.com> | 2015-03-20 10:50:37 -0400 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2015-04-15 12:10:24 -0400 |
commit | 0e9cebe724597a76ab1b0ebc0a21e16f7db11b47 (patch) | |
tree | 8217c6cea86697a985a7f88ff4240bb93277db84 /drivers/md/Makefile | |
parent | 7f61f5a022101e0c38c3cff2ef9ace9c9c86dbfb (diff) | |
download | linux-stable-0e9cebe724597a76ab1b0ebc0a21e16f7db11b47.tar.gz linux-stable-0e9cebe724597a76ab1b0ebc0a21e16f7db11b47.tar.bz2 linux-stable-0e9cebe724597a76ab1b0ebc0a21e16f7db11b47.zip |
dm: add log writes target
Introduce a new target that is meant for file system developers to test file
system integrity at particular points in the life of a file system. We capture
all write requests and associated data and log them to a separate device
for later replay. There is a userspace utility to do this replay. The
idea behind this is to give file system developers a tool to verify that
the file system is always consistent.
Signed-off-by: Josef Bacik <jbacik@fb.com>
Reviewed-by: Zach Brown <zab@zabbo.net>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers/md/Makefile')
-rw-r--r-- | drivers/md/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/Makefile b/drivers/md/Makefile index a2da532b1c2b..1863feaa5846 100644 --- a/drivers/md/Makefile +++ b/drivers/md/Makefile @@ -55,6 +55,7 @@ obj-$(CONFIG_DM_CACHE) += dm-cache.o obj-$(CONFIG_DM_CACHE_MQ) += dm-cache-mq.o obj-$(CONFIG_DM_CACHE_CLEANER) += dm-cache-cleaner.o obj-$(CONFIG_DM_ERA) += dm-era.o +obj-$(CONFIG_DM_LOG_WRITES) += dm-log-writes.o ifeq ($(CONFIG_DM_UEVENT),y) dm-mod-objs += dm-uevent.o |