created | 2022-03-03T18:32:01Z |
---|---|
begin | 2022-02-28T00:00:00Z |
end | 2022-03-01T00:00:00Z |
path | src/sys |
commits | 6 |
date | 2022-02-28T00:12:11Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_etherip.c | log | diff | annotate |
message |
add the mbuf tags that prevent output loops. mostly copied from vxlan where the tag is checked in output and set in encap. etherip appears to be one of the first drivers i reworked, so it's a bit crufty. the ipv4 vs ipv6 handling could be done better. |
date | 2022-02-28T02:40:16Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/drm_linux.c | log | diff | annotate |
src/sys/dev/pci/drm/include/linux/pci.h | log | diff | annotate | |
message | add pcie_aspm_enabled() for the next linux 5.15.y release |
date | 2022-02-28T09:01:29Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/include/linux/pm_qos.h | log | diff | annotate |
src/sys/dev/pci/drm/include/linux/radix-tree.h | log | diff | annotate | |
message | remove some unused defines |
date | 2022-02-28T14:48:11Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/scsi/scsi_base.c | log | diff | annotate |
src/sys/scsi/scsi_debug.h | log | diff | annotate | |
src/sys/scsi/scsiconf.c | log | diff | annotate | |
message |
Shuffle some SCSIDEBUG code to simplify code, tersify the emitted verbiage, and show INQUIRY header & vendor info early so humans can more easily determine what scsi_probe_link() will do. No functional change outside SCSIDEBUG. |
date | 2022-02-28T15:49:57Z | |||
---|---|---|---|---|
author | visa | |||
files | src/sys/arch/mips64/mips64/trap.c | log | diff | annotate |
message | Remove unneeded symbol name lookup. |
date | 2022-02-28T15:51:02Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/arm64/dev/apldart.c | log | diff | annotate |
message |
The IOMMUs integrated on Apple's M1 Pro/MaxJ SoC use a different page table layout where the physical (CPU) address needs to be shifted to allow for the larger physical address space implemented in these SoCs. Make apldart(4) handle this new page table layout based on the compatible property. ok jsg@ |