Re: [PATCH 0/2] Replace posix_fallocate() with falloate()

2020-09-14 Thread Nir Soffer
On Mon, Aug 31, 2020 at 5:01 PM Nir Soffer wrote: > > Change preallocation=falloc to use fallocate() instead of > posix_fallocte(), improving performance when legacy filesystem that do > not support fallocate, and avoiding issues seen with OFD locks. > > More work is needed to respect cache mode

Re: [PATCH 0/2] Replace posix_fallocate() with falloate()

2020-08-31 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20200831140127.657134-1-nsof...@redhat.com/ Hi, This series seems to have some coding style problems. See output below for more information: Type: series Message-id: 20200831140127.657134-1-nsof...@redhat.com Subject: [PATCH 0/2] Replace posix_fallocate

[PATCH 0/2] Replace posix_fallocate() with falloate()

2020-08-31 Thread Nir Soffer
Change preallocation=falloc to use fallocate() instead of posix_fallocte(), improving performance when legacy filesystem that do not support fallocate, and avoiding issues seen with OFD locks. More work is needed to respect cache mode when using full preallocation and maybe optimize buffer size.