forked from kernel-patches/bpf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'kernel-patches:bpf-next_base' into bpf-next_base
- Loading branch information
Showing
12,487 changed files
with
899,599 additions
and
207,980 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
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
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 |
---|---|---|
|
@@ -531,6 +531,13 @@ S: Kopmansg 2 | |
S: 411 13 Goteborg | ||
S: Sweden | ||
|
||
N: Daniel Bristot de Oliveira | ||
D: Scheduler contributions, notably: SCHED_DEADLINE | ||
D: Real-time Linux Analysis | ||
D: Runtime Verification | ||
D: OS Noise and Latency Tracers | ||
S: Brazil and Italy | ||
|
||
N: Paul Bristow | ||
E: [email protected] | ||
W: https://paulbristow.net/linux/idefloppy.html | ||
|
@@ -796,6 +803,11 @@ E: [email protected] | |
D: Ralink rt2x00 WLAN driver | ||
S: Belas, Portugal | ||
|
||
N: Benoît Cousson | ||
E: [email protected] | ||
D: TI OMAP Devicetree platforms | ||
D: TI OMAP HWMOD boards | ||
|
||
N: Alan Cox | ||
W: http://www.linux.org.uk/diary/ | ||
D: Linux Networking (0.99.10->2.0.29) | ||
|
@@ -1214,6 +1226,10 @@ D: UDF filesystem | |
S: (ask for current address) | ||
S: USA | ||
|
||
N: Larry Finger | ||
E: [email protected] | ||
D: Maintainer of wireless drivers, too many to list here | ||
|
||
N: Jürgen Fischer | ||
E: [email protected] | ||
D: Author of Adaptec AHA-152x SCSI driver | ||
|
@@ -3146,9 +3162,11 @@ S: Triftstra=DFe 55 | |
S: 13353 Berlin | ||
S: Germany | ||
|
||
N: Gustavo Pimental | ||
N: Gustavo Pimentel | ||
E: [email protected] | ||
D: PCI driver for Synopsys DesignWare | ||
D: Synopsys DesignWare eDMA driver | ||
D: Synopsys DesignWare xData traffic generator | ||
|
||
N: Emanuel Pirker | ||
E: [email protected] | ||
|
@@ -4362,6 +4380,10 @@ N: Haojian Zhuang | |
E: [email protected] | ||
D: MMP support | ||
|
||
N: Tsahee Zidenberg | ||
E: [email protected] | ||
D: Annapurna Labs Alpine Architecture | ||
|
||
N: Richard Zidlicky | ||
E: [email protected], [email protected] | ||
W: http://www.geocities.com/rdzidlic | ||
|
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 |
---|---|---|
|
@@ -21,6 +21,59 @@ Description: | |
device is offset from the internal allocation unit's | ||
natural alignment. | ||
|
||
What: /sys/block/<disk>/atomic_write_max_bytes | ||
Date: February 2024 | ||
Contact: Himanshu Madhani <[email protected]> | ||
Description: | ||
[RO] This parameter specifies the maximum atomic write | ||
size reported by the device. This parameter is relevant | ||
for merging of writes, where a merged atomic write | ||
operation must not exceed this number of bytes. | ||
This parameter may be greater than the value in | ||
atomic_write_unit_max_bytes as | ||
atomic_write_unit_max_bytes will be rounded down to a | ||
power-of-two and atomic_write_unit_max_bytes may also be | ||
limited by some other queue limits, such as max_segments. | ||
This parameter - along with atomic_write_unit_min_bytes | ||
and atomic_write_unit_max_bytes - will not be larger than | ||
max_hw_sectors_kb, but may be larger than max_sectors_kb. | ||
|
||
|
||
What: /sys/block/<disk>/atomic_write_unit_min_bytes | ||
Date: February 2024 | ||
Contact: Himanshu Madhani <[email protected]> | ||
Description: | ||
[RO] This parameter specifies the smallest block which can | ||
be written atomically with an atomic write operation. All | ||
atomic write operations must begin at a | ||
atomic_write_unit_min boundary and must be multiples of | ||
atomic_write_unit_min. This value must be a power-of-two. | ||
|
||
|
||
What: /sys/block/<disk>/atomic_write_unit_max_bytes | ||
Date: February 2024 | ||
Contact: Himanshu Madhani <[email protected]> | ||
Description: | ||
[RO] This parameter defines the largest block which can be | ||
written atomically with an atomic write operation. This | ||
value must be a multiple of atomic_write_unit_min and must | ||
be a power-of-two. This value will not be larger than | ||
atomic_write_max_bytes. | ||
|
||
|
||
What: /sys/block/<disk>/atomic_write_boundary_bytes | ||
Date: February 2024 | ||
Contact: Himanshu Madhani <[email protected]> | ||
Description: | ||
[RO] A device may need to internally split an atomic write I/O | ||
which straddles a given logical block address boundary. This | ||
parameter specifies the size in bytes of the atomic boundary if | ||
one is reported by the device. This value must be a | ||
power-of-two and at least the size as in | ||
atomic_write_unit_max_bytes. | ||
Any attempt to merge atomic write I/Os must not result in a | ||
merged I/O which crosses this boundary (if any). | ||
|
||
|
||
What: /sys/block/<disk>/diskseq | ||
Date: February 2021 | ||
|
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 |
---|---|---|
@@ -1,6 +1,23 @@ | ||
What: /sys/bus/nvmem/devices/.../force_ro | ||
Date: June 2024 | ||
KernelVersion: 6.11 | ||
Contact: Marek Vasut <[email protected]> | ||
Description: | ||
This read/write attribute allows users to set read-write | ||
devices as read-only and back to read-write from userspace. | ||
This can be used to unlock and relock write-protection of | ||
devices which are generally locked, except during sporadic | ||
programming operation. | ||
Read returns '0' or '1' for read-write or read-only modes | ||
respectively. | ||
Write parses one of 'YyTt1NnFf0', or [oO][NnFf] for "on" | ||
and "off", i.e. what kstrbool() supports. | ||
Note: This file is only present if CONFIG_NVMEM_SYSFS | ||
is enabled. | ||
|
||
What: /sys/bus/nvmem/devices/.../nvmem | ||
Date: July 2015 | ||
KernelVersion: 4.2 | ||
KernelVersion: 4.2 | ||
Contact: Srinivas Kandagatla <[email protected]> | ||
Description: | ||
This file allows user to read/write the raw NVMEM contents. | ||
|
@@ -20,3 +37,14 @@ Description: | |
... | ||
* | ||
0001000 | ||
|
||
What: /sys/bus/nvmem/devices/.../type | ||
Date: November 2018 | ||
KernelVersion: 5.0 | ||
Contact: Alexandre Belloni <[email protected]> | ||
Description: | ||
This read-only attribute allows user to read the NVMEM | ||
device type. Supported types are "Unknown", "EEPROM", | ||
"OTP", "Battery backed", "FRAM". | ||
Note: This file is only present if CONFIG_NVMEM_SYSFS | ||
is enabled. |
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 |
---|---|---|
|
@@ -3,10 +3,11 @@ Date: April 2005 | |
KernelVersion: 2.6.12 | ||
Contact: Richard Purdie <[email protected]> | ||
Description: | ||
Control BACKLIGHT power, values are FB_BLANK_* from fb.h | ||
Control BACKLIGHT power, values are compatible with | ||
FB_BLANK_* from fb.h | ||
|
||
- FB_BLANK_UNBLANK (0) : power on. | ||
- FB_BLANK_POWERDOWN (4) : power off | ||
- 0 (FB_BLANK_UNBLANK) : power on. | ||
- 4 (FB_BLANK_POWERDOWN) : power off | ||
Users: HAL | ||
|
||
What: /sys/class/backlight/<backlight>/brightness | ||
|
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,25 @@ | ||
What: /sys/devices/pciXXXX:XX/0000:XX:XX.X/0000:XX:XX.X/version | ||
Date: June 2024 | ||
KernelVersion: 6.11 | ||
Contact: Gerhard Engleder <[email protected]> | ||
Description: Version of the FPGA configuration bitstream as printable string. | ||
This file is read only. | ||
Users: KEBA | ||
|
||
What: /sys/devices/pciXXXX:XX/0000:XX:XX.X/0000:XX:XX.X/keep_cfg | ||
Date: June 2024 | ||
KernelVersion: 6.11 | ||
Contact: Gerhard Engleder <[email protected]> | ||
Description: Flag which signals if FPGA shall keep or reload configuration | ||
bitstream on reset. Normal FPGA behavior and default is to keep | ||
configuration bitstream and to only reset the configured logic. | ||
|
||
Reloading configuration on reset enables an update of the | ||
configuration bitstream with a simple reboot. Otherwise it is | ||
necessary to power cycle the device to reload the new | ||
configuration bitstream. | ||
|
||
This file is read/write. The values are as follows: | ||
1 = keep configuration bitstream on reset, default | ||
0 = reload configuration bitstream on reset | ||
Users: KEBA |
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 |
---|---|---|
|
@@ -31,6 +31,18 @@ Description: | |
Standardization v2.03 Section 4.1.8.1 MSG_REPORT_REQ. | ||
https://www.amd.com/content/dam/amd/en/documents/epyc-technical-docs/specifications/56421.pdf | ||
|
||
What: /sys/kernel/config/tsm/report/$name/manifestblob | ||
Date: January, 2024 | ||
KernelVersion: v6.10 | ||
Contact: [email protected] | ||
Description: | ||
(RO) Optional supplemental data that a TSM may emit, visibility | ||
of this attribute depends on TSM, and may be empty if no | ||
manifest data is available. | ||
|
||
See 'service_provider' for information on the format of the | ||
manifest blob. | ||
|
||
What: /sys/kernel/config/tsm/report/$name/provider | ||
Date: September, 2023 | ||
KernelVersion: v6.7 | ||
|
@@ -80,3 +92,54 @@ Contact: [email protected] | |
Description: | ||
(RO) Indicates the minimum permissible value that can be written | ||
to @privlevel. | ||
|
||
What: /sys/kernel/config/tsm/report/$name/service_provider | ||
Date: January, 2024 | ||
KernelVersion: v6.10 | ||
Contact: [email protected] | ||
Description: | ||
(WO) Attribute is visible if a TSM implementation provider | ||
supports the concept of attestation reports from a service | ||
provider for TVMs, like SEV-SNP running under an SVSM. | ||
Specifying the service provider via this attribute will create | ||
an attestation report as specified by the service provider. | ||
The only currently supported service provider is "svsm". | ||
|
||
For the "svsm" service provider, see the Secure VM Service Module | ||
for SEV-SNP Guests v1.00 Section 7. For the doc, search for | ||
"site:amd.com "Secure VM Service Module for SEV-SNP | ||
Guests", docID: 58019" | ||
|
||
What: /sys/kernel/config/tsm/report/$name/service_guid | ||
Date: January, 2024 | ||
KernelVersion: v6.10 | ||
Contact: [email protected] | ||
Description: | ||
(WO) Attribute is visible if a TSM implementation provider | ||
supports the concept of attestation reports from a service | ||
provider for TVMs, like SEV-SNP running under an SVSM. | ||
Specifying an empty/null GUID (00000000-0000-0000-0000-000000) | ||
requests all active services within the service provider be | ||
part of the attestation report. Specifying a GUID request | ||
an attestation report of just the specified service using the | ||
manifest form specified by the service_manifest_version | ||
attribute. | ||
|
||
See 'service_provider' for information on the format of the | ||
service guid. | ||
|
||
What: /sys/kernel/config/tsm/report/$name/service_manifest_version | ||
Date: January, 2024 | ||
KernelVersion: v6.10 | ||
Contact: [email protected] | ||
Description: | ||
(WO) Attribute is visible if a TSM implementation provider | ||
supports the concept of attestation reports from a service | ||
provider for TVMs, like SEV-SNP running under an SVSM. | ||
Indicates the service manifest version requested for the | ||
attestation report (default 0). If this field is not set by | ||
the user, the default manifest version of the service (the | ||
service's initial/first manifest version) is returned. | ||
|
||
See 'service_provider' for information on the format of the | ||
service manifest version. |
Oops, something went wrong.