diff options
author | Jens Axboe <axboe@fb.com> | 2014-05-19 08:16:41 -0600 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2014-05-19 08:34:46 -0600 |
commit | f9c78b2be2cac2a7a397d489275e7d9f9ae785f2 (patch) | |
tree | fde918d944e61dc87cc89a71bec7e886832b1829 /block/Makefile | |
parent | acb12e0a9c17ae859a05acb116a0c0a7e310c781 (diff) | |
download | op-kernel-dev-f9c78b2be2cac2a7a397d489275e7d9f9ae785f2.zip op-kernel-dev-f9c78b2be2cac2a7a397d489275e7d9f9ae785f2.tar.gz |
block: move bio.c and bio-integrity.c from fs/ to block/
They really belong in block/, especially now since it's not in
drivers/block/ anymore. Additionally, the get_maintainer script
gets it wrong when in fs/.
Suggested-by: Christoph Hellwig <hch@infradead.org>
Acked-by: Al Viro <viro@ZenIV.linux.org.uk>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block/Makefile')
-rw-r--r-- | block/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/block/Makefile b/block/Makefile index 20645e8..506a0c5 100644 --- a/block/Makefile +++ b/block/Makefile @@ -2,7 +2,7 @@ # Makefile for the kernel block layer # -obj-$(CONFIG_BLOCK) := elevator.o blk-core.o blk-tag.o blk-sysfs.o \ +obj-$(CONFIG_BLOCK) := bio.o elevator.o blk-core.o blk-tag.o blk-sysfs.o \ blk-flush.o blk-settings.o blk-ioc.o blk-map.o \ blk-exec.o blk-merge.o blk-softirq.o blk-timeout.o \ blk-iopoll.o blk-lib.o blk-mq.o blk-mq-tag.o \ @@ -20,3 +20,4 @@ obj-$(CONFIG_IOSCHED_CFQ) += cfq-iosched.o obj-$(CONFIG_BLOCK_COMPAT) += compat_ioctl.o obj-$(CONFIG_BLK_DEV_INTEGRITY) += blk-integrity.o obj-$(CONFIG_BLK_CMDLINE_PARSER) += cmdline-parser.o +obj-$(CONFIG_BLK_DEV_INTEGRITY) += bio-integrity.o |