arm64: stacktrace: track all stack boundaries explicitly
[linux-2.6-microblaze.git] / arch / arm64 / include / asm / stacktrace.h
index aad0c62..5a0edb0 100644 (file)
@@ -30,7 +30,6 @@ static inline struct stack_info stackinfo_get_irq(void)
        return (struct stack_info) {
                .low = low,
                .high = high,
-               .type = STACK_TYPE_IRQ,
        };
 }
 
@@ -48,7 +47,6 @@ static inline struct stack_info stackinfo_get_task(const struct task_struct *tsk
        return (struct stack_info) {
                .low = low,
                .high = high,
-               .type = STACK_TYPE_TASK,
        };
 }
 
@@ -70,7 +68,6 @@ static inline struct stack_info stackinfo_get_overflow(void)
        return (struct stack_info) {
                .low = low,
                .high = high,
-               .type = STACK_TYPE_OVERFLOW,
        };
 }
 #else
@@ -89,7 +86,6 @@ static inline struct stack_info stackinfo_get_sdei_normal(void)
        return (struct stack_info) {
                .low = low,
                .high = high,
-               .type = STACK_TYPE_SDEI_NORMAL,
        };
 }
 
@@ -101,7 +97,6 @@ static inline struct stack_info stackinfo_get_sdei_critical(void)
        return (struct stack_info) {
                .low = low,
                .high = high,
-               .type = STACK_TYPE_SDEI_CRITICAL,
        };
 }
 #else