Add the exception store to Kconfig and Makefile. Signed-off-by: Mikulas Patocka --- drivers/md/multisnap/Kconfig | 9 +++++++++ drivers/md/multisnap/Makefile | 7 +++++++ 2 files changed, 16 insertions(+) Index: linux-2.6.36-rc7-fast/drivers/md/multisnap/Kconfig =================================================================== --- linux-2.6.36-rc7-fast.orig/drivers/md/multisnap/Kconfig 2010-10-15 02:31:36.000000000 +0200 +++ linux-2.6.36-rc7-fast/drivers/md/multisnap/Kconfig 2010-10-15 03:18:21.000000000 +0200 @@ -12,3 +12,12 @@ config DM_MULTISNAPSHOT A submenu allows to select a specific shared snapshot store driver. +config DM_MULTISNAPSHOT_MIKULAS + tristate "Mikulas' snapshot store" + depends on DM_MULTISNAPSHOT + ---help--- + Mikulas Patocka's snapshot store. + + A B+-tree-based log-structured storage allowing unlimited + number of snapshots. + Index: linux-2.6.36-rc7-fast/drivers/md/multisnap/Makefile =================================================================== --- linux-2.6.36-rc7-fast.orig/drivers/md/multisnap/Makefile 2010-10-15 02:31:36.000000000 +0200 +++ linux-2.6.36-rc7-fast/drivers/md/multisnap/Makefile 2010-10-15 03:18:21.000000000 +0200 @@ -2,3 +2,10 @@ dm-multisnapshot-y += dm-multisnap.o obj-$(CONFIG_DM_MULTISNAPSHOT) += dm-multisnapshot.o +dm-store-mikulas-y += dm-multisnap-mikulas.o dm-multisnap-alloc.o \ + dm-multisnap-blocks.o dm-multisnap-btree.o \ + dm-multisnap-commit.o dm-multisnap-delete.o \ + dm-multisnap-freelist.o dm-multisnap-io.o \ + dm-multisnap-snaps.o + +obj-$(CONFIG_DM_MULTISNAPSHOT_MIKULAS) += dm-store-mikulas.o