Commit a4345a7c authored by Paolo Bonzini's avatar Paolo Bonzini
Browse files

Merge tag 'kvmarm-fixes-5.13-1' of...

Merge tag 'kvmarm-fixes-5.13-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm into HEAD

KVM/arm64 fixes for 5.13, take #1

- Fix regression with irqbypass not restarting the guest on failed connect
- Fix regression with debug register decoding resulting in overlapping access
- Commit exception state on exit to usrspace
- Fix the MMU notifier return values
- Add missing 'static' qualifiers in the new host stage-2 code
parents ce7ea0cf cb853ded
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -48,14 +48,11 @@
*.xz
*.zst
Module.symvers
modules.builtin
modules.order

#
# Top-level generic files
#
/tags
/TAGS
/linux
/modules-only.symvers
/vmlinux
@@ -66,6 +63,7 @@ modules.order
/vmlinuz
/System.map
/Module.markers
/modules.builtin
/modules.builtin.modinfo
/modules.nsdeps

@@ -114,6 +112,10 @@ patches-*
patches
series

# ctags files
tags
TAGS

# cscope files
cscope.*
ncscope.*
+5 −0
Original line number Diff line number Diff line
@@ -1874,6 +1874,11 @@ S: Krosenska' 543
S: 181 00 Praha 8
S: Czech Republic

N: Murali Karicheri
E: m-karicheri2@ti.com
D: Keystone NetCP driver
D: Keystone PCIe host controller driver

N: Jan "Yenya" Kasprzak
E: kas@fi.muni.cz
D: Author of the COSA/SRP sync serial board driver.
+30 −0
Original line number Diff line number Diff line
What:		/sys/bus/event_source/devices/dsa*/format
Date:		April 2021
KernelVersion:  5.13
Contact:	Tom Zanussi <tom.zanussi@linux.intel.com>
Description:	Read-only.  Attribute group to describe the magic bits
		that go into perf_event_attr.config or
		perf_event_attr.config1 for the IDXD DSA pmu.  (See also
		ABI/testing/sysfs-bus-event_source-devices-format).

		Each attribute in this group defines a bit range in
		perf_event_attr.config or perf_event_attr.config1.
		All supported attributes are listed below (See the
		IDXD DSA Spec for possible attribute values)::

		    event_category = "config:0-3"    - event category
		    event          = "config:4-31"   - event ID

		    filter_wq      = "config1:0-31"  - workqueue filter
		    filter_tc      = "config1:32-39" - traffic class filter
		    filter_pgsz    = "config1:40-43" - page size filter
		    filter_sz      = "config1:44-51" - transfer size filter
		    filter_eng     = "config1:52-59" - engine filter

What:		/sys/bus/event_source/devices/dsa*/cpumask
Date:		April 2021
KernelVersion:  5.13
Contact:	Tom Zanussi <tom.zanussi@linux.intel.com>
Description:    Read-only.  This file always returns the cpu to which the
                IDXD DSA pmu is bound for access to all dsa pmu
		performance monitoring events.
+16 −0
Original line number Diff line number Diff line
@@ -58,3 +58,19 @@ Description:

		Indicates the mux id associated to the qmimux network interface
		during its creation.

What:		/sys/class/net/<iface>/qmi/pass_through
Date:		January 2021
KernelVersion:	5.12
Contact:	Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
Description:
		Boolean.  Default: 'N'

		Set this to 'Y' to enable 'pass-through' mode, allowing packets
		in MAP format to be passed on to the stack.

		Normally the rmnet driver (CONFIG_RMNET) is then used to process
		and demultiplex these packets.

		'Pass-through' mode can be enabled when the device is in
		'raw-ip' mode only.
+1 −1
Original line number Diff line number Diff line
@@ -285,7 +285,7 @@ Description: Disable L3 cache indices

		All AMD processors with L3 caches provide this functionality.
		For details, see BKDGs at
		http://developer.amd.com/documentation/guides/Pages/default.aspx
                https://www.amd.com/en/support/tech-docs?keyword=bios+kernel


What:		/sys/devices/system/cpu/cpufreq/boost
Loading