Patch "refperf: Avoid null pointer dereference when buf fails to allocate" has been added to the 5.9-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    refperf: Avoid null pointer dereference when buf fails to allocate

to the 5.9-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     refperf-avoid-null-pointer-dereference-when-buf-fail.patch
and it can be found in the queue-5.9 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit d28b2da1bacccb954245d6e56b1da1f2f736dad7
Author: Colin Ian King <colin.king@xxxxxxxxxxxxx>
Date:   Thu Jul 16 15:38:56 2020 +0100

    refperf: Avoid null pointer dereference when buf fails to allocate
    
    [ Upstream commit 58db5785b0d76be4582a32a7900acce88e691d36 ]
    
    Currently in the unlikely event that buf fails to be allocated it
    is dereferenced a few times.  Use the errexit flag to determine if
    buf should be written to to avoid the null pointer dereferences.
    
    Addresses-Coverity: ("Dereference after null check")
    Fixes: f518f154ecef ("refperf: Dynamically allocate experiment-summary output buffer")
    Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx>
    Signed-off-by: Paul E. McKenney <paulmck@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/kernel/rcu/refscale.c b/kernel/rcu/refscale.c
index d9291f883b542..952595c678b37 100644
--- a/kernel/rcu/refscale.c
+++ b/kernel/rcu/refscale.c
@@ -546,9 +546,11 @@ static int main_func(void *arg)
 	// Print the average of all experiments
 	SCALEOUT("END OF TEST. Calculating average duration per loop (nanoseconds)...\n");
 
-	buf[0] = 0;
-	strcat(buf, "\n");
-	strcat(buf, "Runs\tTime(ns)\n");
+	if (!errexit) {
+		buf[0] = 0;
+		strcat(buf, "\n");
+		strcat(buf, "Runs\tTime(ns)\n");
+	}
 
 	for (exp = 0; exp < nruns; exp++) {
 		u64 avg;



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux