Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching

Pull livepatching update from Jiri Kosina:
"livepatching kselftest output fix from Miroslav Benes"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching:
selftests/livepatch: Do not check order when using "comm" for dmesg checking

+1 -1
+1 -1
tools/testing/selftests/livepatch/functions.sh
··· 278 278 # help differentiate repeated testing runs. Remove them with a 279 279 # post-comparison sed filter. 280 280 281 - result=$(dmesg | comm -13 "$SAVED_DMESG" - | \ 281 + result=$(dmesg | comm --nocheck-order -13 "$SAVED_DMESG" - | \ 282 282 grep -e 'livepatch:' -e 'test_klp' | \ 283 283 grep -v '\(tainting\|taints\) kernel' | \ 284 284 sed 's/^\[[ 0-9.]*\] //')