forked from torvalds/linux
-
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 tag 'v6.11-rc2' into media_stage
Linux 6.11-rc2 * tag 'v6.11-rc2': (283 commits) Linux 6.11-rc2 profiling: remove profile=sleep support arm: dts: arm: versatile-ab: Fix duplicate clock node name runtime constants: deal with old decrepit linkers clocksource: Fix brown-bag boolean thinko in cs_watchdog_read() cifs: update internal version number smb: client: fix FSCTL_GET_REPARSE_POINT against NetApp smb3: add dynamic tracepoints for shutdown ioctl cifs: Remove cifs_aio_ctx smb: client: handle lack of FSCTL_GET_REPARSE_POINT support arm64: jump_label: Ensure patched jump_labels are visible to all CPUs syscalls: fix syscall macros for newfstat/newfstatat uretprobe: change syscall number, again thermal: core: Update thermal zone registration documentation Revert "nouveau: rip out busy fence waits" protect the fetch of ->fd[fd] in do_dup2() from mispredictions x86/uaccess: Zero the 8-byte get_range case on failure on 32-bit riscv: Fix linear mapping checks for non-contiguous memory regions KVM: x86/mmu: fix determination of max NPT mapping level for private pages PCI: pciehp: Retain Power Indicator bits for userspace indicators ...
- Loading branch information
Showing
331 changed files
with
3,879 additions
and
2,298 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
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 |
---|---|---|
|
@@ -4,8 +4,6 @@ Generic Thermal Sysfs driver How To | |
|
||
Written by Sujith Thomas <[email protected]>, Zhang Rui <[email protected]> | ||
|
||
Updated: 2 January 2008 | ||
|
||
Copyright (c) 2008 Intel Corporation | ||
|
||
|
||
|
@@ -38,23 +36,23 @@ temperature) and throttle appropriate devices. | |
|
||
:: | ||
|
||
struct thermal_zone_device | ||
*thermal_zone_device_register(char *type, | ||
int trips, int mask, void *devdata, | ||
struct thermal_zone_device_ops *ops, | ||
const struct thermal_zone_params *tzp, | ||
int passive_delay, int polling_delay)) | ||
struct thermal_zone_device * | ||
thermal_zone_device_register_with_trips(const char *type, | ||
const struct thermal_trip *trips, | ||
int num_trips, void *devdata, | ||
const struct thermal_zone_device_ops *ops, | ||
const struct thermal_zone_params *tzp, | ||
unsigned int passive_delay, | ||
unsigned int polling_delay) | ||
This interface function adds a new thermal zone device (sensor) to | ||
This interface function adds a new thermal zone device (sensor) to the | ||
/sys/class/thermal folder as `thermal_zone[0-*]`. It tries to bind all the | ||
thermal cooling devices registered at the same time. | ||
thermal cooling devices registered to it at the same time. | ||
|
||
type: | ||
the thermal zone type. | ||
trips: | ||
the total number of trip points this thermal zone supports. | ||
mask: | ||
Bit string: If 'n'th bit is set, then trip point 'n' is writable. | ||
the table of trip points for this thermal zone. | ||
devdata: | ||
device private data | ||
ops: | ||
|
@@ -67,32 +65,29 @@ temperature) and throttle appropriate devices. | |
.get_temp: | ||
get the current temperature of the thermal zone. | ||
.set_trips: | ||
set the trip points window. Whenever the current temperature | ||
is updated, the trip points immediately below and above the | ||
current temperature are found. | ||
.get_mode: | ||
get the current mode (enabled/disabled) of the thermal zone. | ||
|
||
- "enabled" means the kernel thermal management is | ||
enabled. | ||
- "disabled" will prevent kernel thermal driver action | ||
upon trip points so that user applications can take | ||
charge of thermal management. | ||
.set_mode: | ||
set the mode (enabled/disabled) of the thermal zone. | ||
.get_trip_type: | ||
get the type of certain trip point. | ||
.get_trip_temp: | ||
get the temperature above which the certain trip point | ||
will be fired. | ||
set the trip points window. Whenever the current temperature | ||
is updated, the trip points immediately below and above the | ||
current temperature are found. | ||
.change_mode: | ||
change the mode (enabled/disabled) of the thermal zone. | ||
.set_trip_temp: | ||
set the temperature of a given trip point. | ||
.get_crit_temp: | ||
get the critical temperature for this thermal zone. | ||
.set_emul_temp: | ||
set the emulation temperature which helps in debugging | ||
different threshold temperature points. | ||
set the emulation temperature which helps in debugging | ||
different threshold temperature points. | ||
.get_trend: | ||
get the trend of most recent zone temperature changes. | ||
.hot: | ||
hot trip point crossing handler. | ||
.critical: | ||
critical trip point crossing handler. | ||
tzp: | ||
thermal zone platform parameters. | ||
passive_delay: | ||
number of milliseconds to wait between polls when | ||
performing passive cooling. | ||
number of milliseconds to wait between polls when performing passive | ||
cooling. | ||
polling_delay: | ||
number of milliseconds to wait between polls when checking | ||
whether trip points have been crossed (0 for interrupt driven systems). | ||
|
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 |
---|---|---|
|
@@ -15936,6 +15936,7 @@ F: include/linux/in.h | |
F: include/linux/indirect_call_wrapper.h | ||
F: include/linux/net.h | ||
F: include/linux/netdevice.h | ||
F: include/linux/skbuff.h | ||
F: include/net/ | ||
F: include/uapi/linux/in.h | ||
F: include/uapi/linux/net.h | ||
|
@@ -18556,7 +18557,7 @@ F: drivers/usb/misc/qcom_eud.c | |
QCOM IPA DRIVER | ||
M: Alex Elder <[email protected]> | ||
L: [email protected] | ||
S: Supported | ||
S: Maintained | ||
F: drivers/net/ipa/ | ||
|
||
QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT | ||
|
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
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
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.