Re: [PATCH v3 2/9] bloblist: check bloblist with specified buffer size

2023-12-27 Thread Raymond Mao
Hi Simon, On Tue, 26 Dec 2023 at 04:47, Simon Glass wrote: > Hi Raymond, > > On Fri, Dec 22, 2023 at 9:31 PM Raymond Mao > wrote: > > > > Instead of expecting the bloblist total size to be the same as the > > pre-allocated buffer size, practically we are more interested in > > whether the pre-a

Re: [PATCH v3 2/9] bloblist: check bloblist with specified buffer size

2023-12-26 Thread Simon Glass
Hi Raymond, On Fri, Dec 22, 2023 at 9:31 PM Raymond Mao wrote: > > Instead of expecting the bloblist total size to be the same as the > pre-allocated buffer size, practically we are more interested in > whether the pre-allocated buffer size is bigger than the bloblist > total size. > > Signed-off

[PATCH v3 2/9] bloblist: check bloblist with specified buffer size

2023-12-22 Thread Raymond Mao
Instead of expecting the bloblist total size to be the same as the pre-allocated buffer size, practically we are more interested in whether the pre-allocated buffer size is bigger than the bloblist total size. Signed-off-by: Raymond Mao Reviewed-by: Ilias Apalodimas --- Changes in v2 - New patch