Re: [PATCH] hw/ide: replace assert with proper error handling

2025-01-16 Thread Артем Насонов
16/01/25 14:32, Peter Maydell пишет: On Thu, 16 Jan 2025 at 11:17, Artem Nasonov wrote: This assert was found during fuzzing and can be triggered with some qtest commands. So instead of assert failure I suggest to handle this error and abort the command. This patch is required at least to imp

Re: [PATCH] hw/ide: replace assert with proper error handling

2025-01-16 Thread Peter Maydell
On Thu, 16 Jan 2025 at 11:17, Artem Nasonov wrote: > > This assert was found during fuzzing and can be triggered with some qtest > commands. > So instead of assert failure I suggest to handle this error and abort the > command. > This patch is required at least to improve fuzzing process and do

[PATCH] hw/ide: replace assert with proper error handling

2025-01-16 Thread Artem Nasonov
This assert was found during fuzzing and can be triggered with some qtest commands. So instead of assert failure I suggest to handle this error and abort the command. This patch is required at least to improve fuzzing process and do not spam with this assert. RFC. Found by Linux Verification Ce