Re: [PATCH] osdep: Introduce qemu_get_fd() to wrap the common codes

2022-09-01 Thread Christian Schoenebeck
On Mittwoch, 31. August 2022 10:25:27 CEST Guoyi Tu wrote: > On 8/18/22 20:58, Christian Schoenebeck wrote: > > On Donnerstag, 18. August 2022 14:06:04 CEST Guoyi Tu wrote: > >> Ping... > >> > >> Any comments are welcome > >> > >> On 8/12/22 19:01, Guoyi Tu wrote: > >>> socket_get_fd() have much

Re: [PATCH] osdep: Introduce qemu_get_fd() to wrap the common codes

2022-08-31 Thread Guoyi Tu
On 8/30/22 14:03, Markus Armbruster wrote: Christian Schoenebeck writes: On Donnerstag, 18. August 2022 14:06:04 CEST Guoyi Tu wrote: Ping... Any comments are welcome On 8/12/22 19:01, Guoyi Tu wrote: socket_get_fd() have much the same codes as monitor_fd_param(), so qemu_get_fd() is

Re: [PATCH] osdep: Introduce qemu_get_fd() to wrap the common codes

2022-08-31 Thread Guoyi Tu
On 8/18/22 20:58, Christian Schoenebeck wrote: On Donnerstag, 18. August 2022 14:06:04 CEST Guoyi Tu wrote: Ping... Any comments are welcome On 8/12/22 19:01, Guoyi Tu wrote: socket_get_fd() have much the same codes as monitor_fd_param(), so qemu_get_fd() is introduced to implement the

Re: [PATCH] osdep: Introduce qemu_get_fd() to wrap the common codes

2022-08-30 Thread Markus Armbruster
Christian Schoenebeck writes: > On Donnerstag, 18. August 2022 14:06:04 CEST Guoyi Tu wrote: >> Ping... >> >> Any comments are welcome >> >> On 8/12/22 19:01, Guoyi Tu wrote: >> > socket_get_fd() have much the same codes as monitor_fd_param(), >> > so qemu_get_fd() is introduced to implement

Re: [PATCH] osdep: Introduce qemu_get_fd() to wrap the common codes

2022-08-18 Thread Christian Schoenebeck
On Donnerstag, 18. August 2022 14:06:04 CEST Guoyi Tu wrote: > Ping... > > Any comments are welcome > > On 8/12/22 19:01, Guoyi Tu wrote: > > socket_get_fd() have much the same codes as monitor_fd_param(), > > so qemu_get_fd() is introduced to implement the common logic. > > now socket_get_fd()

Re: [PATCH] osdep: Introduce qemu_get_fd() to wrap the common codes

2022-08-18 Thread Guoyi Tu
Ping... Any comments are welcome On 8/12/22 19:01, Guoyi Tu wrote: socket_get_fd() have much the same codes as monitor_fd_param(), so qemu_get_fd() is introduced to implement the common logic. now socket_get_fd() and monitor_fd_param() directly call this function. Signed-off-by: Guoyi Tu

[PATCH] osdep: Introduce qemu_get_fd() to wrap the common codes

2022-08-12 Thread Guoyi Tu
socket_get_fd() have much the same codes as monitor_fd_param(), so qemu_get_fd() is introduced to implement the common logic. now socket_get_fd() and monitor_fd_param() directly call this function. Signed-off-by: Guoyi Tu ---  include/qemu/osdep.h |  1 +  monitor/misc.c   | 21