/linux-4.4.14/drivers/thermal/int340x_thermal/ |
D | int340x_thermal_zone.c | 52 int trip, int *temp) in int340x_thermal_get_trip_temp() argument 58 return d->override_ops->get_trip_temp(zone, trip, temp); in int340x_thermal_get_trip_temp() 60 if (trip < d->aux_trip_nr) in int340x_thermal_get_trip_temp() 61 *temp = d->aux_trips[trip]; in int340x_thermal_get_trip_temp() 62 else if (trip == d->crt_trip_id) in int340x_thermal_get_trip_temp() 64 else if (trip == d->psv_trip_id) in int340x_thermal_get_trip_temp() 66 else if (trip == d->hot_trip_id) in int340x_thermal_get_trip_temp() 71 d->act_trips[i].id == trip) { in int340x_thermal_get_trip_temp() 84 int trip, in int340x_thermal_get_trip_type() argument 91 return d->override_ops->get_trip_type(zone, trip, type); in int340x_thermal_get_trip_type() [all …]
|
/linux-4.4.14/drivers/thermal/ |
D | of-thermal.c | 135 bool of_thermal_is_trip_valid(struct thermal_zone_device *tz, int trip) in of_thermal_is_trip_valid() argument 139 if (!data || trip >= data->ntrips || trip < 0) in of_thermal_is_trip_valid() 190 static int of_thermal_get_trend(struct thermal_zone_device *tz, int trip, in of_thermal_get_trend() argument 300 static int of_thermal_get_trip_type(struct thermal_zone_device *tz, int trip, in of_thermal_get_trip_type() argument 305 if (trip >= data->ntrips || trip < 0) in of_thermal_get_trip_type() 308 *type = data->trips[trip].type; in of_thermal_get_trip_type() 313 static int of_thermal_get_trip_temp(struct thermal_zone_device *tz, int trip, in of_thermal_get_trip_temp() argument 318 if (trip >= data->ntrips || trip < 0) in of_thermal_get_trip_temp() 321 *temp = data->trips[trip].temperature; in of_thermal_get_trip_temp() 326 static int of_thermal_set_trip_temp(struct thermal_zone_device *tz, int trip, in of_thermal_set_trip_temp() argument [all …]
|
D | gov_bang_bang.c | 26 static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip) in thermal_zone_trip_update() argument 31 tz->ops->get_trip_temp(tz, trip, &trip_temp); in thermal_zone_trip_update() 32 tz->ops->get_trip_hyst(tz, trip, &trip_hyst); in thermal_zone_trip_update() 35 trip, trip_temp, tz->temperature, in thermal_zone_trip_update() 41 if (instance->trip != trip) in thermal_zone_trip_update() 101 static int bang_bang_control(struct thermal_zone_device *tz, int trip) in bang_bang_control() argument 105 thermal_zone_trip_update(tz, trip); in bang_bang_control()
|
D | step_wise.c | 127 static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip) in thermal_zone_trip_update() argument 136 if (trip == THERMAL_TRIPS_NONE) { in thermal_zone_trip_update() 140 tz->ops->get_trip_temp(tz, trip, &trip_temp); in thermal_zone_trip_update() 141 tz->ops->get_trip_type(tz, trip, &trip_type); in thermal_zone_trip_update() 144 trend = get_tz_trend(tz, trip); in thermal_zone_trip_update() 148 trace_thermal_zone_trip(tz, trip, trip_type); in thermal_zone_trip_update() 152 trip, trip_type, trip_temp, trend, throttle); in thermal_zone_trip_update() 157 if (instance->trip != trip) in thermal_zone_trip_update() 196 static int step_wise_throttle(struct thermal_zone_device *tz, int trip) in step_wise_throttle() argument 200 thermal_zone_trip_update(tz, trip); in step_wise_throttle()
|
D | intel_quark_dts_thermal.c | 189 static int _get_trip_temp(int trip, int *temp) in _get_trip_temp() argument 208 *temp = (out >> (trip * QRK_DTS_SHIFT_TP)) & QRK_DTS_MASK_TP_THRES; in _get_trip_temp() 215 int trip, int *temp) in sys_get_trip_temp() argument 217 return _get_trip_temp(trip, temp); in sys_get_trip_temp() 226 int trip, int temp) in update_trip_temp() argument 261 (trip * QRK_DTS_SHIFT_TP))); in update_trip_temp() 263 (trip * QRK_DTS_SHIFT_TP); in update_trip_temp() 273 static inline int sys_set_trip_temp(struct thermal_zone_device *tzd, int trip, in sys_set_trip_temp() argument 276 return update_trip_temp(tzd->devdata, trip, temp); in sys_set_trip_temp() 280 int trip, enum thermal_trip_type *type) in sys_get_trip_type() argument [all …]
|
D | fair_share.c | 89 static int fair_share_throttle(struct thermal_zone_device *tz, int trip) in fair_share_throttle() argument 97 if (instance->trip != trip) in fair_share_throttle() 108 if (instance->trip != trip) in fair_share_throttle()
|
D | thermal_core.c | 233 int get_tz_trend(struct thermal_zone_device *tz, int trip) in get_tz_trend() argument 238 tz->ops->get_trend(tz, trip, &trend)) { in get_tz_trend() 252 struct thermal_cooling_device *cdev, int trip) in get_thermal_instance() argument 261 if (pos->tz == tz && pos->trip == trip && pos->cdev == cdev) { in get_thermal_instance() 423 int trip, enum thermal_trip_type trip_type) in handle_non_critical_trips() argument 425 tz->governor ? tz->governor->throttle(tz, trip) : in handle_non_critical_trips() 426 def_governor->throttle(tz, trip); in handle_non_critical_trips() 430 int trip, enum thermal_trip_type trip_type) in handle_critical_trips() argument 434 tz->ops->get_trip_temp(tz, trip, &trip_temp); in handle_critical_trips() 440 trace_thermal_zone_trip(tz, trip, trip_type); in handle_critical_trips() [all …]
|
D | Kconfig | 11 Each thermal zone contains its own temperature, trip points, 46 bool "Enable writable trip points" 49 trip temperatures can be changed from userspace. The 54 change trip temperatures. 171 user can manually input temperature and test the different trip 184 CPUs when the passive trip is crossed. 193 It supports one critical trip point and one passive trip point. The 195 passive trip is crossed. 212 trip point. Cpufreq is used as the cooling device and will throttle 213 CPUs when the Temperature crosses the passive trip point. [all …]
|
D | intel_pch_thermal.c | 151 static int pch_get_trip_type(struct thermal_zone_device *tzd, int trip, in pch_get_trip_type() argument 156 if (ptd->crt_trip_id == trip) in pch_get_trip_type() 158 else if (ptd->hot_trip_id == trip) in pch_get_trip_type() 166 static int pch_get_trip_temp(struct thermal_zone_device *tzd, int trip, int *temp) in pch_get_trip_temp() argument 170 if (ptd->crt_trip_id == trip) in pch_get_trip_temp() 172 else if (ptd->hot_trip_id == trip) in pch_get_trip_temp()
|
D | intel_soc_dts_iosf.c | 82 static int sys_get_trip_temp(struct thermal_zone_device *tzd, int trip, in sys_get_trip_temp() argument 99 out = (out >> (trip * 8)) & SOC_DTS_TJMAX_ENCODING; in sys_get_trip_temp() 198 static int sys_set_trip_temp(struct thermal_zone_device *tzd, int trip, in sys_set_trip_temp() argument 209 status = update_trip_temp(tzd->devdata, trip, temp, in sys_set_trip_temp() 210 dts->trip_types[trip]); in sys_set_trip_temp() 217 int trip, enum thermal_trip_type *type) in sys_get_trip_type() argument 223 *type = dts->trip_types[trip]; in sys_get_trip_type()
|
D | power_allocator.c | 103 if (instance->trip != params->trip_max_desired_temperature) in estimate_sustainable_power() 349 if ((instance->trip == trip_max_desired_temperature) && in allocate_power() 392 if (instance->trip != trip_max_desired_temperature) in allocate_power() 427 if (instance->trip != trip_max_desired_temperature) in allocate_power() 527 if ((instance->trip != params->trip_max_desired_temperature) || in allow_maximum_power() 608 static int power_allocator_throttle(struct thermal_zone_device *tz, int trip) in power_allocator_throttle() argument 618 if (trip != params->trip_max_desired_temperature) in power_allocator_throttle()
|
D | thermal_core.h | 43 int trip; member 116 int trip) in of_thermal_is_trip_valid() argument
|
D | x86_pkg_temp_thermal.c | 186 int trip, int *temp) in sys_get_trip_temp() argument 194 if (trip >= MAX_NUMBER_OF_TRIPS) in sys_get_trip_temp() 199 if (trip) { in sys_get_trip_temp() 222 static int sys_set_trip_temp(struct thermal_zone_device *tzd, int trip, in sys_set_trip_temp() argument 232 if (trip >= MAX_NUMBER_OF_TRIPS || temp >= phy_dev_entry->tj_max) in sys_set_trip_temp() 241 if (trip) { in sys_set_trip_temp() 268 int trip, enum thermal_trip_type *type) in sys_get_trip_type() argument
|
D | db8500_thermal.c | 126 int trip, enum thermal_trend *trend) in db8500_sys_get_trend() argument 167 int trip, enum thermal_trip_type *type) in db8500_sys_get_trip_type() argument 172 if (trip >= ptrips->num_trips) in db8500_sys_get_trip_type() 175 *type = ptrips->trip_points[trip].type; in db8500_sys_get_trip_type() 182 int trip, int *temp) in db8500_sys_get_trip_temp() argument 187 if (trip >= ptrips->num_trips) in db8500_sys_get_trip_temp() 190 *temp = ptrips->trip_points[trip].temp; in db8500_sys_get_trip_temp()
|
D | hisi_thermal.c | 241 const struct thermal_trip *trip; in hisi_thermal_register_sensor() local 255 trip = of_thermal_get_trip_points(sensor->tzd); in hisi_thermal_register_sensor() 258 if (trip[i].type == THERMAL_TRIP_PASSIVE) { in hisi_thermal_register_sensor() 259 sensor->thres_temp = trip[i].temperature; in hisi_thermal_register_sensor()
|
D | rcar_thermal.c | 218 int trip, enum thermal_trip_type *type) in rcar_thermal_get_trip_type() argument 224 switch (trip) { in rcar_thermal_get_trip_type() 237 int trip, int *temp) in rcar_thermal_get_trip_temp() argument 243 switch (trip) { in rcar_thermal_get_trip_temp() 256 int trip, enum thermal_trip_type type) in rcar_thermal_notify() argument
|
D | imx_thermal.c | 254 static int imx_get_trip_type(struct thermal_zone_device *tz, int trip, in imx_get_trip_type() argument 257 *type = (trip == IMX_TRIP_PASSIVE) ? THERMAL_TRIP_PASSIVE : in imx_get_trip_type() 270 static int imx_get_trip_temp(struct thermal_zone_device *tz, int trip, in imx_get_trip_temp() argument 275 *temp = (trip == IMX_TRIP_PASSIVE) ? data->temp_passive : in imx_get_trip_temp() 280 static int imx_set_trip_temp(struct thermal_zone_device *tz, int trip, in imx_set_trip_temp() argument 286 if (trip == IMX_TRIP_CRITICAL) in imx_set_trip_temp()
|
D | user_space.c | 35 static int notify_user_space(struct thermal_zone_device *tz, int trip) in notify_user_space() argument
|
/linux-4.4.14/drivers/acpi/ |
D | thermal.c | 590 int trip, enum thermal_trip_type *type) in thermal_get_trip_type() argument 595 if (!tz || trip < 0) in thermal_get_trip_type() 599 if (!trip) { in thermal_get_trip_type() 603 trip--; in thermal_get_trip_type() 607 if (!trip) { in thermal_get_trip_type() 611 trip--; in thermal_get_trip_type() 615 if (!trip) { in thermal_get_trip_type() 619 trip--; in thermal_get_trip_type() 624 if (!trip) { in thermal_get_trip_type() 628 trip--; in thermal_get_trip_type() [all …]
|
/linux-4.4.14/drivers/crypto/nx/ |
D | nx.c | 373 struct msc_triplet *trip; in nx_of_update_msc() local 389 trip = msc->trip; in nx_of_update_msc() 402 if (!trip->sglen || trip->databytelen < NX_PAGE_SIZE) { in nx_of_update_msc() 404 "%u/%u (ignored)\n", trip->sglen, in nx_of_update_msc() 405 trip->databytelen); in nx_of_update_msc() 409 switch (trip->keybitlen) { in nx_of_update_msc() 413 trip->databytelen; in nx_of_update_msc() 415 trip->sglen; in nx_of_update_msc() 419 trip->databytelen; in nx_of_update_msc() 421 trip->sglen; in nx_of_update_msc() [all …]
|
D | nx.h | 42 struct msc_triplet trip[0]; member
|
/linux-4.4.14/Documentation/devicetree/bindings/thermal/ |
D | db8500-thermal.txt | 9 - num-trips : number of total trip points, this is required, set it 0 if none, 11 - tripN-temp : temperature of trip point N, should be in ascending order; 12 - tripN-type : type of trip point N, should be one of "active" "passive" "hot" 14 - tripN-cdev-num : number of the cooling devices which can be bound to trip 15 point N, this is required if trip point N is defined, set it 0 if none, 17 - tripN-cdev-nameM : name of the No. M cooling device of trip point N;
|
D | thermal.txt | 6 such as trip points, polling intervals, sensors and cooling devices 18 - trip points: describe key temperatures at which cooling is recommended. The 20 - cooling maps: used to describe links between trip points and cooling devices; 83 The trip node is a node to describe a point in the temperature domain 88 - temperature: An integer indicating the trip temperature level, 96 - type: a string containing the trip type. Expected values are: 97 "active": A trip point to enable active cooling 98 "passive": A trip point to enable passive cooling 99 "hot": A trip point to notify emergency 106 get assigned to trip points of the zone. The cooling devices are expected [all …]
|
D | tegra-soctherm.txt | 5 on temperature trip points, and handling external overcurrent
|
D | rockchip-thermal.txt | 71 trip = <&cpu_alert0>;
|
/linux-4.4.14/Documentation/thermal/ |
D | sysfs-api.txt | 25 inputs from thermal zone attributes (the current temperature and trip point 45 trips: the total number of trip points this thermal zone supports. 46 mask: Bit string: If 'n'th bit is set, then trip point 'n' is writeable. 54 - "disabled" will prevent kernel thermal driver action upon trip points 57 .get_trip_type: get the type of certain trip point. 58 .get_trip_temp: get the temperature above which the certain trip point 66 whether trip points have been crossed (0 for interrupt driven systems). 97 int trip, struct thermal_cooling_device *cdev, 100 This interface function bind a thermal cooling device to the certain trip 105 trip: indicates which trip point the cooling devices is associated with [all …]
|
D | x86_pkg_temperature_thermal | 19 zone with maximum two user mode configurable trip points. Number of trip points 20 depends on the capability of the package. Once the trip point is violated, 31 This contains two trip points: 39 Any value other than 0 in these trip points, can trigger thermal notifications.
|
D | power_allocator.txt | 7 The governor works optimally with the following two passive trip points: 9 1. "switch on" trip point: temperature above which the governor 10 control loop starts operating. This is the first passive trip 13 2. "desired temperature" trip point: it should be higher than the 14 "switch on" trip point. This the target temperature the governor 15 is controlling for. This is the last passive trip point of the 104 above "desired temperature" trip point). Conversely, `k_pu` is the 106 (current temperature below "desired temperature" trip point).
|
D | cpu-cooling-api.txt | 13 to the caller. The binding of the cooling devices to the trip point is left for
|
D | intel_powerclamp.txt | 307 certain temperature (below most active trip points).
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | exynos4412-odroidu3.dts | 49 trip = <&cpu_alert1>; 53 trip = <&cpu_alert2>; 57 trip = <&cpu_alert0>; 61 trip = <&cpu_alert1>; 65 trip = <&cpu_alert2>;
|
D | exynos5422-cpu-thermal.dtsi | 45 trip = <&cpu_alert0>; 49 trip = <&cpu_alert1>; 53 trip = <&cpu_alert2>;
|
D | exynos4-cpu-thermal.dtsi | 44 trip = <&cpu_alert0>; 47 trip = <&cpu_alert1>;
|
D | rk3288-thermal.dtsi | 75 trip = <&cpu_alert0>; 103 trip = <&gpu_alert0>;
|
D | exynos5440.dtsi | 246 #include "exynos5440-trip-points.dtsi" 250 #include "exynos5440-trip-points.dtsi" 254 #include "exynos5440-trip-points.dtsi"
|
D | omap4-cpu-thermal.dtsi | 36 trip = <&cpu_alert0>;
|
D | exynos5420.dtsi | 822 #include "exynos5420-trip-points.dtsi" 826 #include "exynos5420-trip-points.dtsi" 830 #include "exynos5420-trip-points.dtsi" 834 #include "exynos5420-trip-points.dtsi" 838 #include "exynos5420-trip-points.dtsi"
|
D | sun5i-a13.dtsi | 78 trip = <&cpu_alert0>;
|
D | am57xx-beagle-x15.dts | 733 trip = <&cpu_alert1>; 762 trip = <&board_alert0>;
|
D | tegra124-jetson-tk1.dts | 1934 trip@0 { 1948 trip@0 { 1962 trip@0 {
|
D | sun4i-a10.dtsi | 132 trip = <&cpu_alert0>;
|
D | sun6i-a31.dtsi | 142 trip = <&cpu_alert0>;
|
D | sun7i-a20.dtsi | 134 trip = <&cpu_alert0>;
|
/linux-4.4.14/include/trace/events/ |
D | thermal.h | 57 TP_PROTO(struct thermal_zone_device *tz, int trip, 60 TP_ARGS(tz, trip, trip_type), 65 __field(int, trip) 72 __entry->trip = trip; 77 __get_str(thermal_zone), __entry->id, __entry->trip,
|
/linux-4.4.14/drivers/thermal/ti-soc-thermal/ |
D | ti-thermal.h | 83 #define ti_thermal_is_valid_trip(trip) \ argument 84 ((trip) >= 0 && (trip) < OMAP_TRIP_NUMBER)
|
D | ti-thermal-common.c | 217 int trip, enum thermal_trip_type *type) in ti_thermal_get_trip_type() argument 219 if (!ti_thermal_is_valid_trip(trip)) in ti_thermal_get_trip_type() 222 if (trip + 1 == OMAP_TRIP_NUMBER) in ti_thermal_get_trip_type() 232 int trip, int *temp) in ti_thermal_get_trip_temp() argument 234 if (!ti_thermal_is_valid_trip(trip)) in ti_thermal_get_trip_temp() 237 *temp = ti_thermal_get_trip_value(trip); in ti_thermal_get_trip_temp() 262 int trip, enum thermal_trend *trend) in ti_thermal_get_trend() argument
|
D | Kconfig | 19 This includes trip points definitions, extrapolation rules and
|
/linux-4.4.14/drivers/platform/x86/ |
D | acerhdf.c | 441 static int acerhdf_get_trip_type(struct thermal_zone_device *thermal, int trip, in acerhdf_get_trip_type() argument 444 if (trip == 0) in acerhdf_get_trip_type() 446 else if (trip == 1) in acerhdf_get_trip_type() 454 static int acerhdf_get_trip_hyst(struct thermal_zone_device *thermal, int trip, in acerhdf_get_trip_hyst() argument 457 if (trip != 0) in acerhdf_get_trip_hyst() 465 static int acerhdf_get_trip_temp(struct thermal_zone_device *thermal, int trip, in acerhdf_get_trip_temp() argument 468 if (trip == 0) in acerhdf_get_trip_temp() 470 else if (trip == 1) in acerhdf_get_trip_temp()
|
/linux-4.4.14/include/linux/ |
D | thermal.h | 231 int (*throttle)(struct thermal_zone_device *tz, int trip); 446 struct thermal_zone_device *tz, int trip, in thermal_zone_bind_cooling_device() argument 452 struct thermal_zone_device *tz, int trip, in thermal_zone_unbind_cooling_device() argument 474 static inline int get_tz_trend(struct thermal_zone_device *tz, int trip) in get_tz_trend() argument 478 struct thermal_cooling_device *cdev, int trip) in get_thermal_instance() argument 483 int trip) in thermal_notify_framework() argument
|
/linux-4.4.14/drivers/thermal/st/ |
D | st_thermal.c | 143 int trip, enum thermal_trip_type *type) in st_thermal_get_trip_type() argument 148 switch (trip) { in st_thermal_get_trip_type() 161 int trip, int *temp) in st_thermal_get_trip_temp() argument 166 switch (trip) { in st_thermal_get_trip_temp()
|
/linux-4.4.14/drivers/hwmon/ |
D | acpi_power_meter.c | 104 s64 trip[2]; member 276 if (resource->trip[0] < 0 || resource->trip[1] < 0) in set_acpi_trip() 280 arg_objs[0].integer.value = resource->trip[1]; in set_acpi_trip() 281 arg_objs[1].integer.value = resource->trip[0]; in set_acpi_trip() 313 resource->trip[attr->index - 7] = temp; in set_trip() 434 if (resource->trip[attr->index - 7] < 0) in show_val() 437 val = resource->trip[attr->index - 7] * 1000; in show_val() 894 resource->trip[0] = resource->trip[1] = -1; in acpi_power_meter_add()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/therm/ |
D | base.c | 37 struct nvbios_therm_trip_point *trip = therm->fan->bios.trip, in nvkm_therm_update_trip() local 46 if (temp >= trip[i].temp) in nvkm_therm_update_trip() 47 cur_trip = &trip[i]; in nvkm_therm_update_trip()
|
/linux-4.4.14/tools/thermal/tmon/ |
D | README | 12 devices, zones, sensors, and trip points. They can also change dynamically. 16 links, trip point bindings, and device instances. To traverse such
|
/linux-4.4.14/Documentation/hwmon/ |
D | it87 | 245 This interface implements 4 temperature vs. PWM output trip points. 246 The PWM output of trip point 4 is always the maximum value (fan running 247 at full speed) while the PWM output of the other 3 trip points can be 248 freely chosen. The temperature of all 4 trip points can be freely chosen. 249 Additionally, trip point 1 has an hysteresis temperature attached, to 254 between trip point N and trip point N+1 then the PWM output value is 255 the one of trip point N. The automatic control mode is less flexible
|
D | f71882fg | 93 Note that the lowest numbered temperature zone trip point corresponds to 95 vica versa. So the temperature zone trip points 1-4 (or 1-2) go from high temp 127 You can define a number of temperature/fan speed trip points, which % the 129 standard sysfs interface. The number and type of trip points is chip
|
D | acpi_power_meter | 19 interval, an optional capping mechanism, and a couple of trip points. The 27 Both power[1-*]_average_{min,max} must be set before the trip points will work.
|
D | sysfs-interface | 277 Define the PWM vs temperature curve. Number of trip points is 278 chip-dependent. Use this for chips which associate trip points 285 Define the PWM vs temperature curve. Number of trip points is 286 chip-dependent. Use this for chips which associate trip points 290 There is a third case where trip points are associated to both PWM output
|
D | w83793 | 89 trip points, defining a PWM/temperature curve which the chip will follow.
|
D | adt7475 | 96 The driver exposes two trip points per PWM channel.
|
D | f71805f | 156 You define 3 temperature/fan speed trip points using the
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
D | therm.c | 177 cur_trip = &fan->trip[fan->nr_fan_trip - 1]; in nvbios_therm_fan_parse() 183 cur_trip = &fan->trip[fan->nr_fan_trip - 1]; in nvbios_therm_fan_parse()
|
/linux-4.4.14/Documentation/ |
D | IRQ-affinity.txt | 33 round-trip min/avg/max = 0.1/0.1/0.4 ms 50 round-trip min/avg/max = 0.1/0.5/585.4 ms
|
D | kernel-parameters.txt | 3689 -1: disable all active trip points in all thermal zones 3690 <degrees C>: override all lowest active trip points 3693 -1: disable all critical trip points in all thermal zones 3694 <degrees C>: override all critical trip points 3698 critical and hot trip points. 3704 -1: disable all passive trip points 3705 <degrees C>: override all passive trip points to this
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/ |
D | therm.h | 55 struct nvbios_therm_trip_point trip[NVKM_TEMP_FAN_TRIP_MAX]; member
|
/linux-4.4.14/Documentation/devicetree/bindings/hwmon/ |
D | pwm-fan.txt | 33 trip = <&cpu_alert1>;
|
/linux-4.4.14/arch/alpha/lib/ |
D | ev6-copy_user.S | 68 subq $3, 8, $3 # E .. .. .. : L U U L : trip counter 170 subq $4, 32, $3 # E .. .. .. : U U L L : is there enough for another trip?
|
D | ev6-memcpy.S | 78 addq $16, 64, $7 # E : Initial (+1 trip) wh64 address 129 cmple $18, 63, $1 # E : At least one more trip?
|
D | ev6-memset.S | 168 addq $5, 64, $7 # E : Fallback address for wh64 (== next trip addr) 345 addq $5, 64, $7 # E : Fallback address for wh64 (== next trip addr) 532 addq $5, 64, $7 # E : Fallback address for wh64 (== next trip addr)
|
/linux-4.4.14/Documentation/filesystems/ |
D | gfs2-glocks.txt | 141 of round trip times in network code. See "TCP/IP Illustrated, 208 srtt - Smoothed round trip time for non-blocking dlm requests 210 srttb - Smoothed round trip time for (potentially) blocking dlm requests
|
/linux-4.4.14/fs/btrfs/ |
D | Kconfig | 89 any of the assertions trip. This is meant for btrfs developers only.
|
/linux-4.4.14/Documentation/mic/ |
D | scif_overview.txt | 61 nodes and thus provides bare-metal PCIe latency. The round trip SCIF mmap
|
/linux-4.4.14/Documentation/networking/ |
D | tcp.txt | 45 heuristics. There are also round trip time based algorithms like
|
D | ip-sysctl.txt | 1807 The initial round trip timeout value in milliseconds that will be used 1808 in calculating round trip times. This is the initial time interval 1814 The maximum value (in milliseconds) of the round trip timeout. This 1820 The minimum value (in milliseconds) of the round trip timeout. This
|
/linux-4.4.14/Documentation/watchdog/ |
D | watchdog-api.txt | 234 WDIOS_TEMPPANIC Kernel panic on temperature trip
|
/linux-4.4.14/Documentation/input/ |
D | xpad.txt | 120 Thanks to the trip splitter found on the cable you don't even need to cut the
|
/linux-4.4.14/net/ipv4/ |
D | Kconfig | 576 high speed long delay links. It uses round-trip-time to
|