created | 2020-03-28T21:26:16Z |
---|---|
begin | 2020-03-25T00:00:00Z |
end | 2020-03-26T00:00:00Z |
path | src/sys |
commits | 6 |
date | 2020-03-25T05:30:18Z | |||
---|---|---|---|---|
author | jmatthew | |||
files | src/sys/dev/pci/qle.c | log | diff | annotate |
message |
Indicate that the case handling data underruns falls through to the case handling overruns and normal completions. CID 1452878. |
date | 2020-03-25T11:39:58Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/net/pipex.c | log | diff | annotate |
message |
Grab the NET_LOCK() before calling pipex_iface_stop(). This function calls pipex_destroy_session() which requires the lock and pipex_ioctl() already calls it with the NET_LOCK() held. From Vitaliy Makkoveev. |
date | 2020-03-25T14:55:14Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/uvm/uvm_map.c | log | diff | annotate |
message |
Do not test against NULL a variable which is dereference before that. CID 1453116 ok kettenis@ |
date | 2020-03-25T14:59:23Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/arch/amd64/amd64/db_trace.c | log | diff | annotate |
src/sys/arch/i386/i386/db_trace.c | log | diff | annotate | |
src/sys/arch/sparc64/sparc64/db_trace.c | log | diff | annotate | |
src/sys/dev/dt/dt_dev.c | log | diff | annotate | |
src/sys/dev/dt/dt_prov_profile.c | log | diff | annotate | |
src/sys/dev/dt/dt_prov_static.c | log | diff | annotate | |
src/sys/dev/dt/dt_prov_syscall.c | log | diff | annotate | |
src/sys/dev/dt/dtvar.h | log | diff | annotate | |
src/sys/sys/stacktrace.h | log | diff | annotate | |
message |
Introduce stacktrace_save_at() and make use of it in dt(4). This variant of stacktrace_save() takes an aditionnal argument to skip an arbitrary number of frame. This allows to skip recording frames used to execute the profiling code and produces outputs easier to understand. Inputs from and ok visa@ |
date | 2020-03-25T17:20:46Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/dev/pci/if_ix.c | log | diff | annotate |
src/sys/dev/pci/if_ix.h | log | diff | annotate | |
message | Revert introduction of MSI-X code, deraadt@ reported a regression on i386. |
date | 2020-03-25T21:29:04Z | |||
---|---|---|---|---|
author | tobhe | |||
files | src/sys/dev/softraid_raid0.c | log | diff | annotate |
message |
Add missing %s in sr_error, otherwise 'sd->sd_name' is not printed. ok kn@ |