On 7/7/2025 1:03 AM, Kirill A. Shutemov wrote: > In most cases, an access causing a LASS violation results in a general > protection exception (#GP); for stack accesses (those due to > stack-oriented instructions, as well as accesses that implicitly or > explicitly use the SS segment register), a stack fault (#SS) is > generated. > > Handlers for #GP and #SS will now share code to decode the exception > address and retrieve the exception hint string. > > The helper, enum, and array should be renamed as they are no longer > specific to #GP. > > No functional change intended. > > Signed-off-by: Kirill A. Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx> > --- > arch/x86/kernel/dumpstack.c | 6 ++-- > arch/x86/kernel/traps.c | 58 ++++++++++++++++++------------------- > 2 files changed, 32 insertions(+), 32 deletions(-) > Reviewed-by: Sohil Mehta <sohil.mehta@xxxxxxxxx>