Re: [PATCH 2/2] Fixed: Kernel: user_c: fixed whitespace & intendation errors

From: Petr Mladek
Date: Thu Jul 25 2024 - 04:06:11 EST


Adding Andrew into Cc who usually takes patches for core kernel code
without a dedicated maintainer.

On Sat 2024-07-13 23:11:37, mohitpawar@xxxxxxxxxxxx wrote:
> From: Mohit0404 <mohitpawar@xxxxxxxxxxxx>
>
> Resolved -
> ERROR: trailing whitespace
> ERROR: space required before the open parenthesis '('
> ---
> kernel/user.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/kernel/user.c b/kernel/user.c
> index aa1162deafe4..9e07264fd6f7 100644
> --- a/kernel/user.c
> +++ b/kernel/user.c
> @@ -6,7 +6,7 @@
> *
> * We have a per-user structure to keep track of how many
> * processes, files etc the user has claimed, in order to be
> - * able to have per-user limits for system resources.
> + * able to have per-user limits for system resources.
> */
>
> #include <linux/init.h>
> @@ -249,7 +249,7 @@ static int __init uid_cache_init(void)
> uid_cachep = kmem_cache_create("uid_cache", sizeof(struct user_struct),
> 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
>
> - for(n = 0; n < UIDHASH_SZ; ++n)
> + for (n = 0; n < UIDHASH_SZ; ++n)
> INIT_HLIST_HEAD(uidhash_table + n);
>
> if (user_epoll_alloc(&root_user))
> --
> 2.34.1