https://source.android.com/docs/security/bulletin/2024-08-01 CVE-2024-36971 * tag 'ASB-2024-08-05_4.19-stable' of https://android.googlesource.com/kernel/common: (2363 commits) Linux 4.19.318 i2c: rcar: bring hardware to known state when probing nilfs2: fix kernel bug on rename operation of broken directory SUNRPC: Fix RPC client cleaned up the freed pipefs dentries tcp: avoid too many retransmit packets tcp: use signed arithmetic in tcp_rtx_probe0_timed_out() net: tcp: fix unexcepted socket die when snd_wnd is 0 tcp: refactor tcp_retransmit_timer() libceph: fix race between delayed_work() and ceph_monc_stop() hpet: Support 32-bit userspace USB: core: Fix duplicate endpoint bug by clearing reserved bits in the descriptor usb: gadget: configfs: Prevent OOB read/write in usb_string_copy() USB: Add USB_QUIRK_NO_SET_INTF quirk for START BP-850k USB: serial: option: add Rolling RW350-GL variants USB: serial: option: add Netprisma LCUK54 series modules USB: serial: option: add support for Foxconn T99W651 USB: serial: option: add Fibocom FM350-GL USB: serial: option: add Telit FN912 rmnet compositions USB: serial: option: add Telit generic core-dump composition ARM: davinci: Convert comma to semicolon ... Conflicts: Documentation/devicetree/bindings/sound/rt5645.txt android/abi_gki_aarch64.xml drivers/clk/qcom/clk-rcg2.c drivers/hwtracing/coresight/coresight-etm4x.c drivers/leds/leds-pwm.c drivers/mmc/core/host.c drivers/mmc/core/sdio.c drivers/mmc/host/cqhci.c drivers/net/ethernet/qualcomm/rmnet/rmnet_config.c drivers/rpmsg/qcom_glink_native.c drivers/scsi/ufs/ufshcd.c drivers/thermal/thermal_core.c drivers/usb/dwc3/core.c drivers/usb/gadget/function/f_ncm.c fs/f2fs/gc.c fs/pstore/ram_core.c include/linux/fs.h include/linux/timer.h include/net/tcp.h init/initramfs.c kernel/events/core.c kernel/sched/idle.c kernel/time/timer.c mm/page_alloc.c net/wireless/scan.c scripts/checkpatch.pl Change-Id: Ice08f3ba5dc64a093bc381710ef2408d963cb983
50 lines
1.6 KiB
Makefile
50 lines
1.6 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.
|
|
#
|
|
|
|
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_BLK_DEV_RAM) += brd.o
|
|
obj-$(CONFIG_BLK_DEV_LOOP) += loop.o
|
|
obj-$(CONFIG_BLK_DEV_DAC960) += DAC960.o
|
|
obj-$(CONFIG_XILINX_SYSACE) += xsysace.o
|
|
obj-$(CONFIG_CDROM_PKTCDVD) += pktcdvd.o
|
|
obj-$(CONFIG_SUNVDC) += sunvdc.o
|
|
obj-$(CONFIG_BLK_DEV_SKD) += skd.o
|
|
|
|
obj-$(CONFIG_BLK_DEV_UMEM) += umem.o
|
|
obj-$(CONFIG_BLK_DEV_NBD) += nbd.o
|
|
obj-$(CONFIG_BLK_DEV_CRYPTOLOOP) += cryptoloop.o
|
|
obj-$(CONFIG_VIRTIO_BLK) += virtio_blk.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_NULL_BLK) += null_blk.o
|
|
null_blk-objs := null_blk_main.o
|
|
null_blk-$(CONFIG_BLK_DEV_ZONED) += null_blk_zoned.o
|
|
|
|
skd-y := skd_main.o
|
|
swim_mod-y := swim.o swim_asm.o
|
|
|
|
obj-$(CONFIG_VSERVICES_BLOCK_SERVER) += vs_block_server.o
|
|
CFLAGS_vs_block_server.o += -Werror
|
|
obj-$(CONFIG_VSERVICES_BLOCK_CLIENT) += vs_block_client.o
|
|
CFLAGS_vs_block_client.o += -Werror
|