created | 2019-01-31T09:43:33Z |
---|---|
begin | 2018-01-01T00:00:00Z |
end | 2018-01-02T00:00:00Z |
path | src/sys |
commits | 6 |
date | 2018-01-01T08:23:19Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/kern/init_main.c | log | diff | annotate |
message | copyright++; |
date | 2018-01-01T08:55:43Z | |||
---|---|---|---|---|
author | florian | |||
files | src/sys/kern/exec_script.c | log | diff | annotate |
message |
We are either allocating 2 or three array members. Unroll while loop to be able to call free(9) with sizes. off-by-one pointed out by guenther OK visa |
date | 2018-01-01T09:01:21Z | |||
---|---|---|---|---|
author | florian | |||
files | src/sys/kern/kern_exec.c | log | diff | annotate |
message |
free(9) sizes for sys_execve. Convert the hand rolled loop to strlcpy which gives us the size for free(9). OK visa |
date | 2018-01-01T16:16:23Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/dev/ipmi.c | log | diff | annotate |
message |
The missing NULL check for the return value of malloc(9) with M_NOWAIT is wrong. Use M_WAITOK in ipmi_match() during attach. OK kettenis@ |
date | 2018-01-01T22:41:03Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/pci/if_bwfm_pci.c | log | diff | annotate |
message |
Put the code that prints the firmware's debug console into a function so we can read and print the messages printed by the firmware when we are debugging the driver. |
date | 2018-01-01T22:41:56Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/pci/if_bwfm_pci.c | log | diff | annotate |
message |
For whatever reason the firmware needs more RX buffers available as we typically use, which unfortunately creates a bigger memory foot- print. With this the receive path can be made to work. |