mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
47e9624616
Support for cyrptoloop has been officially marked broken and deprecated in favor of dm-crypt (which supports the same broken algorithms if needed) in Linux 2.6.4 (released in March 2004), and support for it has been entirely removed from losetup in util-linux 2.23 (released in April 2013). The XOR transfer has never been more than a toy to demonstrate the transfer in the bad old times of crypto export restrictions. Remove them as they have some nasty interactions with loop device life times due to the iteration over all loop devices in loop_unregister_transfer. Suggested-by: Milan Broz <gmazyland@gmail.com> Signed-off-by: Christoph Hellwig <hch@lst.de> Link: https://lore.kernel.org/r/20211019075639.2333969-1-hch@lst.de Signed-off-by: Jens Axboe <axboe@kernel.dk>
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the kernel block device drivers.
|
|
#
|
|
# 12 June 2000, Christoph Hellwig <hch@infradead.org>
|
|
# Rewritten to use lists instead of if-statements.
|
|
#
|
|
|
|
# needed for trace events
|
|
ccflags-y += -I$(src)
|
|
|
|
obj-$(CONFIG_MAC_FLOPPY) += swim3.o
|
|
obj-$(CONFIG_BLK_DEV_SWIM) += swim_mod.o
|
|
obj-$(CONFIG_BLK_DEV_FD) += floppy.o
|
|
obj-$(CONFIG_AMIGA_FLOPPY) += amiflop.o
|
|
obj-$(CONFIG_PS3_DISK) += ps3disk.o
|
|
obj-$(CONFIG_PS3_VRAM) += ps3vram.o
|
|
obj-$(CONFIG_ATARI_FLOPPY) += ataflop.o
|
|
obj-$(CONFIG_AMIGA_Z2RAM) += z2ram.o
|
|
obj-$(CONFIG_N64CART) += n64cart.o
|
|
obj-$(CONFIG_BLK_DEV_RAM) += brd.o
|
|
obj-$(CONFIG_BLK_DEV_LOOP) += loop.o
|
|
obj-$(CONFIG_CDROM_PKTCDVD) += pktcdvd.o
|
|
obj-$(CONFIG_SUNVDC) += sunvdc.o
|
|
|
|
obj-$(CONFIG_BLK_DEV_NBD) += nbd.o
|
|
obj-$(CONFIG_VIRTIO_BLK) += virtio_blk.o
|
|
|
|
obj-$(CONFIG_BLK_DEV_SX8) += sx8.o
|
|
|
|
obj-$(CONFIG_XEN_BLKDEV_FRONTEND) += xen-blkfront.o
|
|
obj-$(CONFIG_XEN_BLKDEV_BACKEND) += xen-blkback/
|
|
obj-$(CONFIG_BLK_DEV_DRBD) += drbd/
|
|
obj-$(CONFIG_BLK_DEV_RBD) += rbd.o
|
|
obj-$(CONFIG_BLK_DEV_PCIESSD_MTIP32XX) += mtip32xx/
|
|
|
|
obj-$(CONFIG_BLK_DEV_RSXX) += rsxx/
|
|
obj-$(CONFIG_ZRAM) += zram/
|
|
obj-$(CONFIG_BLK_DEV_RNBD) += rnbd/
|
|
|
|
obj-$(CONFIG_BLK_DEV_NULL_BLK) += null_blk/
|
|
|
|
swim_mod-y := swim.o swim_asm.o
|