search for: 0f6b31e67

Displaying 2 results from an estimated 2 matches for "0f6b31e67".

2018 Jun 25
2
[PATCH] v2v: rhv-upload-plugin: Fix name error
...2.12 show that we never send emulated zero request because of the highestwrite mechanism, but it can break with older qemu-img-rhev used on RHEL. --- v2v/rhv-upload-plugin.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py index 2eec375f7..0f6b31e67 100644 --- a/v2v/rhv-upload-plugin.py +++ b/v2v/rhv-upload-plugin.py @@ -338,6 +338,8 @@ def zero(h, count, offset, may_trim): r.read() def emulate_zero(h, count, offset): + http = h['http'] + # qemu-img convert starts by trying to zero/trim the whole device. # Since we...
2018 Jun 25
0
Re: [PATCH] v2v: rhv-upload-plugin: Fix name error
...zero request > because of the highestwrite mechanism, but it can break with older > qemu-img-rhev used on RHEL. > --- > v2v/rhv-upload-plugin.py | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py > index 2eec375f7..0f6b31e67 100644 > --- a/v2v/rhv-upload-plugin.py > +++ b/v2v/rhv-upload-plugin.py > @@ -338,6 +338,8 @@ def zero(h, count, offset, may_trim): > r.read() > > def emulate_zero(h, count, offset): > + http = h['http'] > After some more cleanup, I found that we are missi...