created | 2022-06-12T00:03:49Z |
---|---|
begin | 2022-06-07T00:00:00Z |
end | 2022-06-08T00:00:00Z |
path | src/sys |
commits | 5 |
date | 2022-06-07T12:02:52Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/uvm/uvm_swap.c | log | diff | annotate |
message |
Remove redundant check for free pages. The pmemrange code that is called by uvm_pglistalloc(9) does a similar check already. ok mpi@ |
date | 2022-06-07T12:07:45Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/uvm/uvm_extern.h | log | diff | annotate |
src/sys/uvm/uvm_km.c | log | diff | annotate | |
message |
Remove uvm_km_valloc_prefer_wait(9) and uvm_km_free_wakeup(9) now that nothing uses these functions anymore. ok mpi@ |
date | 2022-06-07T18:55:55Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/riscv64/conf/RAMDISK | log | diff | annotate |
message | Enable stfclock(4) and make xhci(4) attach to fdt. |
date | 2022-06-07T22:14:15Z | |||
---|---|---|---|---|
author | sashan | |||
files | src/sys/net/pf_table.c | log | diff | annotate |
message |
fixes NULL pointer dereference panic triggered by relayd. same panic can be triggered when address table is part of anchor loaded by 'load anchor ... from ..,' statement. pf_find_or_create_ruleset() function called by pfr_add_tables() must receive ruleset name which comes from pre-allocated root table. OK claudio@ dlg@ |
date | 2022-06-07T22:18:34Z | |||
---|---|---|---|---|
author | sashan | |||
files | src/sys/net/if.c | log | diff | annotate |
message |
fixes potential memory leak. if_vinput() should always consume packet by either passing it further or releasing it. OK mvs@ |