Re: [PATCH 1/3] s390: add variable command line size

2021-12-07 Thread Sven Schnelle
Hi Philipp, Philipp Rudo writes: >> diff --git a/kexec/arch/s390/kexec-image.c b/kexec/arch/s390/kexec-image.c >> index 3c24fdfe3c7c..7747d02399db 100644 >> --- a/kexec/arch/s390/kexec-image.c >> +++ b/kexec/arch/s390/kexec-image.c >> @@ -25,7 +25,7 @@ >> #include >> >> static uint64_t

Re: [PATCH 1/3] s390: add variable command line size

2021-12-07 Thread Philipp Rudo
Hi Sven, On Mon, 22 Nov 2021 08:13:59 +0100 Sven Schnelle wrote: > Newer s390 kernels support a command line size longer than 896 > bytes. Such kernels contain a new member in the parameter area, > which might be utilized by tools like kexec. Older kernels have > the location initialized to

[PATCH 1/3] s390: add variable command line size

2021-11-21 Thread Sven Schnelle
Newer s390 kernels support a command line size longer than 896 bytes. Such kernels contain a new member in the parameter area, which might be utilized by tools like kexec. Older kernels have the location initialized to zero, so we check whether there's a non-zero number present and use that. If