[PATCH 0/8] sched: Remove unused TASK_SIZE_OF
STALE1721d
Revision v1 of 2 in this series.
14 messages,
3 authors,
2021-12-22 · open the first message on its own page
From: Guo Ren <redacted>
This macro isn't used in Linux, now. Delete in include/linux/sched.h
and arch's include/asm. This would confuse people who are
implementing the COMPAT feature for architecture.
Guo Ren (8):
sched: Remove unused TASK_SIZE_OF
sched: x86: Remove unused TASK_SIZE_OF
sched: sparc: Remove unused TASK_SIZE_OF
sched: powerpc: Remove unused TASK_SIZE_OF
sched: s390: Remove unused TASK_SIZE_OF
sched: parisc: Remove unused TASK_SIZE_OF
sched: arm64: Remove unused TASK_SIZE_OF
sched: mips: Remove unused TASK_SIZE_OF
arch/arm64/include/asm/processor.h | 2 --
arch/mips/include/asm/processor.h | 3 ---
arch/parisc/include/asm/processor.h | 3 +--
arch/powerpc/include/asm/task_size_64.h | 6 ++----
arch/s390/include/asm/processor.h | 3 +--
arch/sparc/include/asm/processor_64.h | 3 ---
arch/x86/include/asm/page_64_types.h | 2 --
include/linux/sched.h | 4 ----
8 files changed, 4 insertions(+), 22 deletions(-)
--
2.25.1
From: Guo Ren <redacted>
This macro isn't used in Linux, now. Delete in include/linux/sched.h
and arch's include/asm. This would confuse people who are
implementing the COMPAT feature for architecture.
Signed-off-by: Guo Ren <redacted>
---
include/linux/sched.h | 4 ----
1 file changed, 4 deletions(-)
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 78c351e35fec..8e5689d06ac8 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h @@ -2166,10 +2166,6 @@ static inline bool vcpu_is_preempted(int cpu)
extern long sched_setaffinity ( pid_t pid , const struct cpumask * new_mask );
extern long sched_getaffinity ( pid_t pid , struct cpumask * mask );
- #ifndef TASK_SIZE_OF
- #define TASK_SIZE_OF(tsk) TASK_SIZE
- #endif
-
#ifdef CONFIG_SMP
/* Returns effective CPU energy utilization, as seen by the scheduler */
unsigned long sched_cpu_util ( int cpu , unsigned long max ); --
2.25.1
From: Guo Ren <redacted>
This macro isn't used in Linux, now. Delete in
include/linux/sched.h and arch's include/asm.
Signed-off-by: Guo Ren <redacted>
---
arch/x86/include/asm/page_64_types.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/arch/x86/include/asm/page_64_types.h b/arch/x86/include/asm/page_64_types.h
index e9e2c3ba5923..6191cf417c31 100644
--- a/arch/x86/include/asm/page_64_types.h
+++ b/arch/x86/include/asm/page_64_types.h @@ -74,8 +74,6 @@
IA32_PAGE_OFFSET : DEFAULT_MAP_WINDOW )
#define TASK_SIZE (test_thread_flag(TIF_ADDR32) ? \
IA32_PAGE_OFFSET : TASK_SIZE_MAX )
- #define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_ADDR32)) ? \
- IA32_PAGE_OFFSET : TASK_SIZE_MAX )
#define STACK_TOP TASK_SIZE_LOW
#define STACK_TOP_MAX TASK_SIZE_MAX --
2.25.1
From: Guo Ren <redacted>
This macro isn't used in Linux, now. Delete in
include/linux/sched.h and arch's include/asm.
Signed-off-by: Guo Ren <redacted>
---
arch/sparc/include/asm/processor_64.h | 3 ---
1 file changed, 3 deletions(-)
diff --git a/arch/sparc/include/asm/processor_64.h b/arch/sparc/include/asm/processor_64.h
index ae851e8fce4c..628349fc4cdd 100644
--- a/arch/sparc/include/asm/processor_64.h
+++ b/arch/sparc/include/asm/processor_64.h @@ -27,9 +27,6 @@
#define VPTE_SIZE (1 << (VA_BITS - PAGE_SHIFT + 3))
#endif
- #define TASK_SIZE_OF(tsk) \
- ( test_tsk_thread_flag ( tsk , TIF_32BIT ) ? \
- ( 1UL << 32UL ) : (( unsigned long ) - VPTE_SIZE ))
#define TASK_SIZE \
( test_thread_flag ( TIF_32BIT ) ? \
( 1UL << 32UL ) : (( unsigned long ) - VPTE_SIZE )) --
2.25.1
From: Guo Ren <redacted>
This macro isn't used in Linux sched, now. Delete in
include/linux/sched.h and arch's include/asm.
Signed-off-by: Guo Ren <redacted>
---
arch/powerpc/include/asm/task_size_64.h | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/arch/powerpc/include/asm/task_size_64.h b/arch/powerpc/include/asm/task_size_64.h
index c993482237ed..7e2eca4fac4d 100644
--- a/arch/powerpc/include/asm/task_size_64.h
+++ b/arch/powerpc/include/asm/task_size_64.h @@ -44,12 +44,10 @@
*/
#define TASK_SIZE_USER32 (0x0000000100000000UL - (1 * PAGE_SIZE))
- #define TASK_SIZE_OF(tsk) \
- ( test_tsk_thread_flag ( tsk , TIF_32BIT ) ? TASK_SIZE_USER32 : \
+ #define TASK_SIZE \
+ ( test_tsk_thread_flag ( current , TIF_32BIT ) ? TASK_SIZE_USER32 : \
TASK_SIZE_USER64 )
- #define TASK_SIZE TASK_SIZE_OF(current)
-
#define TASK_UNMAPPED_BASE_USER32 (PAGE_ALIGN(TASK_SIZE_USER32 / 4))
#define TASK_UNMAPPED_BASE_USER64 (PAGE_ALIGN(DEFAULT_MAP_WINDOW_USER64 / 4))
--
2.25.1
From: Guo Ren <redacted>
This macro isn't used in Linux sched, now. Delete in
include/linux/sched.h and arch's include/asm.
Signed-off-by: Guo Ren <redacted>
---
arch/s390/include/asm/processor.h | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/arch/s390/include/asm/processor.h b/arch/s390/include/asm/processor.h
index f54c152bf2bf..605bc57a5ffc 100644
--- a/arch/s390/include/asm/processor.h
+++ b/arch/s390/include/asm/processor.h @@ -88,11 +88,10 @@ extern void __bpon(void);
* User space process size : 2 GB for 31 bit , 4 TB or 8 PT for 64 bit .
*/
- #define TASK_SIZE_OF(tsk) (test_tsk_thread_flag(tsk, TIF_31BIT) ? \
+ #define TASK_SIZE (test_tsk_thread_flag(current, TIF_31BIT) ? \
_REGION3_SIZE : TASK_SIZE_MAX )
#define TASK_UNMAPPED_BASE (test_thread_flag(TIF_31BIT) ? \
( _REGION3_SIZE >> 1 ) : ( _REGION2_SIZE >> 1 ))
- #define TASK_SIZE TASK_SIZE_OF(current)
#define TASK_SIZE_MAX (-PAGE_SIZE)
#define STACK_TOP (test_thread_flag(TIF_31BIT) ? \ --
2.25.1
From: Guo Ren <redacted>
This macro isn't used in Linux sched, now. Delete in
include/linux/sched.h and arch's include/asm.
Signed-off-by: Guo Ren <redacted>
---
arch/parisc/include/asm/processor.h | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/arch/parisc/include/asm/processor.h b/arch/parisc/include/asm/processor.h
index b669f4b9040b..d9c8dc76ee6a 100644
--- a/arch/parisc/include/asm/processor.h
+++ b/arch/parisc/include/asm/processor.h @@ -23,8 +23,7 @@
#define HAVE_ARCH_PICK_MMAP_LAYOUT
- #define TASK_SIZE_OF(tsk) ((tsk)->thread.task_size)
- #define TASK_SIZE TASK_SIZE_OF(current)
+ #define TASK_SIZE (current->thread.task_size)
#define TASK_UNMAPPED_BASE (current->thread.map_base)
#define DEFAULT_TASK_SIZE32 (0xFFF00000UL) --
2.25.1
From: Guo Ren <redacted>
This macro isn't used in Linux sched, now. Delete in
include/linux/sched.h and arch's include/asm.
Signed-off-by: Guo Ren <redacted>
---
arch/arm64/include/asm/processor.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/arch/arm64/include/asm/processor.h b/arch/arm64/include/asm/processor.h
index 6f41b65f9962..d24dfb49237d 100644
--- a/arch/arm64/include/asm/processor.h
+++ b/arch/arm64/include/asm/processor.h @@ -65,8 +65,6 @@
#endif /* CONFIG_ARM64_64K_PAGES */
#define TASK_SIZE (test_thread_flag(TIF_32BIT) ? \
TASK_SIZE_32 : TASK_SIZE_64 )
- #define TASK_SIZE_OF(tsk) (test_tsk_thread_flag(tsk, TIF_32BIT) ? \
- TASK_SIZE_32 : TASK_SIZE_64 )
#define DEFAULT_MAP_WINDOW (test_thread_flag(TIF_32BIT) ? \
TASK_SIZE_32 : DEFAULT_MAP_WINDOW_64 )
#else --
2.25.1
From: Guo Ren <redacted>
This macro isn't used in Linux sched, now. Delete in
include/linux/sched.h and arch's include/asm.
Signed-off-by: Guo Ren <redacted>
---
arch/mips/include/asm/processor.h | 3 ---
1 file changed, 3 deletions(-)
diff --git a/arch/mips/include/asm/processor.h b/arch/mips/include/asm/processor.h
index 4bb24579d12e..8871fc5b0baa 100644
--- a/arch/mips/include/asm/processor.h
+++ b/arch/mips/include/asm/processor.h @@ -61,9 +61,6 @@ extern int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src
#define TASK_SIZE (test_thread_flag(TIF_32BIT_ADDR) ? TASK_SIZE32 : TASK_SIZE64)
#define STACK_TOP_MAX TASK_SIZE64
- #define TASK_SIZE_OF(tsk) \
- ( test_tsk_thread_flag ( tsk , TIF_32BIT_ADDR ) ? TASK_SIZE32 : TASK_SIZE64 )
-
#define TASK_IS_32BIT_ADDR test_thread_flag(TIF_32BIT_ADDR)
#endif --
2.25.1
On Tue, Dec 21, 2021 at 6:00 PM [off-list ref] wrote:
From: Guo Ren <redacted>
This macro isn't used in Linux, now. Delete in include/linux/sched.h
and arch's include/asm. This would confuse people who are
implementing the COMPAT feature for architecture.
Signed-off-by: Guo Ren <redacted>
It would help to list how long it has been unused for. Looking through
the git history, I see commit a06db751c321 ("pagemap: check
permissions and capabilities at open time") removing the last user.
I would normally offer to take the entire series through the asm-generic
tree, as I do for this kind of cross-architecture work. I'll probably
not have time before the merge window to pick it up though, so it
may be better to go through the architecture trees, or possibly
linux-mm for anything that fails to get picked up.
For the series:
Review-by: Arnd Bergmann [off-list ref]
Le 21/12/2021 à 18:00, guoren@kernel.org a écrit : quoted hunk From: Guo Ren <redacted>
This macro isn't used in Linux sched, now. Delete in
include/linux/sched.h and arch's include/asm.
Signed-off-by: Guo Ren <redacted>
---
arch/powerpc/include/asm/task_size_64.h | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/arch/powerpc/include/asm/task_size_64.h b/arch/powerpc/include/asm/task_size_64.h
index c993482237ed..7e2eca4fac4d 100644
--- a/arch/powerpc/include/asm/task_size_64.h
+++ b/arch/powerpc/include/asm/task_size_64.h @@ -44,12 +44,10 @@
*/
#define TASK_SIZE_USER32 (0x0000000100000000UL - (1 * PAGE_SIZE))
- #define TASK_SIZE_OF(tsk) \
- ( test_tsk_thread_flag ( tsk , TIF_32BIT ) ? TASK_SIZE_USER32 : \
+ #define TASK_SIZE \
+ ( test_tsk_thread_flag ( current , TIF_32BIT ) ? TASK_SIZE_USER32 : \
TASK_SIZE_USER64 )
I think you should use test_thread_flag() instead.
Or even better: use is_32bit_task() and bring back this macro as a
single line, something like:
#define TASK_SIZE (is_32bit_task() ? TASK_SIZE_USER32 : TASK_SIZE_USER64)
-#define TASK_SIZE TASK_SIZE_OF(current)
-
#define TASK_UNMAPPED_BASE_USER32 (PAGE_ALIGN(TASK_SIZE_USER32 / 4))
#define TASK_UNMAPPED_BASE_USER64 (PAGE_ALIGN(DEFAULT_MAP_WINDOW_USER64 / 4))
On Wed, Dec 22, 2021 at 2:43 AM Christophe Leroy
[off-list ref] wrote:
Le 21/12/2021 à 18:00, guoren@kernel.org a écrit : quoted From: Guo Ren <redacted>
This macro isn't used in Linux sched, now. Delete in
include/linux/sched.h and arch's include/asm.
Signed-off-by: Guo Ren <redacted>
---
arch/powerpc/include/asm/task_size_64.h | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/arch/powerpc/include/asm/task_size_64.h b/arch/powerpc/include/asm/task_size_64.h
index c993482237ed..7e2eca4fac4d 100644
--- a/arch/powerpc/include/asm/task_size_64.h
+++ b/arch/powerpc/include/asm/task_size_64.h @@ -44,12 +44,10 @@
*/
#define TASK_SIZE_USER32 (0x0000000100000000UL - (1 * PAGE_SIZE))
- #define TASK_SIZE_OF(tsk) \
- ( test_tsk_thread_flag ( tsk , TIF_32BIT ) ? TASK_SIZE_USER32 : \
+ #define TASK_SIZE \
+ ( test_tsk_thread_flag ( current , TIF_32BIT ) ? TASK_SIZE_USER32 : \
TASK_SIZE_USER64 )
I think you should use test_thread_flag() instead.
Or even better: use is_32bit_task() and bring back this macro as a
single line, something like:
#define TASK_SIZE (is_32bit_task() ? TASK_SIZE_USER32 : TASK_SIZE_USER64) Okay, looks better. I would fix it in the next version.
quoted
-#define TASK_SIZE TASK_SIZE_OF(current)
-
#define TASK_UNMAPPED_BASE_USER32 (PAGE_ALIGN(TASK_SIZE_USER32 / 4))
#define TASK_UNMAPPED_BASE_USER64 (PAGE_ALIGN(DEFAULT_MAP_WINDOW_USER64 / 4))
--
Best Regards
Guo Ren
ML: https://lore.kernel.org/linux-csky/
Le 22/12/2021 à 04:02, Guo Ren a écrit : On Wed, Dec 22, 2021 at 2:43 AM Christophe Leroy
[off-list ref] wrote: quoted
Le 21/12/2021 à 18:00, guoren@kernel.org a écrit : quoted From: Guo Ren <redacted>
This macro isn't used in Linux sched, now. Delete in
include/linux/sched.h and arch's include/asm.
Signed-off-by: Guo Ren <redacted>
---
arch/powerpc/include/asm/task_size_64.h | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/arch/powerpc/include/asm/task_size_64.h b/arch/powerpc/include/asm/task_size_64.h
index c993482237ed..7e2eca4fac4d 100644
--- a/arch/powerpc/include/asm/task_size_64.h
+++ b/arch/powerpc/include/asm/task_size_64.h @@ -44,12 +44,10 @@
*/
#define TASK_SIZE_USER32 (0x0000000100000000UL - (1 * PAGE_SIZE))
- #define TASK_SIZE_OF(tsk) \
- ( test_tsk_thread_flag ( tsk , TIF_32BIT ) ? TASK_SIZE_USER32 : \
+ #define TASK_SIZE \
+ ( test_tsk_thread_flag ( current , TIF_32BIT ) ? TASK_SIZE_USER32 : \
TASK_SIZE_USER64 )
I think you should use test_thread_flag() instead.
Or even better: use is_32bit_task() and bring back this macro as a
single line, something like:
#define TASK_SIZE (is_32bit_task() ? TASK_SIZE_USER32 : TASK_SIZE_USER64) Okay, looks better. I would fix it in the next version.
Note that is_32bit_task() exists on powerpc, parisc and sparc.
For other ones you can still use test_thread_flag() instead of
test_tsk_thread_flag(current)
Got it. Thx
On Wed, Dec 22, 2021 at 3:27 PM Christophe Leroy
[off-list ref] wrote:
Le 22/12/2021 à 04:02, Guo Ren a écrit : quoted On Wed, Dec 22, 2021 at 2:43 AM Christophe Leroy
[off-list ref] wrote: quoted
Le 21/12/2021 à 18:00, guoren@kernel.org a écrit : quoted From: Guo Ren <redacted>
This macro isn't used in Linux sched, now. Delete in
include/linux/sched.h and arch's include/asm.
Signed-off-by: Guo Ren <redacted>
---
arch/powerpc/include/asm/task_size_64.h | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/arch/powerpc/include/asm/task_size_64.h b/arch/powerpc/include/asm/task_size_64.h
index c993482237ed..7e2eca4fac4d 100644
--- a/arch/powerpc/include/asm/task_size_64.h
+++ b/arch/powerpc/include/asm/task_size_64.h @@ -44,12 +44,10 @@
*/
#define TASK_SIZE_USER32 (0x0000000100000000UL - (1 * PAGE_SIZE))
- #define TASK_SIZE_OF(tsk) \
- ( test_tsk_thread_flag ( tsk , TIF_32BIT ) ? TASK_SIZE_USER32 : \
+ #define TASK_SIZE \
+ ( test_tsk_thread_flag ( current , TIF_32BIT ) ? TASK_SIZE_USER32 : \
TASK_SIZE_USER64 )
I think you should use test_thread_flag() instead.
Or even better: use is_32bit_task() and bring back this macro as a
single line, something like:
#define TASK_SIZE (is_32bit_task() ? TASK_SIZE_USER32 : TASK_SIZE_USER64) Okay, looks better. I would fix it in the next version.
Note that is_32bit_task() exists on powerpc, parisc and sparc.
For other ones you can still use test_thread_flag() instead of
test_tsk_thread_flag(current)
--
Best Regards
Guo Ren
ML: https://lore.kernel.org/linux-csky/