forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'kvmarm-fixes-5.9-1' of git://git.kernel.org/pub/scm/linux/…
…kernel/git/kvmarm/kvmarm into HEAD KVM/arm64 fixes for Linux 5.9, take #1 - Multiple stolen time fixes, with a new capability to match x86 - Fix for hugetlbfs mappings when PUD and PMD are the same level - Fix for hugetlbfs mappings when PTE mappings are enforced (dirty logging, for example) - Fix tracing output of 64bit values
- Loading branch information
Showing
2,166 changed files
with
52,278 additions
and
18,837 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,16 @@ | |
# This list is used by git-shortlog to fix a few botched name translations | ||
# in the git archive, either because the author's full name was messed up | ||
# and/or not always written the same way, making contributions from the | ||
# same person appearing not to be so or badly displayed. | ||
# same person appearing not to be so or badly displayed. Also allows for | ||
# old email addresses to map to new email addresses. | ||
# | ||
# For format details, see "MAPPING AUTHORS" in "man git-shortlog". | ||
# | ||
# Please keep this list dictionary sorted. | ||
# | ||
# This comment is parsed by git-shortlog: | ||
# repo-abbrev: /pub/scm/linux/kernel/git/ | ||
# | ||
|
||
Aaron Durbin <[email protected]> | ||
Adam Oldham <[email protected]> | ||
Adam Radford <[email protected]> | ||
|
@@ -99,6 +104,7 @@ Gerald Schaefer <[email protected]> <[email protected]> | |
Greg Kroah-Hartman <greg@echidna.(none)> | ||
Greg Kroah-Hartman <[email protected]> | ||
Greg Kroah-Hartman <[email protected]> | ||
Greg Kurz <[email protected]> <[email protected]> | ||
Gregory CLEMENT <[email protected]> <[email protected]> | ||
Hanjun Guo <[email protected]> <[email protected]> | ||
Heiko Carstens <[email protected]> <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -202,6 +202,25 @@ Description: | |
functions. See the section named 'NVDIMM Root Device _DSMs' in | ||
the ACPI specification. | ||
|
||
What: /sys/bus/nd/devices/ndbusX/nfit/firmware_activate_noidle | ||
Date: Apr, 2020 | ||
KernelVersion: v5.8 | ||
Contact: [email protected] | ||
Description: | ||
(RW) The Intel platform implementation of firmware activate | ||
support exposes an option let the platform force idle devices in | ||
the system over the activation event, or trust that the OS will | ||
do it. The safe default is to let the platform force idle | ||
devices since the kernel is already in a suspend state, and on | ||
the chance that a driver does not properly quiesce bus-mastering | ||
after a suspend callback the platform will handle it. However, | ||
the activation might abort if, for example, platform firmware | ||
determines that the activation time exceeds the max PCI-E | ||
completion timeout. Since the platform does not know whether the | ||
OS is running the activation from a suspend context it aborts, | ||
but if the system owner trusts driver suspend callback to be | ||
sufficient then 'firmware_activation_noidle' can be | ||
enabled to bypass the activation abort. | ||
|
||
What: /sys/bus/nd/devices/regionX/nfit/range_index | ||
Date: Jun, 2015 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
The libnvdimm sub-system implements a common sysfs interface for | ||
platform nvdimm resources. See Documentation/driver-api/nvdimm/. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
What: /sys/bus/i2c/devices/xxx/fw_version | ||
Date: Aug 2020 | ||
Contact: [email protected] | ||
Description: Reports the firmware version provided by the touchscreen, for example "00_T6" on a EXC80H60 | ||
|
||
Access: Read | ||
Valid values: Represented as string | ||
|
||
What: /sys/bus/i2c/devices/xxx/model | ||
Date: Aug 2020 | ||
Contact: [email protected] | ||
Description: Reports the model identification provided by the touchscreen, for example "Orion_1320" on a EXC80H60 | ||
|
||
Access: Read | ||
Valid values: Represented as string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -229,7 +229,9 @@ Date: August 2017 | |
Contact: "Jaegeuk Kim" <[email protected]> | ||
Description: Do background GC agressively when set. When gc_urgent = 1, | ||
background thread starts to do GC by given gc_urgent_sleep_time | ||
interval. It is set to 0 by default. | ||
interval. When gc_urgent = 2, F2FS will lower the bar of | ||
checking idle in order to process outstanding discard commands | ||
and GC a little bit aggressively. It is set to 0 by default. | ||
|
||
What: /sys/fs/f2fs/<disk>/gc_urgent_sleep_time | ||
Date: August 2017 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.