Signed-off-by: Toralf FÃrster <toralf.foerster@xxxxxx> --- kernel/user.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/user.c b/kernel/user.c index 2c7d8d5..6db8ed9 100644 --- a/kernel/user.c +++ b/kernel/user.c @@ -5,7 +5,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> @@ -181,7 +181,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(init_user_ns.uidhash_table + n); /* Insert the root user immediately (init already runs as root) */ -- 1.7.3.3 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html