created | 2020-10-04T07:55:56Z |
---|---|
begin | 2020-09-27T00:00:00Z |
end | 2020-09-28T00:00:00Z |
path | src/sys |
commits | 5 |
date | 2020-09-27T16:03:55Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/acpi/acpicpu.c | log | diff | annotate |
message |
Make sure acpicpu(4) doesn't attach to Processor nodes that happen to have a _HID. Should fix the issues with broken AML that Janne Johansson reported. This issue should be fixed in a more generic way, but that is too risky for the upcoming release. tested by jmc@ ok deraadt@ |
date | 2020-09-27T16:40:26Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/arch/m88k/m88k/trap.c | log | diff | annotate |
message |
miod's proposal for traps was also wrong, causing one type of kernel trap to reach the userland check. as suggested, this might fix it. |
date | 2020-09-27T16:40:44Z | |||
---|---|---|---|---|
author | matthieu | |||
files | src/sys/nfs/nfs_vnops.c | log | diff | annotate |
message |
nfs_create: after an exclusive create rpc, make sure to update timestamps. This issue was iscovered after rsync 3.2 changed behaviour on an NFS mounted partition.. Change lifted from NetBSD (r 1.204). ok beck@, kn@, deraadt@ |
date | 2020-09-27T16:46:15Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/acpi/dsdt.c | log | diff | annotate |
message |
Add workaround for Lenovo X1 gen 8 which has AML that tries to invoke ToHexString() on a Package. Should probably be replaced by a better solution after release. ok deraadt@ |
date | 2020-09-27T17:25:19Z | |||
---|---|---|---|---|
author | matthieu | |||
files | src/sys/nfs/nfs_vnops.c | log | diff | annotate |
message |
In the previous commit, check tv_nsec, not tv_sec as VNOVAL is a valid valuse of tv_sec but an invalid value for tv_nsec. Noticed by guenther@. ok beck@ deraadt@ |