Re: [PATCH] kernel/entry: Remove unneeded header "common.h"
From: Thomas Gleixner
Date: Fri Jun 13 2025 - 12:13:17 EST
On Wed, Jun 11 2025 at 07:23, Khalid Ali wrote:
> syscall_user_dispatch() is part syscall user dispatch and it has a
> header already, so this patch moves that function to
> include/linux/syscall_user_dispatch.h which fits well. In that case we don't need
> common.h anymore. All functions related to syscall
> user dispatch are on that header i mentioned, so this one shouldn't be
> special. We need to access the function from that header.
This word salad does not qualify as a change log. Please read
https://www.kernel.org/doc/html/latest/process/maintainer-tip.html#changelog
including the documentation it links to.
The reason why common.h exists is that syscall_user_dispatch() is a
internal function, which is on purpose not exposed globally. There is no
reason to expose it globally, so it stays where it is.
Thanks,
tglx