Re: [PATCH 2/3] pc-bios/s390-ccw: break loop if a null block number is reached

2020-09-24 Thread Marc Hartmayer
On Thu, Sep 24, 2020 at 01:49 PM +0200, Thomas Huth wrote: > On 24/09/2020 10.59, Marc Hartmayer wrote: >> Break the loop if `cur_block_nr` is a null block number because this >> means that the end of chunk is reached. In this case we will try to >> boot the default entry. >> >> Fixes: ba831b2526

Re: [PATCH 2/3] pc-bios/s390-ccw: break loop if a null block number is reached

2020-09-24 Thread Thomas Huth
On 24/09/2020 10.59, Marc Hartmayer wrote: > Break the loop if `cur_block_nr` is a null block number because this > means that the end of chunk is reached. In this case we will try to > boot the default entry. > > Fixes: ba831b25262a ("s390-ccw: read stage2 boot loader data to find menu") > Review

[PATCH 2/3] pc-bios/s390-ccw: break loop if a null block number is reached

2020-09-24 Thread Marc Hartmayer
Break the loop if `cur_block_nr` is a null block number because this means that the end of chunk is reached. In this case we will try to boot the default entry. Fixes: ba831b25262a ("s390-ccw: read stage2 boot loader data to find menu") Reviewed-by: Collin Walling Signed-off-by: Marc Hartmayer -