created | 2022-12-18T08:45:05Z |
---|---|
begin | 2022-12-14T00:00:00Z |
end | 2022-12-15T00:00:00Z |
path | src/sys |
commits | 4 |
date | 2022-12-14T13:55:11Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/armv7/armv7/autoconf.c | log | diff | annotate |
message |
Put an splhigh() at the start of cpu_configure() to prevent splasserts trigger in autoconf. Matches what we do on (many) other architectures. ok miod@ |
date | 2022-12-14T23:28:31Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/pcidevs | log | diff | annotate |
message | add id for Navi 31, Radeon RX 7900 XT/XTX (gfx1100, GC 11.0.0) |
date | 2022-12-14T23:29:09Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/pcidevs.h | log | diff | annotate |
src/sys/dev/pci/pcidevs_data.h | log | diff | annotate | |
message | regen |
date | 2022-12-14T23:50:31Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/arch/sparc64/conf/files.sparc64 | log | diff | annotate |
src/sys/lib/libkern/ctzdi2.c | log | diff | annotate | |
message |
add __ctzdi2 to sparc64 kernel If __builtin_ctzl() is used on sparc64, gcc 4.2 will emit a call to __ctzdi2. For userland this is in libgcc or compiler-rt. In the kernel we put these functions in libkern. 'looks good' deraadt@ miod@ |