Re: [PATCH 1/2] util/iov: Do not assert offset is in iov

2025-01-12 Thread Jason Wang
On Sat, Jan 11, 2025 at 1:11 PM Akihiko Odaki wrote: > > Jason, can you pull this series? Queued. Thanks > > Regards, > Akihiko Odaki > > On 2024/05/08 23:51, Philippe Mathieu-Daudé wrote: > > ping? > > > > On 28/4/24 13:11, Akihiko Odaki wrote: > >> iov_from_buf(), iov_to_buf(), iov_memset(),

Re: [PATCH 1/2] util/iov: Do not assert offset is in iov

2025-01-10 Thread Akihiko Odaki
Jason, can you pull this series? Regards, Akihiko Odaki On 2024/05/08 23:51, Philippe Mathieu-Daudé wrote: ping? On 28/4/24 13:11, Akihiko Odaki wrote: iov_from_buf(), iov_to_buf(), iov_memset(), and iov_copy() asserts that the given offset fits in the iov while tolerating the specified numbe

Re: [PATCH 1/2] util/iov: Do not assert offset is in iov

2024-05-08 Thread Philippe Mathieu-Daudé
ping? On 28/4/24 13:11, Akihiko Odaki wrote: iov_from_buf(), iov_to_buf(), iov_memset(), and iov_copy() asserts that the given offset fits in the iov while tolerating the specified number of bytes to operate with to be greater than the size of iov. This is inconsistent so remove the assertions.

[PATCH 1/2] util/iov: Do not assert offset is in iov

2024-04-28 Thread Akihiko Odaki
iov_from_buf(), iov_to_buf(), iov_memset(), and iov_copy() asserts that the given offset fits in the iov while tolerating the specified number of bytes to operate with to be greater than the size of iov. This is inconsistent so remove the assertions. Asserting the offset fits in the iov makes sens