Patch "s390/mem_detect: rely on diag260() if sclp_early_get_memsize() fails" has been added to the 6.1-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

    s390/mem_detect: rely on diag260() if sclp_early_get_memsize() fails

to the 6.1-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:
     s390-mem_detect-rely-on-diag260-if-sclp_early_get_me.patch
and it can be found in the queue-6.1 subdirectory.

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



commit c47bf05fd94f276df8a44640dcf7e8cb4c59f89e
Author: Vasily Gorbik <gor@xxxxxxxxxxxxx>
Date:   Fri Jan 27 14:57:43 2023 +0100

    s390/mem_detect: rely on diag260() if sclp_early_get_memsize() fails
    
    [ Upstream commit eb33f9eb304a4c18beb5ba6362eaa5c4beaf40d8 ]
    
    In case sclp_early_get_memsize() fails but diag260() succeeds make sure
    some sane value is returned. This error scenario is highly unlikely,
    but this change makes system able to boot in such case.
    
    Suggested-by: Alexander Gordeev <agordeev@xxxxxxxxxxxxx>
    Reviewed-by: Alexander Gordeev <agordeev@xxxxxxxxxxxxx>
    Signed-off-by: Vasily Gorbik <gor@xxxxxxxxxxxxx>
    Signed-off-by: Heiko Carstens <hca@xxxxxxxxxxxxx>
    Stable-dep-of: 22476f47b6b7 ("s390/boot: fix mem_detect extended area allocation")
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/arch/s390/boot/mem_detect.c b/arch/s390/boot/mem_detect.c
index 0a5821ef4f1fd..41792a3a5e364 100644
--- a/arch/s390/boot/mem_detect.c
+++ b/arch/s390/boot/mem_detect.c
@@ -176,7 +176,7 @@ unsigned long detect_memory(void)
 
 	if (!diag260()) {
 		mem_detect.info_source = MEM_DETECT_DIAG260;
-		return max_physmem_end;
+		return max_physmem_end ?: get_mem_detect_end();
 	}
 
 	if (max_physmem_end) {



[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