created | 2020-11-27T03:36:22Z |
---|---|
begin | 2020-09-12T00:00:00Z |
end | 2020-09-13T00:00:00Z |
path | src/sys |
commits | 12 |
date | 2020-09-12T07:47:26Z | |||
---|---|---|---|---|
author | mglocker | |||
files | src/sys/arch/amd64/conf/GENERIC | log | diff | annotate |
src/sys/arch/i386/conf/GENERIC | log | diff | annotate | |
src/sys/dev/acpi/asmc.c | log | diff | annotate | |
src/sys/dev/acpi/files.acpi | log | diff | annotate | |
message |
Make asmc(4) attach through acpi(4) instead of isa(4). This e.g. makes the driver also work on iMac11,2. ok kettenis@, jung@ |
date | 2020-09-12T07:47:27Z | |||
---|---|---|---|---|
author | mglocker | |||
files | src/sys/dev/isa/files.isa | log | diff | annotate |
message |
Make asmc(4) attach through acpi(4) instead of isa(4). This e.g. makes the driver also work on iMac11,2. ok kettenis@, jung@ |
date | 2020-09-12T07:55:43Z | |||
---|---|---|---|---|
author | mglocker | |||
files | src/sys/dev/isa/Attic/asmc.c | log | diff | annotate |
message | asmc(4) found a new home in sys/dev/acpi. |
date | 2020-09-12T11:57:24Z | |||
---|---|---|---|---|
author | beck | |||
files | src/sys/kern/vfs_bio.c | log | diff | annotate |
message |
Add a NULL check in bufbackoff so we don't die when passed a NULL pmem range. Noticed by, and based on a diff from Mike Small <[email protected]>. |
date | 2020-09-12T13:44:38Z | |||
---|---|---|---|---|
author | kn | |||
files | src/sys/net/if_spppsubr.c | log | diff | annotate |
message |
Add sizes to free() calls These are the last ones in if_pppoe.c and if_spppsubr.c. OK beck |
date | 2020-09-12T15:01:05Z | |||
---|---|---|---|---|
author | mglocker | |||
files | src/sys/arch/amd64/conf/GENERIC | log | diff | annotate |
src/sys/arch/i386/conf/GENERIC | log | diff | annotate | |
message |
asmc0 -> asmc* Now that asmc(4) attaches through acpi(4), other than with isa(4), acpi(4) could attach multiple SMC chips in theory, even though in practice there will be only one SMC chip per machine. Suggested and ok kettenis@ |
date | 2020-09-12T15:54:51Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/scsi/safte.c | log | diff | annotate |
src/sys/scsi/safte.h | log | diff | annotate | |
message |
No need to ask for extra INQUIRY data, all available data is already cached in scsi_link's inqdata. |
date | 2020-09-12T16:51:04Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/scsi/safte.c | log | diff | annotate |
src/sys/scsi/ses.c | log | diff | annotate | |
message |
No need to check inq for NULL when it always points at the inqdata inside a scsi_link. |
date | 2020-09-12T17:03:51Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/scsi/safte.c | log | diff | annotate |
message | Use SID_SCSI2_RESPONSE instead of '2' when checking INQUIRY data format. |
date | 2020-09-12T17:08:49Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/uvm/uvm_fault.c | log | diff | annotate |
message |
Add tracepoints in the page fault handler and when entries are added to maps. ok kettenis@ |
date | 2020-09-12T17:08:50Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/dev/dt/dt_prov_static.c | log | diff | annotate |
src/sys/uvm/uvm_map.c | log | diff | annotate | |
message |
Add tracepoints in the page fault handler and when entries are added to maps. ok kettenis@ |
date | 2020-09-12T20:12:09Z | |||
---|---|---|---|---|
author | kn | |||
files | src/sys/net/if_trunk.c | log | diff | annotate |
message |
Keep port interface UP on removal There is no reason to change flags on member interfaces when removing them, aggr(4) does not pull its members down either. OK florian bluhm |