[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAMj1kXH8cORPizJ_C7pd=eV7E3tr+HzcRyKz6ZuNA-Mo+yoR8Q@mail.gmail.com>
Date: Fri, 30 Aug 2024 11:07:49 +0200
From: Ard Biesheuvel <ardb@...nel.org>
To: David Disseldorp <ddiss@...e.de>
Cc: linux-kernel@...r.kernel.org, linux-kernel-library@...elists.org,
Ingo Molnar <mingo@...hat.com>, Peter Zijlstra <peterz@...radead.org>,
Juri Lelli <juri.lelli@...hat.com>, Vincent Guittot <vincent.guittot@...aro.org>,
Mel Gorman <mgorman@...e.de>, Hajime Tazaki <thehajime@...il.com>
Subject: Re: [PATCH] sched: remove unused __HAVE_THREAD_FUNCTIONS hook support
On Fri, 30 Aug 2024 at 03:26, David Disseldorp <ddiss@...e.de> wrote:
>
> [cc'ing Ard as ia64 remover]
>
> Ping - any thoughts on this patch?
>
> On Thu, 22 Aug 2024 04:33:28 +0000, David Disseldorp wrote:
>
> > __HAVE_THREAD_FUNCTIONS could be defined by architectures wishing to
> > provide their own task_thread_info(), task_stack_page(),
> > setup_thread_stack() and end_of_stack() hooks.
> >
> > Commit cf8e8658100d ("arch: Remove Itanium (IA-64) architecture")
> > removed the last upstream consumer of __HAVE_THREAD_FUNCTIONS, so change
> > the remaining !CONFIG_THREAD_INFO_IN_TASK && !__HAVE_THREAD_FUNCTIONS
> > conditionals to only check for the former case.
> >
> > Signed-off-by: David Disseldorp <ddiss@...e.de>
Reviewed-by: Ard Biesheuvel <ardb@...nel.org>
> > ---
> > include/linux/sched.h | 2 +-
> > include/linux/sched/task_stack.h | 2 +-
> > 2 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/include/linux/sched.h b/include/linux/sched.h
> > index f8d150343d42..9dbcdfe173cf 100644
> > --- a/include/linux/sched.h
> > +++ b/include/linux/sched.h
> > @@ -1874,7 +1874,7 @@ extern unsigned long init_stack[THREAD_SIZE / sizeof(unsigned long)];
> >
> > #ifdef CONFIG_THREAD_INFO_IN_TASK
> > # define task_thread_info(task) (&(task)->thread_info)
> > -#elif !defined(__HAVE_THREAD_FUNCTIONS)
> > +#else
> > # define task_thread_info(task) ((struct thread_info *)(task)->stack)
> > #endif
> >
> > diff --git a/include/linux/sched/task_stack.h b/include/linux/sched/task_stack.h
> > index ccd72b978e1f..55042ff01a6d 100644
> > --- a/include/linux/sched/task_stack.h
> > +++ b/include/linux/sched/task_stack.h
> > @@ -33,7 +33,7 @@ static __always_inline unsigned long *end_of_stack(const struct task_struct *tas
> > #endif
> > }
> >
> > -#elif !defined(__HAVE_THREAD_FUNCTIONS)
> > +#else
> >
> > #define task_stack_page(task) ((void *)(task)->stack)
> >
>
Powered by blists - more mailing lists