On Mon, Aug 12, 2024 at 03:09:24PM +0100, Andre Przywara wrote:
/* Did we find the lowest supported VL? */
if (use_sme && vq < sve_vq_from_vl(vl))
break;
We don't need the use_sme check here, SVE is just architecturally guaranteed to never trip the && case. Unless you add a warning for broken implementations I'd just skip it.