2023-12-21 05:46:41

by Guo Ren

[permalink] [raw]
Subject: [PATCH] loongarch: mm: Remove unused TASK_SIZE_MIN

From: Guo Ren <[email protected]>

Remove TASK_SIZE_MIN because it's not used anymore.

Signed-off-by: Guo Ren <[email protected]>
Signed-off-by: Guo Ren <[email protected]>
---
arch/loongarch/include/asm/processor.h | 2 --
1 file changed, 2 deletions(-)

diff --git a/arch/loongarch/include/asm/processor.h b/arch/loongarch/include/asm/processor.h
index c3bc44b5f5b3..99c80396f63a 100644
--- a/arch/loongarch/include/asm/processor.h
+++ b/arch/loongarch/include/asm/processor.h
@@ -20,7 +20,6 @@
#ifdef CONFIG_32BIT

#define TASK_SIZE 0x80000000UL
-#define TASK_SIZE_MIN TASK_SIZE
#define STACK_TOP_MAX TASK_SIZE

#define TASK_IS_32BIT_ADDR 1
@@ -33,7 +32,6 @@
#define TASK_SIZE64 (0x1UL << ((cpu_vabits > VA_BITS) ? VA_BITS : cpu_vabits))

#define TASK_SIZE (test_thread_flag(TIF_32BIT_ADDR) ? TASK_SIZE32 : TASK_SIZE64)
-#define TASK_SIZE_MIN TASK_SIZE32
#define STACK_TOP_MAX TASK_SIZE64

#define TASK_SIZE_OF(tsk) \
--
2.40.1