created | 2018-11-30T06:04:57Z |
---|---|
begin | 2018-10-10T00:00:00Z |
end | 2018-10-11T00:00:00Z |
path | src/sys |
commits | 2 |
date | 2018-10-10T00:04:54Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/kern/kern_clock.c | log | diff | annotate |
message |
User land time accounting has changed when kernel spinning time was introduced. Account spinning time to the process system time again. time(1) has no spinning, it only shows real, user, sys. OK visa@ mpi@ deraadt@ |
date | 2018-10-10T11:46:59Z | |||
---|---|---|---|---|
author | reyk | |||
files | src/sys/netinet/ip_mroute.c | log | diff | annotate |
src/sys/netinet6/ip6_mroute.c | log | diff | annotate | |
src/sys/netinet6/ip6_var.h | log | diff | annotate | |
message |
RT_TABLEID_MAX is 255, fix places that assumed that it is less than 255. rtable 255 is a valid routing table or domain id that wasn't handled by the ip[6]_mroute code or by snmpd. The arrays in the ip[6]_mroute code where off by one and didn't allocate space for rtable 255; snmpd simply ignored rtable 255. All other places in the tree seem to handle RT_TABLEID_MAX correctly. OK florian@ benno@ henning@ deraadt@ |