linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sys_prctl(): simplify arg2 judgment when calling PR_SET_TIMERSLACK
@ 2019-07-23  3:30 Yang Xu
  2019-07-23  7:23 ` Cyrill Gorcunov
  0 siblings, 1 reply; 9+ messages in thread
From: Yang Xu @ 2019-07-23  3:30 UTC (permalink / raw)
  To: akpm, gorcunov; +Cc: linux-kernel, Yang Xu

arg2 will never < 0, for its type is 'unsigned long'. So negative
judgment is meaningless.

Signed-off-by: Yang Xu <xuyang2018.jy@cn.fujitsu.com>
---
 kernel/sys.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/kernel/sys.c b/kernel/sys.c
index 2969304c29fe..399457d26bef 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -2372,11 +2372,11 @@ SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3,
 			error = current->timer_slack_ns;
 		break;
 	case PR_SET_TIMERSLACK:
-		if (arg2 <= 0)
+		if (arg2)
+			current->timer_slack_ns = arg2;
+		else
 			current->timer_slack_ns =
 					current->default_timer_slack_ns;
-		else
-			current->timer_slack_ns = arg2;
 		break;
 	case PR_MCE_KILL:
 		if (arg4 | arg5)
-- 
2.18.1




^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2019-07-30  8:48 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-23  3:30 [PATCH] sys_prctl(): simplify arg2 judgment when calling PR_SET_TIMERSLACK Yang Xu
2019-07-23  7:23 ` Cyrill Gorcunov
2019-07-23  8:11   ` Yang Xu
2019-07-23  9:48     ` Cyrill Gorcunov
2019-07-24  2:11       ` [PATCH v2] sys_prctl(): remove unsigned comparision with less than zero Yang Xu
2019-07-24  6:56         ` Cyrill Gorcunov
2019-07-25  2:14         ` Andrew Morton
2019-07-25  3:10           ` Yang Xu
2019-07-30  8:48             ` Yang Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).