1# SPDX-License-Identifier: GPL-2.0-only 2 3ccflags-y := -I$(srctree)/$(src) -I$(srctree)/$(src)/indexer 4 5obj-$(CONFIG_DM_VDO) += dm-vdo.o 6 7dm-vdo-objs := \ 8 action-manager.o \ 9 admin-state.o \ 10 block-map.o \ 11 completion.o \ 12 data-vio.o \ 13 dedupe.o \ 14 dm-vdo-target.o \ 15 dump.o \ 16 encodings.o \ 17 errors.o \ 18 flush.o \ 19 funnel-queue.o \ 20 funnel-workqueue.o \ 21 int-map.o \ 22 io-submitter.o \ 23 logger.o \ 24 logical-zone.o \ 25 memory-alloc.o \ 26 message-stats.o \ 27 murmurhash3.o \ 28 packer.o \ 29 permassert.o \ 30 physical-zone.o \ 31 priority-table.o \ 32 recovery-journal.o \ 33 repair.o \ 34 slab-depot.o \ 35 status-codes.o \ 36 string-utils.o \ 37 thread-device.o \ 38 thread-registry.o \ 39 thread-utils.o \ 40 vdo.o \ 41 vio.o \ 42 wait-queue.o \ 43 indexer/chapter-index.o \ 44 indexer/config.o \ 45 indexer/delta-index.o \ 46 indexer/funnel-requestqueue.o \ 47 indexer/geometry.o \ 48 indexer/index.o \ 49 indexer/index-layout.o \ 50 indexer/index-page-map.o \ 51 indexer/index-session.o \ 52 indexer/io-factory.o \ 53 indexer/open-chapter.o \ 54 indexer/radix-sort.o \ 55 indexer/sparse-cache.o \ 56 indexer/volume.o \ 57 indexer/volume-index.o 58