Re: [Qemu-devel] [RFC v5 08/26] monitor: let mon_list be tail queue

2017-12-13 Thread Stefan Hajnoczi
On Tue, Dec 05, 2017 at 01:51:42PM +0800, Peter Xu wrote: > It was QLIST. I want to use this list to do monitor priority job later, > which need tail insertion ability. So switching to a tail queue. > > Reviewed-by: Fam Zheng > Signed-off-by: Peter Xu > --- > monitor.c | 10 +- > 1 fi

[Qemu-devel] [RFC v5 08/26] monitor: let mon_list be tail queue

2017-12-04 Thread Peter Xu
It was QLIST. I want to use this list to do monitor priority job later, which need tail insertion ability. So switching to a tail queue. Reviewed-by: Fam Zheng Signed-off-by: Peter Xu --- monitor.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/monitor.c b/moni