Skip to content

Commit b563ea6

Browse files
committed
Merge branch 'linus' into timers/2038
Merge upstream to pick up changes on which pending patches depend on.
2 parents 4fe581d + 73fcb1a commit b563ea6

File tree

1,311 files changed

+14349
-7765
lines changed

Some content is hidden

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

1,311 files changed

+14349
-7765
lines changed

Documentation/ABI/testing/sysfs-class-cxl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,3 +244,11 @@ Description: read only
244244
Returns 1 if the psl timebase register is synchronized
245245
with the core timebase register, 0 otherwise.
246246
Users: https://github.com/ibm-capi/libcxl
247+
248+
What: /sys/class/cxl/<card>/tunneled_ops_supported
249+
Date: May 2018
250+
251+
Description: read only
252+
Returns 1 if tunneled operations are supported in capi mode,
253+
0 otherwise.
254+
Users: https://github.com/ibm-capi/libcxl

Documentation/admin-guide/pm/intel_pstate.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ feature enabled.]
145145

146146
In this mode ``intel_pstate`` registers utilization update callbacks with the
147147
CPU scheduler in order to run a P-state selection algorithm, either
148-
``powersave`` or ``performance``, depending on the ``scaling_cur_freq`` policy
148+
``powersave`` or ``performance``, depending on the ``scaling_governor`` policy
149149
setting in ``sysfs``. The current CPU frequency information to be made
150150
available from the ``scaling_cur_freq`` policy attribute in ``sysfs`` is
151151
periodically updated by those utilization update callbacks too.

Documentation/admin-guide/pm/sleep-states.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Sleep States That Can Be Supported
1515
==================================
1616

1717
Depending on its configuration and the capabilities of the platform it runs on,
18-
the Linux kernel can support up to four system sleep states, includig
18+
the Linux kernel can support up to four system sleep states, including
1919
hibernation and up to three variants of system suspend. The sleep states that
2020
can be supported by the kernel are listed below.
2121

Documentation/bpf/bpf_devel_QA.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,6 +557,14 @@ A: Although LLVM IR generation and optimization try to stay architecture
557557
pulls in some header files containing file scope host assembly codes.
558558
- You can add "-fno-jump-tables" to work around the switch table issue.
559559

560-
Otherwise, you can use bpf target.
560+
Otherwise, you can use bpf target. Additionally, you _must_ use bpf target
561+
when:
562+
563+
- Your program uses data structures with pointer or long / unsigned long
564+
types that interface with BPF helpers or context data structures. Access
565+
into these structures is verified by the BPF verifier and may result
566+
in verification failures if the native architecture is not aligned with
567+
the BPF architecture, e.g. 64-bit. An example of this is
568+
BPF_PROG_TYPE_SK_MSG require '-target bpf'
561569

562570
Happy BPF hacking!

Documentation/core-api/kernel-api.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,19 @@ Sorting
136136
.. kernel-doc:: lib/list_sort.c
137137
:export:
138138

139+
Text Searching
140+
--------------
141+
142+
.. kernel-doc:: lib/textsearch.c
143+
:doc: ts_intro
144+
145+
.. kernel-doc:: lib/textsearch.c
146+
:export:
147+
148+
.. kernel-doc:: include/linux/textsearch.h
149+
:functions: textsearch_find textsearch_next \
150+
textsearch_get_pattern textsearch_get_pattern_len
151+
139152
UUID/GUID
140153
---------
141154

Documentation/device-mapper/thin-provisioning.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,10 @@ i) Constructor
264264
data device, but just remove the mapping.
265265

266266
read_only: Don't allow any changes to be made to the pool
267-
metadata.
267+
metadata. This mode is only available after the
268+
thin-pool has been created and first used in full
269+
read/write mode. It cannot be specified on initial
270+
thin-pool creation.
268271

269272
error_if_no_space: Error IOs, instead of queueing, if no space.
270273

Documentation/devicetree/bindings/ata/ahci-platform.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ compatible:
3030
Optional properties:
3131
- dma-coherent : Present if dma operations are coherent
3232
- clocks : a list of phandle + clock specifier pairs
33-
- resets : a list of phandle + reset specifier pairs
3433
- target-supply : regulator for SATA target power
3534
- phys : reference to the SATA PHY node
3635
- phy-names : must be "sata-phy"

Documentation/devicetree/bindings/display/panel/panel-common.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Display Timings
3838
require specific display timings. The panel-timing subnode expresses those
3939
timings as specified in the timing subnode section of the display timing
4040
bindings defined in
41-
Documentation/devicetree/bindings/display/display-timing.txt.
41+
Documentation/devicetree/bindings/display/panel/display-timing.txt.
4242

4343

4444
Connectivity

Documentation/devicetree/bindings/dma/renesas,rcar-dmac.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Required Properties:
2626
- "renesas,dmac-r8a7794" (R-Car E2)
2727
- "renesas,dmac-r8a7795" (R-Car H3)
2828
- "renesas,dmac-r8a7796" (R-Car M3-W)
29+
- "renesas,dmac-r8a77965" (R-Car M3-N)
2930
- "renesas,dmac-r8a77970" (R-Car V3M)
3031
- "renesas,dmac-r8a77980" (R-Car V3H)
3132

Documentation/devicetree/bindings/input/atmel,maxtouch.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ Required properties:
44
- compatible:
55
atmel,maxtouch
66

7+
The following compatibles have been used in various products but are
8+
deprecated:
9+
atmel,qt602240_ts
10+
atmel,atmel_mxt_ts
11+
atmel,atmel_mxt_tp
12+
atmel,mXT224
13+
714
- reg: The I2C address of the device
815

916
- interrupts: The sink for the touchpad's IRQ output

0 commit comments

Comments
 (0)