created | 2022-01-30T19:25:39Z |
---|---|
begin | 2022-01-23T00:00:00Z |
end | 2022-01-24T00:00:00Z |
path | src/sys |
commits | 2 |
date | 2022-01-23T21:44:31Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/netinet/tcp_var.h | log | diff | annotate |
message |
Define all TCP TF_ flags as unsigned numbers. They are stored in u_int t_flags. Shifting TF_TIMER with TCPT_DELACK can touch the sign bit. found by kubsan; suggested by deraadt@; OK miod@ |
date | 2022-01-23T22:53:03Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/i915/gem/i915_gem_mman.c | log | diff | annotate |
message |
move uao_reference() call before uvm_map() other uses in the kernel do this as uvm_map() may sleep and the segment may be deallocated while sleeping without a reference kettenis notes that shouldn't happen here due to a obj reference from an earlier i915_gem_object_lookup() call ok visa@ kettenis@ |