created | 2021-12-25T22:30:07Z |
---|---|
begin | 2021-12-22T00:00:00Z |
end | 2021-12-23T00:00:00Z |
path | src/sys |
commits | 6 |
date | 2021-12-22T01:38:36Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/amd/amdgpu/amdgpu_gem.c | log | diff | annotate |
src/sys/dev/pci/drm/amd/amdgpu/amdgpu_uvd.c | log | diff | annotate | |
src/sys/dev/pci/drm/amd/amdgpu/amdgpu_vce.c | log | diff | annotate | |
src/sys/dev/pci/drm/amd/amdgpu/amdgpu_vm.c | log | diff | annotate | |
message | %Lx -> %llx kernel printf does not support %Lx |
date | 2021-12-22T12:30:38Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/amd/pm/swsmu/smu12/smu_v12_0.c | log | diff | annotate |
message |
drm/amd/pm: fix a potential gpu_metrics_table memory leak From Lang Yu 222cebd995cdf11fe0d502749560f65e64990e55 in linux 5.10.y/5.10.88 aa464957f7e660abd554f2546a588f6533720e21 in mainline linux |
date | 2021-12-22T12:33:02Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/amd/amdgpu/gfx_v9_0.c | log | diff | annotate |
message |
drm/amdgpu: correct register access for RLC_JUMP_TABLE_RESTORE From Le Ma aec5897b277b13acd8f913d777654d4d092a24f1 in linux 5.10.y/5.10.88 f3a8076eb28cae1553958c629aecec479394bbe2 in mainline linux |
date | 2021-12-22T13:37:46Z | |||
---|---|---|---|---|
author | tobhe | |||
files | src/sys/netinet/ipsec_input.c | log | diff | annotate |
message |
Consolidate enc_getif() lookups in IPsec input path to save one lookup per packet and improve readability. ok bluhm@ |
date | 2021-12-22T19:37:33Z | |||
---|---|---|---|---|
author | tobhe | |||
files | src/sys/dev/ic/bwfm.c | log | diff | annotate |
message |
Disable minimum power consumption in hostap mode. This improves connection reliability when bwfm is used as an access point. ok patrick@ |
date | 2021-12-22T22:20:13Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/kern/kern_sysctl.c | log | diff | annotate |
src/sys/kern/subr_disk.c | log | diff | annotate | |
message |
While malloc sleeps, the disk list could change during sysctl. Then allocated memory could be too short for the list of disks. Retry allocating enough space until it did not change. The disk list and duid memory are protected by kernel lock. Use asserts to mark this explicitly. Reported-by: [email protected] OK anton@ mpi@ |