OpenBSD cvs log

created 2019-06-01T11:02:58Z
begin 2019-05-29T00:00:00Z
end 2019-05-30T00:00:00Z
path src/sys
commits 3

date 2019-05-29T04:31:16Z
author jmatthew
files src/sys/dev/pci/if_mcx.c log diff annotate
message Add jumbo frame support. Set the port MTU as high as we can (up to 9500)
and allocate dma maps and receive buffers to match.

ok dlg@

date 2019-05-29T07:17:26Z
author stsp
files src/sys/net80211/ieee80211.c log diff annotate
src/sys/net80211/ieee80211_node.c log diff annotate
message Repair the 'ifconfig mode' command.

The 'mode' command is supposed to force a wireless interface into 11a/b/g/n
media mode. This stopped working some time ago, probably during my work on
background scanning. Problem spotted by mlarkin@ who noticed that interfaces
were using 11g mode while forced to 11b mode.

ok phessler, jmatthew

date 2019-05-29T15:22:04Z
author deraadt
files src/sys/kern/vfs_getcwd.c log diff annotate
message The past is fuzzy, but it appears during development of __getcwd, *retval
was used to return the length of the path, when the actual return value is 0.
This would cause confusing results in ktrace.
Diagnosed with beck since __realpath() picked up the same odd behaviour