created | 2020-01-18T02:09:28Z |
---|---|
begin | 2020-01-11T00:00:00Z |
end | 2020-01-12T00:00:00Z |
path | src/sys |
commits | 22 |
date | 2020-01-11T00:56:37Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/files.pci | log | diff | annotate |
src/sys/dev/pci/Attic/sli_pci.c | log | diff | annotate | |
message |
remove sli(4) This driver was never completed. It only mapped memory and established an interrupt. ok krw@ mlarkin@ dlg@ |
date | 2020-01-11T00:56:38Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/conf/files | log | diff | annotate |
src/sys/dev/ic/Attic/sli.c | log | diff | annotate | |
src/sys/dev/ic/Attic/slireg.h | log | diff | annotate | |
src/sys/dev/ic/Attic/slivar.h | log | diff | annotate | |
message |
remove sli(4) This driver was never completed. It only mapped memory and established an interrupt. ok krw@ mlarkin@ dlg@ |
date | 2020-01-11T01:18:29Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/dev/fdt/sximmc.c | log | diff | annotate |
message |
sximmc(4): tsleep(9) -> tsleep_nsec(9) mpi@ missed this one in the prior commit. probably ok bluhm@ |
date | 2020-01-11T08:16:18Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/dev/ic/acx.c | log | diff | annotate |
message | acx(4): tsleep(9) -> tsleep_nsec(9); ok claudio@ |
date | 2020-01-11T08:23:05Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/dev/pcmcia/if_malo.c | log | diff | annotate |
message |
pcmcia(4): malo(4): tsleep(9) -> tsleep_nsec(9) This command response sleep has no units, but in practice it is a 5 second timeout on 100hz platforms. claudio@ notes that waiting 5 seconds for a command response from this hardware is excessive and that the "500" was probably meant to be in milliseconds. But absent a problem he suggests leaving the sleep as-is, so we're keeping the 5 seconds. ok claudio@ |
date | 2020-01-11T08:24:08Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/dev/pci/bktr/bktr_tuner.c | log | diff | annotate |
message | bktr(4): one more tsleep(9) -> tsleep_nsec(9) conversion; ok ratchov@ |
date | 2020-01-11T09:08:39Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/dev/pci/autri.c | log | diff | annotate |
message | autri(4): tsleep(9) -> tsleep_nsec(9); ok ratchov@ |
date | 2020-01-11T09:09:09Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/dev/pci/eap.c | log | diff | annotate |
message | eap(4): tsleep(9) -> tsleep_nsec(9); ok ratchov@ |
date | 2020-01-11T10:32:16Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/fdt/rkemmcphy.c | log | diff | annotate |
message |
The eMMC on my firefly-rk3399 doesn't work reliably when the output tap delay is enabled. So leave those bits alone and use whatever the bootloader set them to. ok patrick@ |
date | 2020-01-11T11:30:47Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/i2c/i2c_io.h | log | diff | annotate |
message |
Add constants to support block mode. Needed to support SMBus block read and write. ok claudio@ |
date | 2020-01-11T14:30:24Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/kern/subr_extent.c | log | diff | annotate |
src/sys/kern/subr_log.c | log | diff | annotate | |
src/sys/kern/tty_pty.c | log | diff | annotate | |
message |
Convert infinite sleeps to tsleep_nsec(9). ok bluhm@ |
date | 2020-01-11T16:41:30Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/arch/arm64/arm64/copystr.S | log | diff | annotate |
message |
fix dup #include from alex naumov |
date | 2020-01-11T18:51:54Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/ipmi.c | log | diff | annotate |
message |
Make sure we use signed types in the sensor value calculation; 'char' is unsigned on some of our hardware platforms! ok deraadt@ |
date | 2020-01-11T20:07:40Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/ic/dwiic.c | log | diff | annotate |
message |
Implement block mode. Tweak an error message while there. ok claudio@ |
date | 2020-01-11T20:41:34Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/i2c/ipmi_i2c.c | log | diff | annotate |
message |
Use block mode for smbus access as required by the IPMI standard and implement multi-block transfers. ok claudio@ |
date | 2020-01-11T21:30:00Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/dev/pv/xenstore.c | log | diff | annotate |
message | xenstore: *sleep(9) -> *sleep_nsec(9); ok mikeb@ |
date | 2020-01-11T21:34:03Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/dev/pci/hifn7751.c | log | diff | annotate |
message |
hifn(4): timeout_add(9) -> timeout_add_msec(9) The idea here is to poll no faster than 100 times a second. So rename "sc_rnghz" to "sc_rngms" and set it to 10ms, then switch from timeout_add(9) to timeout_add_msec(9). ok bluhm@ |
date | 2020-01-11T21:34:04Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/dev/pci/hifn7751var.h | log | diff | annotate |
message |
hifn(4): timeout_add(9) -> timeout_add_msec(9) The idea here is to poll no faster than 100 times a second. So rename "sc_rnghz" to "sc_rngms" and set it to 10ms, then switch from timeout_add(9) to timeout_add_msec(9). ok bluhm@ |
date | 2020-01-11T21:38:11Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/dev/ic/ami.c | log | diff | annotate |
message | ami(4): msleep(9) -> msleep_nsec(9); ok kn@ |
date | 2020-01-11T22:31:25Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/dev/usb/usbdevs | log | diff | annotate |
message | add SIERRA MC7700 |
date | 2020-01-11T22:37:50Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/dev/usb/usbdevs.h | log | diff | annotate |
src/sys/dev/usb/usbdevs_data.h | log | diff | annotate | |
message | sync |
date | 2020-01-11T22:43:15Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/dev/usb/umsm.c | log | diff | annotate |
message | MC7700 works as umsm |