Re: [PATCH V5 1/5] util: str_split

2024-02-26 Thread Philippe Mathieu-Daudé
On 22/2/24 22:47, Steve Sistare wrote: Generalize hmp_split_at_comma() to take any delimiter string, rename as str_split(), and move it to util/strList.c. No functional change. Signed-off-by: Steve Sistare --- include/monitor/hmp.h | 1 - include/qemu/strList.h | 24 ++

Re: [PATCH V5 1/5] util: str_split

2024-02-23 Thread Steven Sistare
On 2/23/2024 12:41 PM, Philippe Mathieu-Daudé wrote: > On 23/2/24 15:01, Steven Sistare wrote: >> On 2/23/2024 1:01 AM, Philippe Mathieu-Daudé wrote: >>> On 22/2/24 22:47, Steve Sistare wrote: Generalize hmp_split_at_comma() to take any delimiter string, rename as str_split(), and move it

Re: [PATCH V5 1/5] util: str_split

2024-02-23 Thread Philippe Mathieu-Daudé
On 23/2/24 15:01, Steven Sistare wrote: On 2/23/2024 1:01 AM, Philippe Mathieu-Daudé wrote: On 22/2/24 22:47, Steve Sistare wrote: Generalize hmp_split_at_comma() to take any delimiter string, rename as str_split(), and move it to util/strList.c. No functional change. Signed-off-by: Steve Sis

Re: [PATCH V5 1/5] util: str_split

2024-02-23 Thread Steven Sistare
On 2/23/2024 1:01 AM, Philippe Mathieu-Daudé wrote: > On 22/2/24 22:47, Steve Sistare wrote: >> Generalize hmp_split_at_comma() to take any delimiter string, rename >> as str_split(), and move it to util/strList.c. >> >> No functional change. >> >> Signed-off-by: Steve Sistare >> --- >>   include/

Re: [PATCH V5 1/5] util: str_split

2024-02-22 Thread Philippe Mathieu-Daudé
On 22/2/24 22:47, Steve Sistare wrote: Generalize hmp_split_at_comma() to take any delimiter string, rename as str_split(), and move it to util/strList.c. No functional change. Signed-off-by: Steve Sistare --- include/monitor/hmp.h | 1 - include/qemu/strList.h | 24 ++

Re: [PATCH V5 1/5] util: str_split

2024-02-22 Thread Philippe Mathieu-Daudé
On 22/2/24 22:47, Steve Sistare wrote: Generalize hmp_split_at_comma() to take any delimiter string, rename as str_split(), and move it to util/strList.c. No functional change. Signed-off-by: Steve Sistare --- include/monitor/hmp.h | 1 - include/qemu/strList.h | 24 ++

[PATCH V5 1/5] util: str_split

2024-02-22 Thread Steve Sistare
Generalize hmp_split_at_comma() to take any delimiter string, rename as str_split(), and move it to util/strList.c. No functional change. Signed-off-by: Steve Sistare --- include/monitor/hmp.h | 1 - include/qemu/strList.h | 24 monitor/hmp-cmds.c | 19 ---