]> git.proxmox.com Git - pve-qemu.git/blob - debian/patches/pve/0028-PVE-vma-remove-forced-NO_FLUSH-option.patch
bump version to 3.0.0-1
[pve-qemu.git] / debian / patches / pve / 0028-PVE-vma-remove-forced-NO_FLUSH-option.patch
1 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2 From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3 Date: Tue, 27 Mar 2018 10:49:03 +0200
4 Subject: [PATCH] PVE: vma: remove forced NO_FLUSH option
5
6 This one's rbd specific and in no way a sane choice for all
7 types storages. Instead, we want to honor the cache option
8 passed along.
9
10 Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
11 ---
12 vma.c | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/vma.c b/vma.c
16 index 476b7bee00..3289fd722f 100644
17 --- a/vma.c
18 +++ b/vma.c
19 @@ -327,7 +327,7 @@ static int extract_content(int argc, char **argv)
20 uint64_t throttling_bps = 0;
21 const char *throttling_group = NULL;
22 const char *cache = NULL;
23 - int flags = BDRV_O_RDWR | BDRV_O_NO_FLUSH;
24 + int flags = BDRV_O_RDWR;
25 bool write_zero = true;
26
27 if (readmap) {
28 --
29 2.11.0
30