Skip to content

Commit 85b475a

Browse files
committed
Merge tag 'kvm-s390-master-6.3-1' of https://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux into HEAD
A small fix that repairs the external loop detection code for PV guests.
2 parents 80962ec + 21f27df commit 85b475a

File tree

752 files changed

+8341
-5281
lines changed

Some content is hidden

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

752 files changed

+8341
-5281
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ modules.order
7878
# RPM spec file (make rpm-pkg)
7979
#
8080
/*.spec
81+
/rpmbuild/
8182

8283
#
8384
# Debian directory (make deb-pkg)

.mailmap

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Alexander Lobakin <[email protected]> <[email protected]>
2828
Alexander Mikhalitsyn <[email protected]> <[email protected]>
2929
Alexander Mikhalitsyn <[email protected]> <[email protected]>
3030
31+
3132
Alexei Starovoitov <[email protected]> <[email protected]>
3233
Alexei Starovoitov <[email protected]> <[email protected]>
3334
Alexei Starovoitov <[email protected]> <[email protected]>
@@ -121,7 +122,7 @@ Dengcheng Zhu <[email protected]> <[email protected]>
121122
122123
123124
124-
Dikshita Agarwal <[email protected].com> <[email protected]>
125+
Dikshita Agarwal <quic_dikshita@quicinc.com> <[email protected]>
125126
Dmitry Baryshkov <[email protected]>
126127
Dmitry Baryshkov <[email protected]> <[[email protected]]>
127128
@@ -132,6 +133,8 @@ Dmitry Safonov <[email protected]> <[email protected]>
132133
Domen Puncer <[email protected]>
133134
Douglas Gilbert <[email protected]>
134135
Ed L. Cashin <[email protected]>
136+
Enric Balletbo i Serra <[email protected]> <[email protected]>
137+
Enric Balletbo i Serra <[email protected]> <[email protected]>
135138
136139
137140
Evgeniy Polyakov <[email protected]>
@@ -194,6 +197,7 @@ Jan Glauber <[email protected]> <[email protected]>
194197
195198
196199
200+
197201
198202
199203
@@ -213,6 +217,9 @@ Jens Axboe <[email protected]>
213217
Jens Osterkamp <[email protected]>
214218
215219
220+
221+
222+
216223
217224
218225
@@ -374,6 +381,7 @@ Quentin Monnet <[email protected]> <[email protected]>
374381
375382
376383
384+
377385
Rajesh Shah <[email protected]>
378386
Ralf Baechle <[email protected]>
379387
Ralf Wildenhues <[email protected]>
@@ -382,6 +390,9 @@ Rémi Denis-Courmont <[email protected]>
382390
383391
Ricardo Ribalda <[email protected]> Ricardo Ribalda Delgado <[email protected]>
384392
393+
394+
395+
385396
386397
387398
@@ -392,6 +403,7 @@ Ross Zwisler <[email protected]> <[email protected]>
392403
Rudolf Marek <[email protected]>
393404
Rui Saraiva <[email protected]>
394405
Sachin P Sant <[email protected]>
406+
Sai Prakash Ranjan <[email protected]> <[email protected]>
395407
396408
Sam Ravnborg <[email protected]>
397409
Sankeerth Billakanti <[email protected]> <[email protected]>
@@ -432,6 +444,10 @@ Thomas Graf <[email protected]>
432444
433445
Thomas Pedersen <[email protected]>
434446
447+
448+
449+
450+
435451
436452
Tony Luck <[email protected]>
437453

Documentation/driver-api/vfio.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ group and can access them as follows::
242242
VFIO User API
243243
-------------------------------------------------------------------------------
244244

245-
Please see include/linux/vfio.h for complete API documentation.
245+
Please see include/uapi/linux/vfio.h for complete API documentation.
246246

247247
VFIO bus driver API
248248
-------------------------------------------------------------------------------

Documentation/filesystems/vfs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1222,7 +1222,7 @@ defined:
12221222
return
12231223
-ECHILD and it will be called again in ref-walk mode.
12241224

1225-
``_weak_revalidate``
1225+
``d_weak_revalidate``
12261226
called when the VFS needs to revalidate a "jumped" dentry. This
12271227
is called when a path-walk ends at dentry that was not acquired
12281228
by doing a lookup in the parent directory. This includes "/",

Documentation/firmware-guide/acpi/enumeration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ possible we decided to do following:
1919
platform devices.
2020

2121
- Devices behind real busses where there is a connector resource
22-
are represented as struct spi_device or struct i2c_device. Note
22+
are represented as struct spi_device or struct i2c_client. Note
2323
that standard UARTs are not busses so there is no struct uart_device,
2424
although some of them may be represented by struct serdev_device.
2525

Documentation/maintainer/rebasing-and-merging.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,7 @@ point rather than some random spot. If your upstream-bound branch has
213213
emptied entirely into the mainline during the merge window, you can pull it
214214
forward with a command like::
215215

216-
git merge v5.2-rc1^0
217-
218-
The "^0" will cause Git to do a fast-forward merge (which should be
219-
possible in this situation), thus avoiding the addition of a spurious merge
220-
commit.
216+
git merge --ff-only v5.2-rc1
221217

222218
The guidelines laid out above are just that: guidelines. There will always
223219
be situations that call out for a different solution, and these guidelines

Documentation/mm/hugetlbfs_reserv.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Hugetlbfs Reservation
55
Overview
66
========
77

8-
Huge pages as described at Documentation/mm/hugetlbpage.rst are typically
9-
preallocated for application use. These huge pages are instantiated in a
10-
task's address space at page fault time if the VMA indicates huge pages are
11-
to be used. If no huge page exists at page fault time, the task is sent
8+
Huge pages as described at Documentation/admin-guide/mm/hugetlbpage.rst are
9+
typically preallocated for application use. These huge pages are instantiated
10+
in a task's address space at page fault time if the VMA indicates huge pages
11+
are to be used. If no huge page exists at page fault time, the task is sent
1212
a SIGBUS and often dies an unhappy death. Shortly after huge page support
1313
was added, it was determined that it would be better to detect a shortage
1414
of huge pages at mmap() time. The idea is that if there were not enough

Documentation/mm/physical_memory.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ one of the types described below.
6666
also populated on boot using one of ``kernelcore``, ``movablecore`` and
6767
``movable_node`` kernel command line parameters. See
6868
Documentation/mm/page_migration.rst and
69-
Documentation/admin-guide/mm/memory_hotplug.rst for additional details.
69+
Documentation/admin-guide/mm/memory-hotplug.rst for additional details.
7070

7171
* ``ZONE_DEVICE`` represents memory residing on devices such as PMEM and GPU.
7272
It has different characteristics than RAM zone types and it exists to provide

Documentation/netlink/genetlink-c.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
1+
# SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)
22
%YAML 1.2
33
---
44
$id: http://kernel.org/schemas/netlink/genetlink-c.yaml#

Documentation/netlink/genetlink-legacy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
1+
# SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)
22
%YAML 1.2
33
---
44
$id: http://kernel.org/schemas/netlink/genetlink-legacy.yaml#

0 commit comments

Comments
 (0)