https://github.com/torvalds/linux
Revision cf48f79b74de2bf900d27c924528bb41d73689c3 authored by Linus Torvalds on 26 July 2020, 15:59:15 UTC, committed by Linus Torvalds on 26 July 2020, 15:59:15 UTC
Pull SCSI fix from James Bottomley:
 "Small core patch to fix a corner case bug: we forgot to run the queues
  to handle starvation in the error exit from the scsi_queue_rq routine,
  which can lead to hangs on error conditions"

* tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi:
  scsi: core: Run queue in case of I/O resource contention failure
2 parent s 04300d6 + 3f0dcfb
Raw File
Tip revision: cf48f79b74de2bf900d27c924528bb41d73689c3 authored by Linus Torvalds on 26 July 2020, 15:59:15 UTC
Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi into master
Tip revision: cf48f79
Makefile.kcov
# SPDX-License-Identifier: GPL-2.0-only
ifdef CONFIG_KCOV

kcov-flags-$(CONFIG_CC_HAS_SANCOV_TRACE_PC)	+= -fsanitize-coverage=trace-pc
kcov-flags-$(CONFIG_KCOV_ENABLE_COMPARISONS)	+= -fsanitize-coverage=trace-cmp
kcov-flags-$(CONFIG_GCC_PLUGIN_SANCOV)		+= -fplugin=$(objtree)/scripts/gcc-plugins/sancov_plugin.so

export CFLAGS_KCOV := $(kcov-flags-y)

endif
back to top