On Tue, Feb 24, 2026 at 06:47:20PM -0800, Kees Cook wrote: > The vdso_u_time_data, vdso_u_rng_data, and vdso_u_arch_data arrays > are seen by GCC as single instances (due to their declarations in > include/vdso/datapage.h). When the vdso data pointers are dereferenced > with an offset, GCC thinks there is an access beyond the returned single > instance. These are actually arrays constructed at link time, so declare > them as such.
I found 2 more places I needed to make "&var" to "var" changes. I'll send a v2... -- Kees Cook

