OpenBSD cvs log

created 2020-03-23T21:58:40Z
begin 2020-03-10T00:00:00Z
end 2020-03-11T00:00:00Z
path src/sys
commits 14

date 2020-03-10T01:11:30Z
author kevlo
files src/sys/dev/usb/if_ure.c log diff annotate
src/sys/dev/usb/usbdevs log diff annotate
message Match on Lenovo OneLink Plus Dock Ethernet.
Tested by David Demelier

date 2020-03-10T01:11:58Z
author kevlo
files src/sys/dev/usb/usbdevs.h log diff annotate
src/sys/dev/usb/usbdevs_data.h log diff annotate
message sync

date 2020-03-10T02:01:21Z
author krw
files src/sys/scsi/sd.c log diff annotate
message Access 4-byte address field with _4btol() not _8btol(), fixing
detecton of a 0 value.

CID 1488899

date 2020-03-10T08:41:19Z
author tobhe
files src/sys/dev/softraid.c log diff annotate
message Remove unused argument to sr_error.

ok kn@ deraadt@

date 2020-03-10T08:45:28Z
author tobhe
files src/sys/net/ifq.c log diff annotate
message Make sure return value 'error' is initialized to '0'.

ok dlg@ deraadt@

date 2020-03-10T09:11:55Z
author tobhe
files src/sys/net/if.c log diff annotate
message Properly exit loop at end of hooks TAILQ.

Feedback from and ok dlg@
ok kn@ todd@

date 2020-03-10T13:50:13Z
author krw
files src/sys/dev/ic/nvme.c log diff annotate
message sgl (scatter gather list) and prpl (physical region page list) are two
different things in the NVMe world. Only the latter is currently
implemented in nvme(4) so rename sc_max_sgl to sc_max_prpl to reflect
this.

No functional change.

date 2020-03-10T14:08:40Z
author krw
files src/sys/dev/ic/nvmevar.h log diff annotate
message Ooops. Need both files.

sgl (scatter gather list) and prpl (physical region page list) are two
different things in the NVMe world. Only the latter is currently
implemented in nvme(4) so rename sc_max_sgl to sc_max_prpl to reflect
this.

No functional change.

date 2020-03-10T14:49:20Z
author krw
files src/sys/dev/ic/nvme.c log diff annotate
message Coverity points out (12 + MAXMPS) can never be less than
12. PAGE_SHIFT is 12 (a.k.a. PAGE_SIZE == 4096) or more on OpenBSD
architectures. So remove some dead code by unconditionally setting
sc_mps (memory page size) to 1 << PAGE_SHIFT.

CID 1491655.

No functional change.

date 2020-03-10T19:20:14Z
author anton
files src/sys/kern/syscalls.master log diff annotate
message Unlock fcntl(2).

ok visa@

date 2020-03-10T19:20:53Z
author anton
files src/sys/kern/init_sysent.c log diff annotate
src/sys/kern/syscalls.c log diff annotate
src/sys/sys/syscall.h log diff annotate
src/sys/sys/syscallargs.h log diff annotate
message regen

date 2020-03-10T21:35:40Z
author krw
files src/sys/net/route.c log diff annotate
message The return value of rt_ifa_purge() is ignored, so stop
returning a (possibly uninitialized) value.

CID 1483466.

ok millert@

date 2020-03-10T21:35:41Z
author krw
files src/sys/net/route.h log diff annotate
message The return value of rt_ifa_purge() is ignored, so stop
returning a (possibly uninitialized) value.

CID 1483466.

ok millert@

date 2020-03-10T22:31:36Z
author krw
files src/sys/dev/ic/adw.c log diff annotate
message Variables 'nowait' amd 'flags' should have died in 2008 with r1.36's
removal of internal queuing of scsi_xfer's. Put them out of their
misery. Nuke an obsolete comment in passing.

CID 1453357.