All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tracing: Do PTR_ERR() after IS_ERR()
@ 2022-07-27 15:35 Li Qiong
  2022-07-27 16:28 ` Steven Rostedt
  0 siblings, 1 reply; 5+ messages in thread
From: Li Qiong @ 2022-07-27 15:35 UTC (permalink / raw)
  To: Steven Rostedt, Ingo Molnar; +Cc: linux-kernel, yuzhe, renyu, jiaming, Li Qiong

Check IS_ERR() firstly, then do PTR_ERR().

Signed-off-by: Li Qiong <liqiong@nfschina.com>
---
 kernel/trace/ring_buffer_benchmark.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/kernel/trace/ring_buffer_benchmark.c b/kernel/trace/ring_buffer_benchmark.c
index 78e576575b79..a8f6b0725c45 100644
--- a/kernel/trace/ring_buffer_benchmark.c
+++ b/kernel/trace/ring_buffer_benchmark.c
@@ -439,17 +439,19 @@ static int __init ring_buffer_benchmark_init(void)
 	if (!disable_reader) {
 		consumer = kthread_create(ring_buffer_consumer_thread,
 					  NULL, "rb_consumer");
-		ret = PTR_ERR(consumer);
-		if (IS_ERR(consumer))
+		if (IS_ERR(consumer)) {
+			ret = PTR_ERR(consumer);
 			goto out_fail;
+		}
 	}
 
 	producer = kthread_run(ring_buffer_producer_thread,
 			       NULL, "rb_producer");
-	ret = PTR_ERR(producer);
 
-	if (IS_ERR(producer))
+	if (IS_ERR(producer)) {
+		ret = PTR_ERR(producer);
 		goto out_kill;
+	}
 
 	/*
 	 * Run them as low-prio background tasks by default:
-- 
2.11.0


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

end of thread, other threads:[~2022-07-30  1:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-27 15:35 [PATCH] tracing: Do PTR_ERR() after IS_ERR() Li Qiong
2022-07-27 16:28 ` Steven Rostedt
2022-07-28  0:28   ` liqiong
2022-07-29 16:56     ` Steven Rostedt
2022-07-30  1:20       ` 李力琼

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.