created | 2019-07-09T07:35:25Z |
---|---|
begin | 2019-07-02T00:00:00Z |
end | 2019-07-03T00:00:00Z |
path | src/sys |
commits | 10 |
date | 2019-07-02T02:09:59Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/drm_fb_helper.c | log | diff | annotate |
src/sys/dev/pci/drm/i915/i915_perf.c | log | diff | annotate | |
src/sys/dev/pci/drm/i915/intel_breadcrumbs.c | log | diff | annotate | |
src/sys/dev/pci/drm/i915/intel_guc_ct.c | log | diff | annotate | |
src/sys/dev/pci/drm/i915/intel_guc_submission.c | log | diff | annotate | |
src/sys/dev/pci/drm/i915/intel_lpe_audio.c | log | diff | annotate | |
src/sys/dev/pci/drm/include/linux/spinlock_types.h | log | diff | annotate | |
message |
Use IPL_TTY for locks used as arguments to spin_lock_irq() and spin_lock_irqsave() to closer match the linux interrupt blocking behaviour. Prompted by a discussion with kettenis@. ok kettenis@ |
date | 2019-07-02T06:40:49Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/i915/intel_guc.c | log | diff | annotate |
message |
Use IPL_TTY for locks used as arguments to spin_lock_irq() and spin_lock_irqsave() to closer match the linux interrupt blocking behaviour. Prompted by a discussion with kettenis@. |
date | 2019-07-02T09:04:53Z | |||
---|---|---|---|---|
author | yasuoka | |||
files | src/sys/net/pf.c | log | diff | annotate |
src/sys/net/pf_lb.c | log | diff | annotate | |
src/sys/net/pfvar.h | log | diff | annotate | |
message |
When source address tracking record is used for "route-to", the next hop interface configured with "route-to" was not used. Keep the interface within the pf_src_node and use it when the record is used. OK sashan |
date | 2019-07-02T14:54:36Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/kern/kern_time.c | log | diff | annotate |
src/sys/sys/time.h | log | diff | annotate | |
message | R.I.P. timespecfix(); ok visa@ mpi@ |
date | 2019-07-02T15:26:07Z | |||
---|---|---|---|---|
author | jcs | |||
files | src/sys/dev/pci/drm/i915/intel_fbdev.c | log | diff | annotate |
message |
re-add framebuffer size change from 1.4 that was lost in the big update ok jsg |
date | 2019-07-02T20:12:11Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/arm64/dev/mainbus.c | log | diff | annotate |
src/sys/dev/ofw/files.ofw | log | diff | annotate | |
src/sys/dev/ofw/ofw_thermal.c | log | diff | annotate | |
src/sys/dev/ofw/ofw_thermal.h | log | diff | annotate | |
message |
Add thermal zone handling code. This provides support for thermal zones defined in device trees that link together thermal sensors and cooling devices to actively or passively cool devices when certain trip points are reached. ok mlarkin@ patrick@ |
date | 2019-07-02T20:13:50Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/arm64/arm64/cpu.c | log | diff | annotate |
src/sys/arch/arm64/include/cpu.h | log | diff | annotate | |
message |
Register cpu(4) as a cooling device. This supports passive cooling by clamping the maximum DVFS state. ok mlarkin@, patrick@ |
date | 2019-07-02T20:14:44Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/fdt/rktemp.c | log | diff | annotate |
message |
Register rktemp(4) as a thermal sensor with the thermal zone support code. ok mlarkin@, patrick@ |
date | 2019-07-02T20:42:45Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/powerpc/include/tcb.h | log | diff | annotate |
message |
Drop % from register name used for register variable since it makes clang unhappy. ok deraadt@, visa@ |
date | 2019-07-02T21:17:24Z | |||
---|---|---|---|---|
author | jcs | |||
files | src/sys/dev/acpi/acpi.c | log | diff | annotate |
src/sys/dev/acpi/acpiec.c | log | diff | annotate | |
src/sys/dev/acpi/acpivar.h | log | diff | annotate | |
message |
acpi_set_gpehandler: turn edge arg into flags, add support for passing GPE_DIRECT which directly executes the supplied callback and clears a level interrupt rather than going through acpi_taskq which can be slow when other driver callbacks are in the queue. This should not be used for GPE handlers that need to do anything ACPI-related. ok kettenis |