Displaying 2 results from an estimated 2 matches for "returend".
2016 Nov 04
0
[PATCH 4/5] v2v: ova: don't extract files from OVA if it's not needed
...fset =
+ try Int64.of_string soffset
+ with Failure _ ->
+ error (f_"Invalid offset returned by `tar`: %s") soffset
+ in
+ let size =
+ try Int64.of_string ssize
+ with Failure _ ->
+ error (f_"Invalid size returend by `tar': %s") ssize
+ in
+ (* Note: Offset is actualy block number and there is a single block
+ * with tar header at the beginning of the file. So skip the header and
+ * convert the block number to bytes before returning.
+ *)
+ (offset +^ 1L...
2016 Nov 04
10
[PATCH 0/5] Import directly from OVA tar archive if possible
This is still a draft, not ready for commit yet. But feedback is
welcomed.
This series is related to the problem of inefficient import of OVA
files. The needed enhancements of QEMU was merged into the codebase and
should be available in QEMU 2.8. From there we can use 'size' and
'offset' options in raw driver to tell QEMU to use only subset of a file
as an image.
The first three