Re: [PATCH v2 01/21] spl: fix entry_point equal to load_addr

2020-01-29 Thread Lukasz Majewski
On Tue, 28 Jan 2020 17:37:17 +0100 Giulio Benetti wrote: > Hi Lukasz, > > all patch series has already been applied, anyway I answer to your > suggestions since something was missing and I'm going to create a > patch for that. > > So... > > On 1/28/20 9:09 AM, Lukasz Majewski wrote: > > Hi

Re: [PATCH v2 01/21] spl: fix entry_point equal to load_addr

2020-01-28 Thread Giulio Benetti
Hi Lukasz, all patch series has already been applied, anyway I answer to your suggestions since something was missing and I'm going to create a patch for that. So... On 1/28/20 9:09 AM, Lukasz Majewski wrote: Hi Giulio, At the moment entry_point is set to image_get_load(header) that sets

Re: [PATCH v2 01/21] spl: fix entry_point equal to load_addr

2020-01-28 Thread Lukasz Majewski
Hi Giulio, > 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 >

[PATCH v2 01/21] spl: fix entry_point equal to load_addr

2020-01-15 Thread sbabic
> 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

[PATCH v2 01/21] spl: fix entry_point equal to load_addr

2020-01-10 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