From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932521AbdC1Url (ORCPT ); Tue, 28 Mar 2017 16:47:41 -0400 Received: from mail-pg0-f67.google.com ([74.125.83.67]:34288 "EHLO mail-pg0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755687AbdC1Up5 (ORCPT ); Tue, 28 Mar 2017 16:45:57 -0400 From: Arushi Singhal To: outreachy-kernel@googlegroups.com Cc: linux-kernel@vger.kernel.org, Arushi Singhal Subject: [PATCH 3/5] kernel: pid: Fix line over 80 characters Date: Wed, 29 Mar 2017 02:15:04 +0530 Message-Id: <20170328204506.16316-4-arushisinghal19971997@gmail.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170328204506.16316-1-arushisinghal19971997@gmail.com> References: <20170328204506.16316-1-arushisinghal19971997@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch splits line over 80 characters addressing checkpatch.pl warning Signed-off-by: Arushi Singhal --- kernel/pid.c | 4 +++- kernel/pid_namespace.c | 7 +++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/kernel/pid.c b/kernel/pid.c index 5822142ca92a..dd514309d982 100644 --- a/kernel/pid.c +++ b/kernel/pid.c @@ -439,7 +439,9 @@ struct task_struct *pid_task(struct pid *pid, enum pid_type type) first = rcu_dereference_check(hlist_first_rcu(&pid->tasks[type]), lockdep_tasklist_lock_is_held()); if (first) - result = hlist_entry(first, struct task_struct, pids[(type)].node); + result = hlist_entry(first, + struct task_struct, + pids[(type)].node); } return result; } diff --git a/kernel/pid_namespace.c b/kernel/pid_namespace.c index de461aa0bf9a..778959ecd5c3 100644 --- a/kernel/pid_namespace.c +++ b/kernel/pid_namespace.c @@ -75,7 +75,9 @@ static struct kmem_cache *create_pid_cachep(int nr_ids) static void proc_cleanup_work(struct work_struct *work) { - struct pid_namespace *ns = container_of(work, struct pid_namespace, proc_work); + struct pid_namespace *ns = container_of(work, + struct pid_namespace, + proc_work); pid_ns_release_proc(ns); } @@ -89,7 +91,8 @@ static struct ucounts *inc_pid_namespaces(struct user_namespace *ns) static void dec_pid_namespaces(struct ucounts *ucounts) { - dec_ucount(ucounts, UCOUNT_PID_NAMESPACES); + dec_ucount(ucounts, + UCOUNT_PID_NAMESPACES); } static struct pid_namespace *create_pid_namespace(struct user_namespace *user_ns, -- 2.11.0