mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
3caf6d73d4
Remove debug space map checker from dm persistent data. The space map checker is a wrapper for other space maps that double checks the reference counts are correct. It holds all these reference counts in memory rather than on disk, so uses a lot of memory and is thus restricted to small pools. As yet, this checker hasn't found any issues, but has caused a few of its own due to people turning it on by default with larger pools. Removing. Signed-off-by: Joe Thornber <ejt@redhat.com> Signed-off-by: Mike Snitzer <snitzer@redhat.com> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
11 lines
264 B
Makefile
11 lines
264 B
Makefile
obj-$(CONFIG_DM_PERSISTENT_DATA) += dm-persistent-data.o
|
|
dm-persistent-data-objs := \
|
|
dm-block-manager.o \
|
|
dm-space-map-common.o \
|
|
dm-space-map-disk.o \
|
|
dm-space-map-metadata.o \
|
|
dm-transaction-manager.o \
|
|
dm-btree.o \
|
|
dm-btree-remove.o \
|
|
dm-btree-spine.o
|