Re: [Qemu-block] [PATCH v2] block/vvfat: Fix crash when reporting error about too many files in directory

2018-10-04 Thread Kevin Wolf
Am 24.07.2018 um 13:52 hat Thomas Huth geschrieben: > When using the vvfat driver with a directory that contains too many files, > QEMU currently crashes. This can be triggered like this for example: > > mkdir /tmp/vvfattest > cd /tmp/vvfattest > for ((x=0;x<=513;x++)); do mkdir $x; done > qem

[Qemu-block] [PATCH v2] block/vvfat: Fix crash when reporting error about too many files in directory

2018-07-24 Thread Thomas Huth
When using the vvfat driver with a directory that contains too many files, QEMU currently crashes. This can be triggered like this for example: mkdir /tmp/vvfattest cd /tmp/vvfattest for ((x=0;x<=513;x++)); do mkdir $x; done qemu-system-x86_64 -drive \ file.driver=vvfat,file.dir=.,read-only