Re: [libvirt] [PATCH] daemon: Fix regression of libvirtd reloading support

2011-08-15 Thread Osier Yang
于 2011年08月15日 15:39, Jiri Denemark 写道: On Mon, Aug 15, 2011 at 15:50:46 +0800, Osier Yang wrote: This is introduced by commit df0b57a95a, which forgot to add signal handler for SIGHUP. A simple reproduce method: 1) Create a domain XML under /etc/libvirt/qemu 2) % kill -SIGHUP $(pidof libvirtd)

Re: [libvirt] [PATCH] daemon: Fix regression of libvirtd reloading support

2011-08-15 Thread Jiri Denemark
On Mon, Aug 15, 2011 at 15:50:46 +0800, Osier Yang wrote: > This is introduced by commit df0b57a95a, which forgot to > add signal handler for SIGHUP. > > A simple reproduce method: > > 1) Create a domain XML under /etc/libvirt/qemu > 2) % kill -SIGHUP $(pidof libvirtd) > 3) % virsh list --all (th

[libvirt] [PATCH] daemon: Fix regression of libvirtd reloading support

2011-08-15 Thread Osier Yang
This is introduced by commit df0b57a95a, which forgot to add signal handler for SIGHUP. A simple reproduce method: 1) Create a domain XML under /etc/libvirt/qemu 2) % kill -SIGHUP $(pidof libvirtd) 3) % virsh list --all (the new created domain XML is not listed) --- daemon/libvirtd.c | 13