https://github.com/torvalds/linux
Revision 154f4fb7a0b8b0d8ad655e4dc3063069bcf30f14 authored by David S. Miller on 01 September 2019, 01:45:35 UTC, committed by David S. Miller on 01 September 2019, 01:45:35 UTC
Vladimir Oltean says:

====================
Fix issues in tc-taprio and tc-cbs

This series fixes one panic and one WARN_ON found in the tc-taprio
qdisc, while trying to apply it:

- On an interface which is not multi-queue
- On an interface which has no carrier

The tc-cbs was also visually found to suffer of the same issue as
tc-taprio, and the fix was only compile-tested in that case.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>
2 parent s 5f81d54 + 1c6c09a
Raw File
Tip revision: 154f4fb7a0b8b0d8ad655e4dc3063069bcf30f14 authored by David S. Miller on 01 September 2019, 01:45:35 UTC
Merge branch 'Fix-issues-in-tc-taprio-and-tc-cbs'
Tip revision: 154f4fb
xz_wrap.sh
#!/bin/sh
#
# This is a wrapper for xz to compress the kernel image using appropriate
# compression options depending on the architecture.
#
# Author: Lasse Collin <lasse.collin@tukaani.org>
#
# This file has been put into the public domain.
# You can do whatever you want with this file.
#

BCJ=
LZMA2OPTS=

case $SRCARCH in
	x86)            BCJ=--x86 ;;
	powerpc)        BCJ=--powerpc ;;
	ia64)           BCJ=--ia64; LZMA2OPTS=pb=4 ;;
	arm)            BCJ=--arm ;;
	sparc)          BCJ=--sparc ;;
esac

exec xz --check=crc32 $BCJ --lzma2=$LZMA2OPTS,dict=32MiB
back to top