created | 2019-02-23T16:22:21Z |
---|---|
begin | 2019-02-18T00:00:00Z |
end | 2019-02-19T00:00:00Z |
path | src/sys |
commits | 8 |
date | 2019-02-18T03:41:21Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_ethersubr.c | log | diff | annotate |
message |
get rid of some trailing whitespace. no functional change |
date | 2019-02-18T08:26:19Z | |||
---|---|---|---|---|
author | yasuoka | |||
files | src/sys/arch/amd64/amd64/locore.S | log | diff | annotate |
src/sys/arch/amd64/include/pmap.h | log | diff | annotate | |
message |
Remove PTPpaddr and use proc0.p_addr->u_pcb.pcb_cr3 instead. This also fixes kernel core dump to be readable by savecore. From fukaumi at soum.co.jp ok mlarkin |
date | 2019-02-18T08:26:20Z | |||
---|---|---|---|---|
author | yasuoka | |||
files | src/sys/arch/amd64/amd64/locore0.S | log | diff | annotate |
src/sys/arch/amd64/amd64/machdep.c | log | diff | annotate | |
message |
Remove PTPpaddr and use proc0.p_addr->u_pcb.pcb_cr3 instead. This also fixes kernel core dump to be readable by savecore. From fukaumi at soum.co.jp ok mlarkin |
date | 2019-02-18T08:59:43Z | |||
---|---|---|---|---|
author | kevlo | |||
files | src/sys/dev/pci/pcidevs | log | diff | annotate |
message |
Add another PCI ID for Intel Dual Band Wireless AC 9560, found in thinkpad x1 extreme. ok stsp@ |
date | 2019-02-18T09:02:12Z | |||
---|---|---|---|---|
author | kevlo | |||
files | src/sys/dev/pci/pcidevs.h | log | diff | annotate |
src/sys/dev/pci/pcidevs_data.h | log | diff | annotate | |
message | regen |
date | 2019-02-18T13:11:44Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/net/pf_ioctl.c | log | diff | annotate |
src/sys/net/pfvar.h | log | diff | annotate | |
message |
Change ps_len of struct pfioc_states and psn_len of struct pfioc_src_nodes to size_t. This avoids integer truncation by casts to unsigned. As the types of DIOCGETSTATES and DIOCGETSRCNODES ioctl(2) arguments change, pfctl(8) and systat(1) should be updated together with the kernel. Calculate number of pf(4) states as size_t in userland. OK sashan@ deraadt@ |
date | 2019-02-18T17:39:14Z | |||
---|---|---|---|---|
author | anton | |||
files | src/sys/dev/wscons/wsmux.c | log | diff | annotate |
src/sys/dev/wscons/wsmuxvar.h | log | diff | annotate | |
message |
Serialize access to the list of attached child devices belonging to a wsmux. When invoking wsevsrc_* functions on a attached child device, underlying driver can sleep; this introduces a race where another thread is able to modify the list leading to all kinds of corruptions. ok visa@ Reported-by: [email protected] |
date | 2019-02-18T20:34:37Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/ofw/ofw_regulator.c | log | diff | annotate |
message |
In the voltage regulator getter we need to actually check the GPIO pin before setting the "pin is high" bit in the index for the states. Otherwise the index always has all possible bits sets. ok kettenis@ |