created | 2020-11-07T23:49:42Z |
---|---|
begin | 2020-11-06T00:00:00Z |
end | 2020-11-07T00:00:00Z |
path | src/sys |
commits | 7 |
date | 2020-11-06T02:45:47Z | |||
---|---|---|---|---|
author | jmatthew | |||
files | src/sys/dev/pci/if_mcx.c | log | diff | annotate |
message |
Bail out early if the port type is not Ethernet, rather than failing later on in the attach process with a useless error message. tested on a ConnectX-6 card in infiniband mode by Nilson Lopes ok dlg@ |
date | 2020-11-06T02:50:02Z | |||
---|---|---|---|---|
author | jmatthew | |||
files | src/sys/dev/pci/if_mcx.c | log | diff | annotate |
message |
Match on ConnectX-6 (non-Dx) cards too. tested by Nilson Lopes |
date | 2020-11-06T03:10:44Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/include/linux/mm_types.h | log | diff | annotate |
src/sys/dev/pci/drm/include/linux/rwsem.h | log | diff | annotate | |
src/sys/dev/pci/drm/include/linux/spinlock.h | log | diff | annotate | |
message | move definitions which should be in rwsem.h |
date | 2020-11-06T11:52:39Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/dev/pci/drm/drm_gem.c | log | diff | annotate |
src/sys/dev/pci/drm/i915/gem/i915_gem_mman.c | log | diff | annotate | |
src/sys/dev/pci/drm/ttm/ttm_bo_vm.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_fault.h | log | diff | annotate | |
message |
Remove unused `anon' argument from uvmfault_unlockall(). It won't be used when amap and anon locking will be introduced. This "fixes" passing a unrelated/uninitialized pointer in an error path in case of memory shortage. ok kettenis@ |
date | 2020-11-06T13:22:07Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/dev/pci/drm/drm_gem_cma_helper.c | log | diff | annotate |
message |
Remove unused `anon' argument from uvmfault_unlockall(). It won't be used when amap and anon locking will be introduced. This "fixes" passing a unrelated/uninitialized pointer in an error path in case of memory shortage. ok kettenis@ |
date | 2020-11-06T13:29:45Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/fdt/mvclock.c | log | diff | annotate |
message |
The ClearFog GT 8K device tree references the PP22's gate clock instead of the core clock, so add this one to mvclock(4) as well. ok kettenis@ |
date | 2020-11-06T13:32:38Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/arch/arm64/arm64/autoconf.c | log | diff | annotate |
src/sys/arch/arm64/arm64/machdep.c | log | diff | annotate | |
message |
Clean up arm64's autoconf code. There have been quite a few unused variables and includes. While there get rid of the boot_file support and (void) casts. ok kettenis@ |