created | 2019-02-01T12:12:43Z |
---|---|
begin | 2018-02-22T00:00:00Z |
end | 2018-02-23T00:00:00Z |
path | src/sys |
commits | 6 |
date | 2018-02-22T07:33:24Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_gre.c | log | diff | annotate |
message | don't get in the way of setting the rdomain on gre(4) |
date | 2018-02-22T08:47:20Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/net/route.c | log | diff | annotate |
message |
Always reallocate a new memory chunk when changing the gateway of a route entry. This makes sure we pass the correct size to free(9). Reproted by and ok dlg@ |
date | 2018-02-22T09:47:12Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_gre.c | log | diff | annotate |
message | remove some debug code in nvgre |
date | 2018-02-22T20:18:59Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/arch/amd64/include/specialreg.h | log | diff | annotate |
message |
branches: 1.69.2; The GNU assembler does not understand 1ULL, so replace the constant with 1. Then it compiles with gcc, sign and size do not matter here. OK mlarkin@ |
date | 2018-02-22T20:27:14Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/arch/amd64/include/cpu_full.h | log | diff | annotate |
message |
branches: 1.2.2; 1.2.4; The compile time assertion for cpu info did not work with gcc. Rephrase the condition in a way that both gcc and clang accept it. OK guenther@ |
date | 2018-02-22T20:36:40Z | |||
---|---|---|---|---|
author | guenther | |||
files | src/sys/arch/amd64/amd64/pmap.c | log | diff | annotate |
message |
Set the PG_G (global) bit on the special page table entries that are shared between the u-k and u+k tables, because they're actually in *all* tables. ok bluhm@ kettenis@ mlarkin@ |