Re: [PATCH 02/20] spl: fix entry_point equal to load_addr

2019-12-09 Thread Giulio Benetti
Hi Lukasz, First of all thank you for reviewing my patches and... On 12/8/19 3:37 PM, Lukasz Majewski wrote: On Wed, 4 Dec 2019 18:44:21 +0100 Giulio Benetti wrote: At the moment entry_point is set to image_get_load(header) that sets it to "load address" instead of "entry point", assuming

Re: [PATCH 02/20] spl: fix entry_point equal to load_addr

2019-12-08 Thread Lukasz Majewski
On Wed, 4 Dec 2019 18:44:21 +0100 Giulio Benetti wrote: > At the moment entry_point is set to image_get_load(header) that sets > it to "load address" instead of "entry point", assuming entry_point is > equal to load_addr, but it's not true. Then load_addr is set to > "entry_point -

[PATCH 02/20] spl: fix entry_point equal to load_addr

2019-12-04 Thread Giulio Benetti
At the moment entry_point is set to image_get_load(header) that sets it to "load address" instead of "entry point", assuming entry_point is equal to load_addr, but it's not true. Then load_addr is set to "entry_point - header_size", but this is wrong too since load_addr is not an entry point. So