Skip to content

Commit 556be4f

Browse files
Merge tag 'v6.12.57-rt14' into nilrt/master/6.12
v6.12.57-rt14 Signed-off-by: Erick Shepherd <erick.shepherd@ni.com>
2 parents 2c02ee9 + dd1490b commit 556be4f

941 files changed

Lines changed: 9853 additions & 5016 deletions

File tree

Some content is hidden

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

Documentation/admin-guide/kernel-parameters.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5923,6 +5923,9 @@
59235923

59245924
rootflags= [KNL] Set root filesystem mount option string
59255925

5926+
initramfs_options= [KNL]
5927+
Specify mount options for for the initramfs mount.
5928+
59265929
rootfstype= [KNL] Set root filesystem type
59275930

59285931
rootwait [KNL] Wait (indefinitely) for root device to show up.

Documentation/admin-guide/laptops/lg-laptop.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ This value is reset to 100 when the kernel boots.
4848
Fan mode
4949
--------
5050

51-
Writing 1/0 to /sys/devices/platform/lg-laptop/fan_mode disables/enables
52-
the fan silent mode.
51+
Writing 0/1/2 to /sys/devices/platform/lg-laptop/fan_mode sets fan mode to
52+
Optimal/Silent/Performance respectively.
5353

5454

5555
USB charge

Documentation/arch/arm64/silicon-errata.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,8 @@ stable kernels.
198198
+----------------+-----------------+-----------------+-----------------------------+
199199
| ARM | Neoverse-V3 | #3312417 | ARM64_ERRATUM_3194386 |
200200
+----------------+-----------------+-----------------+-----------------------------+
201+
| ARM | Neoverse-V3AE | #3312417 | ARM64_ERRATUM_3194386 |
202+
+----------------+-----------------+-----------------+-----------------------------+
201203
| ARM | MMU-500 | #841119,826419 | N/A |
202204
+----------------+-----------------+-----------------+-----------------------------+
203205
| ARM | MMU-600 | #1076982,1209401| N/A |

Documentation/devicetree/bindings/phy/rockchip-inno-csi-dphy.yaml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,24 @@ required:
5757
- clocks
5858
- clock-names
5959
- '#phy-cells'
60-
- power-domains
6160
- resets
6261
- reset-names
6362
- rockchip,grf
6463

64+
allOf:
65+
- if:
66+
properties:
67+
compatible:
68+
contains:
69+
enum:
70+
- rockchip,px30-csi-dphy
71+
- rockchip,rk1808-csi-dphy
72+
- rockchip,rk3326-csi-dphy
73+
- rockchip,rk3368-csi-dphy
74+
then:
75+
required:
76+
- power-domains
77+
6578
additionalProperties: false
6679

6780
examples:

Documentation/devicetree/bindings/usb/fsl,imx8mp-dwc3.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,21 @@ required:
8585
- reg
8686
- "#address-cells"
8787
- "#size-cells"
88-
- dma-ranges
8988
- ranges
9089
- clocks
9190
- clock-names
9291
- interrupts
9392
- power-domains
9493

94+
allOf:
95+
- if:
96+
properties:
97+
compatible:
98+
const: fsl,imx8mp-dwc3
99+
then:
100+
required:
101+
- dma-ranges
102+
95103
additionalProperties: false
96104

97105
examples:

Documentation/networking/seg6-sysctl.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ seg6_require_hmac - INTEGER
2525

2626
Default is 0.
2727

28+
/proc/sys/net/ipv6/seg6_* variables:
29+
====================================
30+
2831
seg6_flowlabel - INTEGER
2932
Controls the behaviour of computing the flowlabel of outer
3033
IPv6 header in case of SR T.encaps

Documentation/sphinx/kernel_abi.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,11 @@
4242
from docutils import nodes, statemachine
4343
from docutils.statemachine import ViewList
4444
from docutils.parsers.rst import directives, Directive
45-
from docutils.utils.error_reporting import ErrorString
4645
from sphinx.util.docutils import switch_source_input
4746

47+
def ErrorString(exc): # Shamelessly stolen from docutils
48+
return f'{exc.__class__.__name}: {exc}'
49+
4850
__version__ = '1.0'
4951

5052
def setup(app):

Documentation/sphinx/kernel_feat.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@
4040
from docutils import nodes, statemachine
4141
from docutils.statemachine import ViewList
4242
from docutils.parsers.rst import directives, Directive
43-
from docutils.utils.error_reporting import ErrorString
4443
from sphinx.util.docutils import switch_source_input
4544

45+
def ErrorString(exc): # Shamelessly stolen from docutils
46+
return f'{exc.__class__.__name}: {exc}'
47+
4648
__version__ = '1.0'
4749

4850
def setup(app):

Documentation/sphinx/kernel_include.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,15 @@
3434
import os.path
3535

3636
from docutils import io, nodes, statemachine
37-
from docutils.utils.error_reporting import SafeString, ErrorString
3837
from docutils.parsers.rst import directives
3938
from docutils.parsers.rst.directives.body import CodeBlock, NumberLines
4039
from docutils.parsers.rst.directives.misc import Include
4140

4241
__version__ = '1.0'
4342

43+
def ErrorString(exc): # Shamelessly stolen from docutils
44+
return f'{exc.__class__.__name}: {exc}'
45+
4446
# ==============================================================================
4547
def setup(app):
4648
# ==============================================================================
@@ -111,7 +113,7 @@ def _run(self):
111113
raise self.severe('Problems with "%s" directive path:\n'
112114
'Cannot encode input file path "%s" '
113115
'(wrong locale?).' %
114-
(self.name, SafeString(path)))
116+
(self.name, path))
115117
except IOError as error:
116118
raise self.severe('Problems with "%s" directive path:\n%s.' %
117119
(self.name, ErrorString(error)))

Documentation/sphinx/maintainers_include.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@
2222
import os.path
2323

2424
from docutils import statemachine
25-
from docutils.utils.error_reporting import ErrorString
2625
from docutils.parsers.rst import Directive
2726
from docutils.parsers.rst.directives.misc import Include
2827

28+
def ErrorString(exc): # Shamelessly stolen from docutils
29+
return f'{exc.__class__.__name}: {exc}'
30+
2931
__version__ = '1.0'
3032

3133
def setup(app):

0 commit comments

Comments
 (0)