Displaying 19 results from an estimated 19 matches for "got_opt".
Did you mean:
get_opt
2018 Jun 21
0
[PATCH 1/2] v2v: -o rhv-upload: Always fetch server options when opening the connection.
...39;: False,
+ 'can_flush': can_flush,
+ 'can_trim': can_trim,
+ 'can_zero': can_zero,
'connection': connection,
'disk': disk,
'disk_service': disk_service,
'failed': False,
- 'got_options': False,
'highestwrite': 0,
'http': http,
- 'needs_auth': not params['rhv_direct'],
+ 'needs_auth': needs_auth,
'path': destination_url.path,
'transfer': transfer,
'transfe...
2018 Jun 22
0
[PATCH v2 1/2] v2v: -o rhv-upload: Always fetch server options when opening the connection.
...39;: False,
+ 'can_flush': can_flush,
+ 'can_trim': can_trim,
+ 'can_zero': can_zero,
'connection': connection,
'disk': disk,
'disk_service': disk_service,
'failed': False,
- 'got_options': False,
'highestwrite': 0,
'http': http,
- 'needs_auth': not params['rhv_direct'],
+ 'needs_auth': needs_auth,
'path': destination_url.path,
'transfer': transfer,
'transfe...
2018 Jun 25
1
Re: [PATCH v2 1/2] v2v: -o rhv-upload: Always fetch server options when opening the connection.
...': can_flush,
> + 'can_trim': can_trim,
> + 'can_zero': can_zero,
> 'connection': connection,
> 'disk': disk,
> 'disk_service': disk_service,
> 'failed': False,
> - 'got_options': False,
> 'highestwrite': 0,
> 'http': http,
> - 'needs_auth': not params['rhv_direct'],
> + 'needs_auth': needs_auth,
> 'path': destination_url.path,
> 'transfer': t...
2018 Jun 22
4
v2v: -o rhv-upload: Use Unix domain socket to access imageio (RHBZ#1588088).
v1 was here:
https://www.redhat.com/archives/libguestfs/2018-June/msg00099.html
v2:
- Just fixes the two problems noted in the review of the previous version.
Rich.
2018 Mar 26
0
Re: [PATCH v7 6/6] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
...sedu
> using the SDK, but I'm not familiar with it.
OK.
> Daniel, do we expose this info?
>
> > [snipped]
> > >
> > > > +# Can we issue zero, trim or flush requests?
> > > >
> > > +def get_options(h):
> > > > + if h['got_options']:
> > > > + return
> > > > + h['got_options'] = True
> > > > +
> > > > + http = h['http']
> > > > + transfer=h['transfer']
> > > > +
> > > > + http.putrequest(&quo...
2018 Mar 24
4
Re: [PATCH v7 6/6] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
...annot configure that. This must be based on the image
format. The current coded may create images in unsupported
combinations, e.g. raw/sparse on block storage, or fail validation
in engine.
[snipped]
> +# Can we issue zero, trim or flush requests?
>
+def get_options(h):
> + if h['got_options']:
> + return
> + h['got_options'] = True
> +
> + http = h['http']
> + transfer=h['transfer']
> +
> + http.putrequest("OPTIONS", h['path'])
> + http.putheader("Authorization", transfer.signed_t...
2018 Mar 25
6
Re: [PATCH v7 6/6] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
...heck if a storage domain is file based or block basedu
using the SDK, but I'm not familiar with it.
Daniel, do we expose this info?
> [snipped]
> >
> > > +# Can we issue zero, trim or flush requests?
> > >
> > +def get_options(h):
> > > + if h['got_options']:
> > > + return
> > > + h['got_options'] = True
> > > +
> > > + http = h['http']
> > > + transfer=h['transfer']
> > > +
> > > + http.putrequest("OPTIONS", h['path'])...
2018 Mar 25
0
Re: [PATCH v7 6/6] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
...ions, e.g. raw/sparse on block storage, or fail validation
> in engine.
In virt-v2v this can be configured using ‘-oa’. What are the possible
combinations?
> [snipped]
>
> > +# Can we issue zero, trim or flush requests?
> >
> +def get_options(h):
> > + if h['got_options']:
> > + return
> > + h['got_options'] = True
> > +
> > + http = h['http']
> > + transfer=h['transfer']
> > +
> > + http.putrequest("OPTIONS", h['path'])
> > + http.putheader(&quo...
2018 Jun 21
6
v2v: -o rhv-upload: Use Unix domain socket to access imageio (RHBZ#1588088).
These two patches add support for using a Unix domain socket to
directly access imageio in the case where imageio is running on the
conversion host (usually that means virt-v2v is running on the RHV
node and something else -- eg. CFME scripts -- arranges that the RHV
node is the same one running imageio).
Conversions in the normal case are not affected - they happen over TCP
as usual.
This was
2018 Mar 26
0
Re: [PATCH v7 6/6] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
...sd = connection.system_service().storage_domains_service().list()[0]
sd.storage.type -> nfs/iscsi/etc
>
> > [snipped]
>> >
>> > > +# Can we issue zero, trim or flush requests?
>> > >
>> > +def get_options(h):
>> > > + if h['got_options']:
>> > > + return
>> > > + h['got_options'] = True
>> > > +
>> > > + http = h['http']
>> > > + transfer=h['transfer']
>> > > +
>> > > + http.putrequest("OPTIO...
2018 Mar 21
2
[PATCH v6] v2v: Add -o rhv-upload output mode.
v5 was here:
https://www.redhat.com/archives/libguestfs/2018-March/msg00032.html
There is only a single patch in this version because the other
patches went upstream.
This patch adds the virt-v2v -o rhv-upload mode
(https://bugzilla.redhat.com/show_bug.cgi?id=1557273).
Compared to v5, this adds the ability to make zero, trim and flush
requests to the oVirt imageio server
2018 Mar 21
0
[PATCH v6] v2v: Add -o rhv-upload output mode.
...ination_url.port,
+ context = context
+ )
+
+ # Save everything we need to make requests in the handle.
+ return {
+ 'connection': connection,
+ 'disk': disk,
+ 'disk_service': disk_service,
+ 'failed': False,
+ 'got_options': False,
+ 'highestwrite': 0,
+ 'http': http,
+ 'path': destination_url.path,
+ 'transfer': transfer,
+ 'transfer_service': transfer_service,
+ }
+
+# Can we issue zero, trim or flush requests?
+def get_options(h)...
2018 Mar 22
0
[PATCH v7 6/6] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
...ination_url.port,
+ context = context
+ )
+
+ # Save everything we need to make requests in the handle.
+ return {
+ 'connection': connection,
+ 'disk': disk,
+ 'disk_service': disk_service,
+ 'failed': False,
+ 'got_options': False,
+ 'highestwrite': 0,
+ 'http': http,
+ 'needs_auth': not params['rhv_direct'],
+ 'path': destination_url.path,
+ 'transfer': transfer,
+ 'transfer_service': transfer_service,
+ }
+...
2018 Apr 05
2
[PATCH v8] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
v7 was here:
https://www.redhat.com/archives/libguestfs/2018-March/msg00143.html
Since then:
- Earlier patches are now upstream.
- The to-do list is moved from the commit message to the TODO file.
- This version forces -of raw + -oa sparse and gives an error in
any other mode. We intend to lift these restrictions later.
- Tested against latest imageio which supports longer timeouts,
2018 Apr 05
0
[PATCH v8] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
...handle.
+ return {
+ 'can_flush': False,
+ 'can_trim': False,
+ 'can_zero': False,
+ 'connection': connection,
+ 'disk': disk,
+ 'disk_service': disk_service,
+ 'failed': False,
+ 'got_options': False,
+ 'highestwrite': 0,
+ 'http': http,
+ 'needs_auth': not params['rhv_direct'],
+ 'path': destination_url.path,
+ 'transfer': transfer,
+ 'transfer_service': transfer_service,
+ }
+...
2018 Apr 10
0
[PATCH v9] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
...handle.
+ return {
+ 'can_flush': False,
+ 'can_trim': False,
+ 'can_zero': False,
+ 'connection': connection,
+ 'disk': disk,
+ 'disk_service': disk_service,
+ 'failed': False,
+ 'got_options': False,
+ 'highestwrite': 0,
+ 'http': http,
+ 'needs_auth': not params['rhv_direct'],
+ 'path': destination_url.path,
+ 'transfer': transfer,
+ 'transfer_service': transfer_service,
+ }
+...
2018 Apr 10
2
[PATCH v9] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
v8 was here:
https://www.redhat.com/archives/libguestfs/2018-April/msg00022.html
v8 -> v9:
- Addresses the only feedback from Tomáš.
Rich.
2018 Mar 21
3
Re: [PATCH v6] v2v: Add -o rhv-upload output mode.
...> + )
> +
> + # Save everything we need to make requests in the handle.
> + return {
> + 'connection': connection,
> + 'disk': disk,
> + 'disk_service': disk_service,
> + 'failed': False,
> + 'got_options': False,
> + 'highestwrite': 0,
> + 'http': http,
> + 'path': destination_url.path,
> + 'transfer': transfer,
> + 'transfer_service': transfer_service,
> + }
> +
> +# Can we issue zero, tri...
2018 Mar 22
12
[PATCH v7 0/6] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
v6 was here:
https://www.redhat.com/archives/libguestfs/2018-March/msg00126.html
This makes a number of significant changes:
- Input and output options now use a uniform set of -io and -oo
parameters.
- For -o rhv-upload, we use ‘-oo rhv-cafile=/tmp/ca.pem’ etc. The
‘--rhv*’ options have been dropped.
- Rearranges the documentation.
- As before includes (untested) support for zero,