Re: [Qemu-devel] [PATCH V2 0/5] Add infinite loop check for backing file chain

2013-07-10 Thread Eric Blake
On 07/10/2013 05:42 AM, Kevin Wolf wrote: >> Thanks for the series. I made a few comments on each patch. You hashed >> windows full path to get the "inode", but case sensitively, would that >> work with the same files of different case? > > I seem to remember that Windows can be made case-sensitiv

Re: [Qemu-devel] [PATCH V2 0/5] Add infinite loop check for backing file chain

2013-07-10 Thread Kevin Wolf
Am 10.07.2013 um 13:13 hat Fam Zheng geschrieben: > On Mon, 07/08 03:26, Xu Wang wrote: > > Updates: > > 1. Changed infinite loop check in collect_image_info_list() from filename > > checking to inode checking. > > 2. Absolute or relative path is OK for filename path. > > 3. Hard and sof

Re: [Qemu-devel] [PATCH V2 0/5] Add infinite loop check for backing file chain

2013-07-10 Thread Fam Zheng
On Mon, 07/08 03:26, Xu Wang wrote: > Updates: > 1. Changed infinite loop check in collect_image_info_list() from filename > checking to inode checking. > 2. Absolute or relative path is OK for filename path. > 3. Hard and soft link are works well. > 4. Added WIN32 platform support (sh

[Qemu-devel] [PATCH V2 0/5] Add infinite loop check for backing file chain

2013-07-08 Thread Xu Wang
Updates: 1. Changed infinite loop check in collect_image_info_list() from filename checking to inode checking. 2. Absolute or relative path is OK for filename path. 3. Hard and soft link are works well. 4. Added WIN32 platform support (shortcuts could be recognized correctly.) 5. Cre