created | 2024-02-12T10:13:32Z |
---|---|
begin | 2024-02-09T12:45:10Z |
end | 2024-02-09T12:50:10Z |
path | src/sys |
commits | 1 |
date | 2024-02-09T12:50:10Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/dev/ic/qwxvar.h | log | diff | annotate |
message |
Struct layout of qwx_softc should not depend on NBPFILTER. Due to a missing #include "bpfilter.h", the size of struct qwx_softc varied in different object files. This made the kernel crash on arm64. To make debugging core dumps and libkvm easier, kernel object layout should not depend on kernel config. Remove #if NBPFILTER > 0 from struct definition. problem analysis kettenis@ OK deraadt@ stsp@ |