Displaying 7 results from an estimated 7 matches for "nertpinx".
2020 Oct 12
0
Re: [PATCH v3 0/8] Windows BitLocker support.
...that already does this, so
>
> $ make && make -C test-data check
>
>should produce test-data/phony-guests/fedora-luks.img (see
>test-data/phony-guests/make-fedora-img.pl for how).
>
Not really what I meant. What I had in mind was something like this:
https://gitlab.com/nertpinx/libguestfs/-/commit/7c8ea3a35438f95dd822bd97c05a0b5fa0a702fa
which, according to me reading the code it might not have worked before your
series.
One more thing that I noticed when testing this a little bit more was that two
things were not updated:
- internal API usage (for example the mentio...
2020 Jan 29
1
Re: [PATCH v2v v2 1/2] rhv-upload: Validate UUIDs passed to -oo rhv-disk-uuid (RHBZ#1789279)
...pload.ml
@@ -57,7 +57,7 @@ let is_nonnil_uuid uuid =
PCRE.compile str
) in
if uuid = nil_uuid then false
- else PCRE.matches rex_uuid uuid
+ else PCRE.matches (Lazy.force rex_uuid) uuid
let parse_output_options options =
let rhv_cafile = ref None in
--
[1] https://github.com/nertpinx/virt-v2v/tree/uuids
>2.25.0
>
>_______________________________________________
>Libguestfs mailing list
>Libguestfs@redhat.com
>https://www.redhat.com/mailman/listinfo/libguestfs
2020 Jan 29
4
[PATCH v2v v2 0/2] rhv-upload: Validate UUIDs and check they don't exist already
My stab v2 at fixing this: https://bugzilla.redhat.com/show_bug.cgi?id=1789279
It took me quite some time to go through the whole rfc 4122 just to realize we
do not need to do anything with the versions.
v2:
- Use EEXIST instead of EINVAL
- Put the colliding UUID into the error
- Do not evaluate the PCRE needlessly multiple times
v1:
2020 Oct 09
3
Re: [PATCH v3 0/8] Windows BitLocker support.
On Fri, Oct 09, 2020 at 05:02:57PM +0200, Martin Kletzander wrote:
> Basically what I did was create a small disk, create one partition
> over the whole disk, then cryptsetup luksFormat the partition, open
> it and format it with a filesystem (without any LVM). That is one
> of the things you were adding support for, but it is not limited to
> Windows Bitlocker setup, it can just
2019 Oct 09
3
[PATCH] v2v: Output saved overlays in a machine-readable fashion
Even though this option is not to be used according to the manual, it:
a) still might be useful even for machine-readable logs
b) should not break the machine-readable output
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
---
v2v/v2v.ml | 29 ++++++++++++++++++++++-------
1 file changed, 22 insertions(+), 7 deletions(-)
diff --git a/v2v/v2v.ml b/v2v/v2v.ml
index
2019 Oct 11
6
Re: [PATCH] v2v: Output saved overlays in a machine-readable fashion
...er applications. But that is not something that is necessary for this particular patch (or the discussion about the --debug-overlays being supported in the long term), it just made it easier.
Does that make sense?
For some more context/info, see How I used it in a PoC here:
https://github.com/nertpinx/v2v-conversion-host/blob/asdf/wrapper/log_parser.py#L71
>Rich.
>
>> Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
>> ---
>> v2v/v2v.ml | 29 ++++++++++++++++++++++-------
>> 1 file changed, 22 insertions(+), 7 deletions(-)
>>
>> diff --git...
2019 Aug 22
7
[PATCH disk-sync 0/5] Misc cleanups and convert inner loop to asynch.
This is based on top of:
https://github.com/nertpinx/v2v-conversion-host/commit/0bb2efdcacd975a2cae7380080991ac7fc238d2b
The first 4 patches are fairly uncontroversial miscellaneous cleanups.
Patch 5 is the interesting one. (Note it doesn't quite work yet, so
it's for discussion only.)
Patch 5 converts the inner loop to use asynchronous li...