OpenBSD cvs log

created 2024-09-15T01:02:57Z
begin 2024-09-10T00:00:00Z
end 2024-09-11T00:00:00Z
path src/sys
commits 4

date 2024-09-10T05:45:16Z
author jsg
files src/sys/dev/pci/drm/include/linux/device.h log diff annotate
src/sys/dev/pci/drm/include/linux/device/bus.h log diff annotate
message change bus notifier defines into inline functions

date 2024-09-10T12:14:26Z
author claudio
files src/sys/ufs/ufs/ufs_ihash.c log diff annotate
message ufs_ihashget() is also used by the ext2fs code but the DIP() makro does
not handle that. So for now add an ugly hack here to support ext2fs.
This fixes access to ext2fs after the last commit. A better fix can be
implemented in tree.
Reported and OK anton@

date 2024-09-10T14:52:42Z
author bluhm
files src/sys/kern/uipc_mbuf.c log diff annotate
message Fix build of m_print_chain() on sparc64.

Use %zu to print mbuf MHLEN and MLEN in ddb, otherwise gcc complains.

found by claudio@

date 2024-09-10T18:44:04Z
author miod
files src/sys/nfs/nfs_serv.c log diff annotate
message nfsm_srvnamesiz() may set up an NFSERR_NAMETOL error, which nfsm_reply() would
consider as not tragic enough to abort the operation, in order to batch error
replies.

This would end up invoking nfs_namei() using an uninitialized variable as
length, and Bad Things(TM) would happen.

Reported by Claes M Nyberg on bugs@; tweaks & ok claudio@