Re: [PATCH v6 06/18] x86/kasan: Add arch specific kasan functions
From: Alexander Potapenko
Date: Tue Nov 11 2025 - 04:32:12 EST
> +#ifdef CONFIG_64BIT
> +static inline void *__tag_set(const void *__addr, u8 tag)
> +{
> + u64 addr = (u64)__addr;
> +
> + addr &= ~__tag_shifted(KASAN_TAG_MASK);
KASAN_TAG_MASK is only defined in Patch 07, does this patch compile?