[PATCH v2 0/2] Fix some problems with vvfat in R/W mode

Hervé Poussineau posted 2 patches 3 years, 3 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20221010175511.3414357-1-hpoussin@reactos.org
Maintainers: Kevin Wolf <kwolf@redhat.com>, Hanna Reitz <hreitz@redhat.com>
block/vvfat.c | 28 ++++++++++++++++++++++++++--
1 file changed, 26 insertions(+), 2 deletions(-)
[PATCH v2 0/2] Fix some problems with vvfat in R/W mode
Posted by Hervé Poussineau 3 years, 3 months ago
Hi,

When testing vvfat in read-write mode, I came across some blocking
problems when using Windows guests.
This patchset is not here to fix all problems of vvfat, but only the
main ones I encountered.

First patch allows setting/resetting the 'volume dirty' flag on
boosector, and the second one allows creating file names with spaces.

Hervé

Changes since v1:
- updated patch 1 with remarks (modify in-memory copy, add comment about
  FAT32)

Hervé Poussineau (2):
  vvfat: allow some writes to bootsector
  vvfat: allow spaces in file names

 block/vvfat.c | 28 ++++++++++++++++++++++++++--
 1 file changed, 26 insertions(+), 2 deletions(-)

-- 
2.36.2


Re: [PATCH v2 0/2] Fix some problems with vvfat in R/W mode
Posted by Kevin Wolf 3 years, 3 months ago
Am 10.10.2022 um 19:55 hat Hervé Poussineau geschrieben:
> Hi,
> 
> When testing vvfat in read-write mode, I came across some blocking
> problems when using Windows guests.
> This patchset is not here to fix all problems of vvfat, but only the
> main ones I encountered.
> 
> First patch allows setting/resetting the 'volume dirty' flag on
> boosector, and the second one allows creating file names with spaces.
> 
> Hervé
> 
> Changes since v1:
> - updated patch 1 with remarks (modify in-memory copy, add comment about
>   FAT32)

Thanks, applied to the block branch.

Kevin