created | 2019-05-02T15:36:16Z |
---|---|
begin | 2019-04-27T00:00:00Z |
end | 2019-04-28T00:00:00Z |
path | src/sys |
commits | 15 |
date | 2019-04-27T04:46:03Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_vlan.c | log | diff | annotate |
src/sys/net/if_vlan_var.h | log | diff | annotate | |
message |
move the struct ifvlan (the vlan softc) definition into if_vlan.c. nothing needs to see inside it, so it can move. the next steps are to rename it to vlan_softc and all the variables to sc to make the driver move consistent with the rest of the tree. ok visa@ mpi@ |
date | 2019-04-27T04:53:01Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_vlan.c | log | diff | annotate |
message |
rename struct ifvlan to struct vlan_softc this makes it more consistent with the rest of the tree, but has no functional change. |
date | 2019-04-27T04:56:41Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_vlan.c | log | diff | annotate |
message | whitespace tweaks. no functional change. |
date | 2019-04-27T05:08:30Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_vlan.c | log | diff | annotate |
message | call vlan_softc variables sc, not ifv. no functional change. |
date | 2019-04-27T05:11:50Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_vlan.c | log | diff | annotate |
message | fix some whitespace. |
date | 2019-04-27T05:14:33Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_pair.c | log | diff | annotate |
src/sys/net/if_vlan.c | log | diff | annotate | |
src/sys/net/Attic/if_wg.c | log | diff | annotate | |
src/sys/net/Attic/if_wg.h | log | diff | annotate | |
message | get rid of ifv_linkmib and a bunch of useless macros |
date | 2019-04-27T05:16:15Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_pair.c | log | diff | annotate |
message | this wasnt meant to be committed, back out for now. |
date | 2019-04-27T05:24:02Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/Attic/if_wg.c | log | diff | annotate |
src/sys/net/Attic/if_wg.h | log | diff | annotate | |
message | back out, this isn't part of a vlan change. |
date | 2019-04-27T05:28:00Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_vlan.c | log | diff | annotate |
message |
rename softc members so theyre prefixed with sc. makes vlan more consistent with the rest of the tree, but no functional change. |
date | 2019-04-27T05:30:13Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_vlan.c | log | diff | annotate |
message | remove sc_proto, it isn't used. |
date | 2019-04-27T05:31:42Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_vlan.c | log | diff | annotate |
message | rename sc_prio to sc_txprio |
date | 2019-04-27T05:37:24Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_vlan.c | log | diff | annotate |
message | use unsigned int, not u_int, and uintXX_t, not u_intXX_t |
date | 2019-04-27T05:55:27Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_vlan.c | log | diff | annotate |
message |
don't increment noproto on the parent interface when there's no child it's not atomic is the main reason. this simplifies leaving the function too. |
date | 2019-04-27T05:58:17Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_vlan.c | log | diff | annotate |
message |
fix up some rxprio handling while here we should swap the value off the wire for 802.1P, not the rxhprio config value. try and avoid toctou issues by copying the sc_rxprio value to a local. |
date | 2019-04-27T08:10:32Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/ttm/ttm_page_alloc.c | log | diff | annotate |
message |
drm/ttm: fix out-of-bounds read in ttm_put_pages() v2 From Christian Koenig 96800ba9e565ab752774cd88328f96aed28a1436 in linux 4.19.y/4.19.37 a66477b0efe511d98dde3e4aaeb189790e6f0a39 in mainline linux |