created | 2022-05-14T22:25:00Z |
---|---|
begin | 2022-05-13T00:00:00Z |
end | 2022-05-14T00:00:00Z |
path | src/sys |
commits | 12 |
date | 2022-05-13T03:05:05Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/include/xen/xen.h | log | diff | annotate |
message | add xen.h for 5.15.39 drm |
date | 2022-05-13T03:13:31Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/amd/display/dc/core/dc_link_dp.c | log | diff | annotate |
message |
drm/amd/display: Avoid reading audio pattern past AUDIO_CHANNELS_COUNT From Harry Wentland c10bab89a1bea395b2f6970529e38bef54ebf792 in linux 5.15.y/5.15.39 3dfe85fa87b2a26bdbd292b66653bba065cf9941 in mainline linux |
date | 2022-05-13T03:17:30Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/amd/amdgpu/amdgpu_virt.c | log | diff | annotate |
message |
drm/amdgpu: do not use passthrough mode in Xen dom0 From Marek Marczykowski-Gorecki 1a78d8fe6606aabcbdecef1745446f5a923a8e0a in linux 5.15.y/5.15.39 19965d8259fdabc6806da92adda49684f5bcbec5 in mainline linux |
date | 2022-05-13T03:20:30Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/amd/amdgpu/amdgpu_debugfs.c | log | diff | annotate |
src/sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c | log | diff | annotate | |
src/sys/dev/pci/drm/amd/amdgpu/amdgpu_object.c | log | diff | annotate | |
src/sys/dev/pci/drm/amd/amdgpu/amdgpu_object.h | log | diff | annotate | |
src/sys/dev/pci/drm/amd/amdgpu/amdgpu_ttm.c | log | diff | annotate | |
src/sys/dev/pci/drm/amd/amdgpu/amdgpu_ttm.h | log | diff | annotate | |
message |
drm/amdgpu: unify BO evicting method in amdgpu_ttm From Nirmoy Das 90253ae21c6b55532abad261e3a7dfa809c3bae9 in linux 5.15.y/5.15.39 58144d283712c9e80e528e001af6ac5aeee71af2 in mainline linux |
date | 2022-05-13T03:24:22Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c | log | diff | annotate |
message |
drm/amdgpu: explicitly check for s0ix when evicting resources From Mario Limonciello 22b80bff17261427a5e152e537c3ec76fb356aec in linux 5.15.y/5.15.39 e53d9665ab003df0ece8f869fcd3c2bbbecf7190 in mainline linux |
date | 2022-05-13T03:28:25Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/amd/amdgpu/amdgpu_drv.c | log | diff | annotate |
message |
drm/amdgpu: don't set s3 and s0ix at the same time From Mario Limonciello 060102fbd92d2d514c4a4da71d555cf9b7d65faa in linux 5.15.y/5.15.39 eac4c54bf7f17fb4681b85e5fe383b74d6261a2b in mainline linux |
date | 2022-05-13T03:32:08Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/amd/amdgpu/amdgpu_drv.c | log | diff | annotate |
message |
drm/amdgpu: Ensure HDA function is suspended before ASIC reset From Kai-Heng Feng 94ca25aed1234eaab273da94f548bf6f52ea2f7a in linux 5.15.y/5.15.39 887f75cfd0da44c19dda93b2ff9e70ca8792cdc1 in mainline linux |
date | 2022-05-13T04:23:46Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/drm_cache.c | log | diff | annotate |
message | reduce diff to linux |
date | 2022-05-13T05:06:56Z | |||
---|---|---|---|---|
author | stsp | |||
files | src/sys/dev/pci/if_iwx.c | log | diff | annotate |
src/sys/dev/pci/if_iwxvar.h | log | diff | annotate | |
message |
Make iwx(4) load a0-hr-b0 firmware on AX211 devices which require it. Firmware for these devices was added in iwx-firmware-20220110p0. On Linux these devices may show up as "AX201", even though they belong to the AX210 hardware family. Intel's driver can be confusing at times. Tested by Guilherme M. Schroeder, who previously had a non-working device. |
date | 2022-05-13T08:48:40Z | |||
---|---|---|---|---|
author | stsp | |||
files | src/sys/dev/pci/if_iwx.c | log | diff | annotate |
message |
Show the iwx(4) firmware filename if 'ifconfig iwx0 debug' is active. This should help with diagnosing device matching bugs. The matching logic has become increasingly complex. Knowing which firmware file was selected is useful information which cannot be inferred from the PCI device ID alone anymore. |
date | 2022-05-13T15:32:00Z | |||
---|---|---|---|---|
author | claudio | |||
files | src/sys/kern/kern_fork.c | log | diff | annotate |
src/sys/kern/kern_sig.c | log | diff | annotate | |
src/sys/kern/kern_synch.c | log | diff | annotate | |
src/sys/sys/proc.h | log | diff | annotate | |
src/sys/sys/signalvar.h | log | diff | annotate | |
src/sys/sys/sysctl.h | log | diff | annotate | |
message |
Use the process ps_mtx to protect the process sigacts structure. With this cursig(), postsig() and trapsignal() become safe to be called without KERNEL_LOCK. As a side-effect sleep with PCATCH no longer needs the KERNEL_LOCK either. Since sending a signal can happen from interrupt context raise the ps_mtx IPL to high. Feedback from mpi@ and kettenis@ OK kettenis@ |
date | 2022-05-13T18:19:32Z | |||
---|---|---|---|---|
author | dv | |||
files | src/sys/arch/amd64/amd64/vmm.c | log | diff | annotate |
src/sys/arch/amd64/include/vmmvar.h | log | diff | annotate | |
message |
vmm: add additional fault type, fixing vm receive After vmm(4)/vmd(8) "receive" a vm via vmctl(8), vmd on Intel hosts was incorrectly identifying the fault type for nested page fault exits and resetting the vm. This commit adds a new fault type to signify the page fault was serviced in vmm and any exit to userland does not require an assist. ok mlarkin@ |