summaryrefslogtreecommitdiff
path: root/block.c
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2014-04-11 21:36:45 +0200
committerKevin Wolf <kwolf@redhat.com>2014-04-30 11:05:00 +0200
commit5669b44de5b3b607a3a4749e0c8c5ddfd723e76b (patch)
tree40acd9208df98e76a8f7d09c776f2603f244c1a9 /block.c
parent317fc44ef2bfa87e96adecf035ed136ed9d78c8f (diff)
downloadqemu-5669b44de5b3b607a3a4749e0c8c5ddfd723e76b.tar.gz
block: Remove BDRV_O_COPY_ON_READ for bs->file
Copy on Read makes sense on the format level where backing files are implemented, but it's not required on the protocol level. While it shouldn't actively break anything to have COR enabled on both layers, needless serialisation and allocation checks may impact performance. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r--block.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block.c b/block.c
index c6d5ab9cb8..9f88bcc088 100644
--- a/block.c
+++ b/block.c
@@ -793,7 +793,7 @@ static int bdrv_inherited_flags(int flags)
}
/* Clear flags that only apply to the top layer */
- flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
+ flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
return flags;
}