Add the exception store to Kconfig and Makefile. Signed-off-by: Mikulas Patocka --- drivers/md/multisnap/Kconfig | 10 ++++++++++ drivers/md/multisnap/Makefile | 7 +++++++ 2 files changed, 17 insertions(+) Index: linux-3.0-fast/drivers/md/multisnap/Kconfig =================================================================== --- linux-3.0-fast.orig/drivers/md/multisnap/Kconfig 2011-08-09 21:29:50.000000000 +0200 +++ linux-3.0-fast/drivers/md/multisnap/Kconfig 2011-08-09 21:29:57.000000000 +0200 @@ -12,3 +12,13 @@ config DM_MULTISNAPSHOT A submenu allows to select a specific shared snapshot store driver. +config DM_MULTISNAPSHOT_ROLLING + tristate "Rolling snapshot store" + depends on DM_MULTISNAPSHOT + select DM_BUFIO + ---help--- + Rolling snapshot store. + + A B+-tree-based log-structured storage allowing unlimited + number of snapshots. + Index: linux-3.0-fast/drivers/md/multisnap/Makefile =================================================================== --- linux-3.0-fast.orig/drivers/md/multisnap/Makefile 2011-08-09 21:29:50.000000000 +0200 +++ linux-3.0-fast/drivers/md/multisnap/Makefile 2011-08-09 21:29:57.000000000 +0200 @@ -2,3 +2,10 @@ dm-multisnapshot-y += dm-multisnap.o obj-$(CONFIG_DM_MULTISNAPSHOT) += dm-multisnapshot.o +dm-store-rolling-y += dm-rolling.o dm-rolling-alloc.o \ + dm-rolling-blocks.o dm-rolling-btree.o \ + dm-rolling-commit.o dm-rolling-delete.o \ + dm-rolling-freelist.o dm-rolling-io.o \ + dm-rolling-snaps.o + +obj-$(CONFIG_DM_MULTISNAPSHOT_ROLLING) += dm-store-rolling.o