created | 2019-02-03T05:25:39Z |
---|---|
begin | 2019-01-29T00:00:00Z |
end | 2019-01-30T00:00:00Z |
path | src/sys |
commits | 11 |
date | 2019-01-29T01:39:30Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/dev/pci/if_ixl.c | log | diff | annotate |
message |
don't need to print the base queue number. ok jmatthew@ |
date | 2019-01-29T01:41:29Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/dev/pci/if_ixl.c | log | diff | annotate |
message |
get rid of some more debug printfs suggested by jmatthew@ |
date | 2019-01-29T02:43:05Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/arch/sparc64/conf/GENERIC | log | diff | annotate |
message |
ixl works fine on sparc64 ok deraadt@ jmatthew@ |
date | 2019-01-29T03:08:19Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_mpw.c | log | diff | annotate |
message | use a sockaddr_mpls when preparing an AF_MPLS sockaddr for mpls_output |
date | 2019-01-29T03:12:12Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_mpw.c | log | diff | annotate |
message | call the "parent" interface ifp0 to be consistent with other drivers. |
date | 2019-01-29T09:35:16Z | |||
---|---|---|---|---|
author | kevlo | |||
files | src/sys/dev/ic/rtwn.c | log | diff | annotate |
message |
Accept control frames in monitor mode. Based on a diff from Jesper Wallin. ok jmatthew@, stsp@ |
date | 2019-01-29T14:07:15Z | |||
---|---|---|---|---|
author | visa | |||
files | src/sys/kern/kern_sysctl.c | log | diff | annotate |
src/sys/kern/subr_witness.c | log | diff | annotate | |
src/sys/sys/sysctl.h | log | diff | annotate | |
src/sys/sys/witness.h | log | diff | annotate | |
message |
Add a dedicated sysctl(2) node for witness(4). The new node contains the subsystem's main control variable, kern.witness.watch. It is aliased by the old name, kern.witnesswatch. The alias will be removed in the future. OK anton@ mpi@ |
date | 2019-01-29T17:47:35Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/net/if_bridge.c | log | diff | annotate |
src/sys/net/if_bridge.h | log | diff | annotate | |
message |
Plumbing to simplify upcoming locking. - Do checks that do not access shared data structures first, they don't need locking and save us some dances. - Use the common !ETHER_IS_MULTICAST() idiom and move some code that won't be executed if the bridge(4) is down. ok bluhm@, visa@ |
date | 2019-01-29T18:25:26Z | |||
---|---|---|---|---|
author | mglocker | |||
files | src/sys/dev/ic/pckbc.c | log | diff | annotate |
message |
Discard unwanted mouse events from the keyboard input channel when we're on the console. Issue reported by deraadt@. ok deraadt@, mpi@ |
date | 2019-01-29T22:14:32Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/arch/arm64/conf/RAMDISK | log | diff | annotate |
message |
Enable CRYPTO for arm64 RAMDISK so that we can use softraid crypto. ok deraadt@ |
date | 2019-01-29T23:36:35Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/netmpls/mpls_input.c | log | diff | annotate |
message |
check the result of rtalloc with rtisvalid instead of a compare with NULL based on advice seen from mpi@ |