created | 2020-11-19T18:50:53Z |
---|---|
begin | 2020-06-20T00:00:00Z |
end | 2020-06-21T00:00:00Z |
path | src/sys |
commits | 5 |
date | 2020-06-20T01:04:23Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/i915/display/intel_fbdev.c | log | diff | annotate |
message |
make zeroing fb mem conditional matching linux path ok kettenis@ |
date | 2020-06-20T07:49:04Z | |||
---|---|---|---|---|
author | otto | |||
files | src/sys/ufs/ffs/ffs_alloc.c | log | diff | annotate |
src/sys/ufs/ffs/fs.h | log | diff | annotate | |
message |
With filesystem having many cylinder groups and many inodes per cg the ncg * ipg calcualtion can overflow if signed types are used. Move to uint32_t for the relevant values. Aligned with FreeBSD changes. Also make sure newfs refuses to create an fs with more that 2^32-1 inodes. ok millert@ |
date | 2020-06-20T16:06:05Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/dev/pci/bktr/bktr_os.c | log | diff | annotate |
message |
Make FUNCTION()/UNIT() return valid major/minor device numbers rather than always returning 0. bktr0..bktr15 should now 'work'. COVERITY 1452865 COVERITY 1452956 COVERITY 1453025 COVERITY 1453186 COVERITY 1453231 ian@'s bktr still works as well as it did before. |
date | 2020-06-20T18:06:22Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/dev/acpi/amdgpio.c | log | diff | annotate |
message |
Shifts (<<) of more than 32 bits must be done on 64-bit values. COVERITY 1491295 ok kettenis@ |
date | 2020-06-20T18:13:18Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/arm64/conf/GENERIC | log | diff | annotate |
src/sys/dev/fdt/bcm2711_tmon.c | log | diff | annotate | |
src/sys/dev/fdt/files.fdt | log | diff | annotate | |
message |
Add bcmtmon(4), a driver for the temperature sensor on the Raspberry Pi 4. Written by Alastair Poole. |