created | 2021-03-28T04:02:16Z |
---|---|
begin | 2021-03-20T00:00:00Z |
end | 2021-03-21T00:00:00Z |
path | src/sys |
commits | 4 |
date | 2021-03-20T01:15:28Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/netinet/ip_output.c | log | diff | annotate |
message |
use m_dup_pkthdr in ip_fragment to copy pkthdr info to fragments. this ensures more stuff is copied, in particular the flowid information. this is also how v6 does it, which makes things more consistent. ok bluhm@ |
date | 2021-03-20T10:24:21Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/uvm/uvm_addr.c | log | diff | annotate |
src/sys/uvm/uvm_amap.c | log | diff | annotate | |
src/sys/uvm/uvm_anon.c | log | diff | annotate | |
src/sys/uvm/uvm_aobj.c | log | diff | annotate | |
src/sys/uvm/uvm_device.c | log | diff | annotate | |
src/sys/uvm/uvm_fault.c | log | diff | annotate | |
src/sys/uvm/uvm_init.c | log | diff | annotate | |
src/sys/uvm/uvm_io.c | log | diff | annotate | |
src/sys/uvm/uvm_km.c | log | diff | annotate | |
message |
Sync some comments in order to reduce the difference with NetBSD. No functionnal change. ok kettenis@ |
date | 2021-03-20T11:26:07Z | |||
---|---|---|---|---|
author | semarie | |||
files | src/sys/kern/vfs_lookup.c | log | diff | annotate |
message |
namei: reorganize a bit the error path for simples cases - move 'fail' label to end of function (instead of using the first if-condition) - merge the most simples error code paths idioms from 'cleanup+return' to 'goto-fail' ok mpi@ |
date | 2021-03-20T17:08:57Z | |||
---|---|---|---|---|
author | florian | |||
files | src/sys/net/if.c | log | diff | annotate |
message |
RFC 8981 allows the configuration of only temporary IPv6 addresses. Make the interface come up when the IFXF_AUTOCONF6TEMP is set. OK kn |