Skip to content

Commit d3bd37f

Browse files
committed
Merge v5.6-rc5 into drm-next
Requested my mripard for some misc patches that need this as a base. Signed-off-by: Dave Airlie <[email protected]>
2 parents 6034745 + 2c523b3 commit d3bd37f

File tree

895 files changed

+9603
-7001
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

895 files changed

+9603
-7001
lines changed

COPYING

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@ In addition, other licenses may also apply. Please see:
1616
Documentation/process/license-rules.rst
1717

1818
for more details.
19+
20+
All contributions to the Linux Kernel are subject to this COPYING file.

CREDITS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -567,6 +567,11 @@ D: Original author of Amiga FFS filesystem
567567
S: Orlando, Florida
568568
S: USA
569569

570+
N: Paul Burton
571+
572+
W: https://pburton.com
573+
D: MIPS maintainer 2018-2020
574+
570575
N: Lennert Buytenhek
571576
572577
D: Original (2.4) rewrite of the ethernet bridging code

Documentation/admin-guide/acpi/fan_performance_states.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ may look as follows::
1818

1919
$ ls -l /sys/bus/acpi/devices/INT3404:00/
2020
total 0
21-
...
21+
...
2222
-r--r--r-- 1 root root 4096 Dec 13 20:38 state0
2323
-r--r--r-- 1 root root 4096 Dec 13 20:38 state1
2424
-r--r--r-- 1 root root 4096 Dec 13 20:38 state10
@@ -38,7 +38,7 @@ where each of the "state*" files represents one performance state of the fan
3838
and contains a colon-separated list of 5 integer numbers (fields) with the
3939
following interpretation::
4040

41-
control_percent:trip_point_index:speed_rpm:noise_level_mdb:power_mw
41+
control_percent:trip_point_index:speed_rpm:noise_level_mdb:power_mw
4242

4343
* ``control_percent``: The percent value to be used to set the fan speed to a
4444
specific level using the _FSL object (0-100).

Documentation/admin-guide/bootconfig.rst

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,30 @@ Or more shorter, written as following::
6262
In both styles, same key words are automatically merged when parsing it
6363
at boot time. So you can append similar trees or key-values.
6464

65+
Same-key Values
66+
---------------
67+
68+
It is prohibited that two or more values or arrays share a same-key.
69+
For example,::
70+
71+
foo = bar, baz
72+
foo = qux # !ERROR! we can not re-define same key
73+
74+
If you want to append the value to existing key as an array member,
75+
you can use ``+=`` operator. For example::
76+
77+
foo = bar, baz
78+
foo += qux
79+
80+
In this case, the key ``foo`` has ``bar``, ``baz`` and ``qux``.
81+
82+
However, a sub-key and a value can not co-exist under a parent key.
83+
For example, following config is NOT allowed.::
84+
85+
foo = value1
86+
foo.bar = value2 # !ERROR! subkey "bar" and value "value1" can NOT co-exist
87+
88+
6589
Comments
6690
--------
6791

@@ -102,9 +126,13 @@ Boot Kernel With a Boot Config
102126
==============================
103127

104128
Since the boot configuration file is loaded with initrd, it will be added
105-
to the end of the initrd (initramfs) image file. The Linux kernel decodes
106-
the last part of the initrd image in memory to get the boot configuration
107-
data.
129+
to the end of the initrd (initramfs) image file with size, checksum and
130+
12-byte magic word as below.
131+
132+
[initrd][bootconfig][size(u32)][checksum(u32)][#BOOTCONFIG\n]
133+
134+
The Linux kernel decodes the last part of the initrd image in memory to
135+
get the boot configuration data.
108136
Because of this "piggyback" method, there is no need to change or
109137
update the boot loader and the kernel image itself.
110138

Documentation/admin-guide/kernel-parameters.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,10 @@
136136
dynamic table installation which will install SSDT
137137
tables to /sys/firmware/acpi/tables/dynamic.
138138

139+
acpi_no_watchdog [HW,ACPI,WDT]
140+
Ignore the ACPI-based watchdog interface (WDAT) and let
141+
a native driver control the watchdog device instead.
142+
139143
acpi_rsdp= [ACPI,EFI,KEXEC]
140144
Pass the RSDP address to the kernel, mostly used
141145
on machines running EFI runtime service to boot the

Documentation/arm64/memory.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ this logic.
129129

130130
As a single binary will need to support both 48-bit and 52-bit VA
131131
spaces, the VMEMMAP must be sized large enough for 52-bit VAs and
132-
also must be sized large enought to accommodate a fixed PAGE_OFFSET.
132+
also must be sized large enough to accommodate a fixed PAGE_OFFSET.
133133

134134
Most code in the kernel should not need to consider the VA_BITS, for
135135
code that does need to know the VA size the variables are

Documentation/arm64/tagged-address-abi.rst

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,15 @@ The AArch64 Tagged Address ABI has two stages of relaxation depending
4444
how the user addresses are used by the kernel:
4545

4646
1. User addresses not accessed by the kernel but used for address space
47-
management (e.g. ``mmap()``, ``mprotect()``, ``madvise()``). The use
48-
of valid tagged pointers in this context is always allowed.
47+
management (e.g. ``mprotect()``, ``madvise()``). The use of valid
48+
tagged pointers in this context is allowed with the exception of
49+
``brk()``, ``mmap()`` and the ``new_address`` argument to
50+
``mremap()`` as these have the potential to alias with existing
51+
user addresses.
52+
53+
NOTE: This behaviour changed in v5.6 and so some earlier kernels may
54+
incorrectly accept valid tagged pointers for the ``brk()``,
55+
``mmap()`` and ``mremap()`` system calls.
4956

5057
2. User addresses accessed by the kernel (e.g. ``write()``). This ABI
5158
relaxation is disabled by default and the application thread needs to

Documentation/dev-tools/kunit/usage.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -551,6 +551,7 @@ options to your ``.config``:
551551
Once the kernel is built and installed, a simple
552552

553553
.. code-block:: bash
554+
554555
modprobe example-test
555556
556557
...will run the tests.

Documentation/devicetree/bindings/arm/arm,scmi.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Required sub-node properties:
102102
[1] Documentation/devicetree/bindings/clock/clock-bindings.txt
103103
[2] Documentation/devicetree/bindings/power/power-domain.yaml
104104
[3] Documentation/devicetree/bindings/thermal/thermal.txt
105-
[4] Documentation/devicetree/bindings/sram/sram.txt
105+
[4] Documentation/devicetree/bindings/sram/sram.yaml
106106
[5] Documentation/devicetree/bindings/reset/reset.txt
107107

108108
Example:

Documentation/devicetree/bindings/arm/arm,scpi.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Required properties:
109109
[0] http://infocenter.arm.com/help/topic/com.arm.doc.dui0922b/index.html
110110
[1] Documentation/devicetree/bindings/clock/clock-bindings.txt
111111
[2] Documentation/devicetree/bindings/thermal/thermal.txt
112-
[3] Documentation/devicetree/bindings/sram/sram.txt
112+
[3] Documentation/devicetree/bindings/sram/sram.yaml
113113
[4] Documentation/devicetree/bindings/power/power-domain.yaml
114114

115115
Example:

0 commit comments

Comments
 (0)