OpenBSD cvs log

created 2020-08-02T08:02:43Z
begin 2020-07-25T00:00:00Z
end 2020-07-26T00:00:00Z
path src/sys
commits 6

date 2020-07-25T00:48:03Z
author cheloha
files src/sys/sys/timeout.h log diff annotate
message timeout(9): remove TIMEOUT_SCHEDULED flag

The TIMEOUT_SCHEDULED flag was added a few months ago to differentiate
between wheel timeouts and new timeouts during softclock(). The
distinction is useful when incrementing the "rescheduled" stat and the
"late" stat.

Now that we have an intermediate queue for new timeouts, timeout_new,
we don't need the flag. The distinction between wheel timeouts and
new timeouts can be made computationally.

Suggested by procter@ several months ago.

date 2020-07-25T00:48:04Z
author cheloha
files src/sys/kern/kern_timeout.c log diff annotate
message timeout(9): remove TIMEOUT_SCHEDULED flag

The TIMEOUT_SCHEDULED flag was added a few months ago to differentiate
between wheel timeouts and new timeouts during softclock(). The
distinction is useful when incrementing the "rescheduled" stat and the
"late" stat.

Now that we have an intermediate queue for new timeouts, timeout_new,
we don't need the flag. The distinction between wheel timeouts and
new timeouts can be made computationally.

Suggested by procter@ several months ago.

date 2020-07-25T10:11:38Z
author kettenis
files src/sys/arch/powerpc64/powerpc64/pmap.c log diff annotate
message Change kernel SLB setup code to avoid the (theoretical) possibility to
enter duplicate mappings.

date 2020-07-25T12:26:09Z
author tobhe
files src/sys/arch/arm64/arm64/db_disasm.c log diff annotate
src/sys/arch/arm64/arm64/disasm.c log diff annotate
src/sys/arch/arm64/arm64/disasm.h log diff annotate
src/sys/arch/arm64/conf/files.arm64 log diff annotate
message Port over NetBSD's arm64 disassembler for DDB.

ok kettenis@, patrick@

date 2020-07-25T13:50:49Z
author krw
files src/sys/dev/ic/wd33c93var.h log diff annotate
message Nuke unused struct scsi_link member of struct wd33c93_softc.

SGI compile tests by visa@

date 2020-07-25T16:34:30Z
author krw
files src/sys/dev/sdmmc/sdmmc_scsi.c log diff annotate
message No need for a bzero(), just init saa.sf to NULL. All the saa.saa
fields are explicitly initialized.