[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20220224105124.73645-1-jiapeng.chong@linux.alibaba.com>
Date: Thu, 24 Feb 2022 18:51:24 +0800
From: Jiapeng Chong <jiapeng.chong@...ux.alibaba.com>
To: chris.hyser@...cle.com
Cc: ran.xiaokai@....com.cn, ccross@...gle.com, pcc@...gle.com,
dave@...olabs.net, david@...hat.com, caoxiaofeng@...ong.com,
linux-kernel@...r.kernel.org,
chongjiapeng <jiapeng.chong@...ux.alibaba.com>,
Abaci Robot <abaci@...ux.alibaba.com>
Subject: [PATCH] kernel/sys.c: clean up some inconsistent indenting
From: chongjiapeng <jiapeng.chong@...ux.alibaba.com>
Eliminate the follow smatch warning:
kernel/sys.c:1617 do_prlimit() warn: inconsistent indenting.
Reported-by: Abaci Robot <abaci@...ux.alibaba.com>
Signed-off-by: chongjiapeng <jiapeng.chong@...ux.alibaba.com>
---
kernel/sys.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/kernel/sys.c b/kernel/sys.c
index 97dc9e5d6bf9..330de8b2d8f4 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -1614,9 +1614,9 @@ int do_prlimit(struct task_struct *tsk, unsigned int resource,
* infinite. In case of RLIM_INFINITY the posix CPU timer code
* ignores the rlimit.
*/
- if (!retval && new_rlim && resource == RLIMIT_CPU &&
- new_rlim->rlim_cur != RLIM_INFINITY &&
- IS_ENABLED(CONFIG_POSIX_TIMERS))
+ if (!retval && new_rlim && resource == RLIMIT_CPU &&
+ new_rlim->rlim_cur != RLIM_INFINITY &&
+ IS_ENABLED(CONFIG_POSIX_TIMERS))
update_rlimit_cpu(tsk, new_rlim->rlim_cur);
out:
read_unlock(&tasklist_lock);
--
2.19.1.6.gb485710b
Powered by blists - more mailing lists