Displaying 4 results from an estimated 4 matches for "stat_copy".
2015 Jan 02
2
(no subject)
Hi, we needed these changes when we had to build a guest image
compatible with a starting guest image but not backed by it in any way?
We needed some tool to check our progress, comparing original and?
rebuilt (from scratch) images, and virt-diff seemed the best option, but?
we had to soften the comparison to reduce the noise in the output. I
added some options to ignore certain informations when
2015 Jan 02
0
[PATCH] virt-diff: add additional ignore options
...char *csum; /* Checksum. If NULL, use file times and size. */
};
@@ -466,6 +493,8 @@ visit_entry (const char *dir, const char *name,
char *path = NULL, *csum = NULL;
struct guestfs_statns *stat = NULL;
struct guestfs_xattr_list *xattrs = NULL;
+ struct guestfs_statns *stat_copy = NULL;
+ struct guestfs_xattr_list *xattrs_copy = NULL;
size_t i;
path = full_path (dir, name);
@@ -474,15 +503,33 @@ visit_entry (const char *dir, const char *name,
* free them after we return.
*/
stat = guestfs_copy_statns (stat_orig);
+ stat_copy = guestfs_copy_statns (stat...
2015 Jan 06
0
[PATCH] virt-diff: add additional ignore options
...free_xattr_list (t->files[i].xattrs_orig);
free (t->files[i].csum);
}
@@ -466,6 +500,8 @@ visit_entry (const char *dir, const char *name,
char *path = NULL, *csum = NULL;
struct guestfs_statns *stat = NULL;
struct guestfs_xattr_list *xattrs = NULL;
+ struct guestfs_statns *stat_copy = NULL;
+ struct guestfs_xattr_list *xattrs_copy = NULL;
size_t i;
path = full_path (dir, name);
@@ -474,16 +510,31 @@ visit_entry (const char *dir, const char *name,
* free them after we return.
*/
stat = guestfs_copy_statns (stat_orig);
+ stat_copy = guestfs_copy_statns (stat...
2015 Jan 05
2
Re: [PATCH] virt-diff: add additional ignore options
...ecksum. If NULL, use file times and size. */
> };
>
> @@ -466,6 +493,8 @@ visit_entry (const char *dir, const char *name,
> char *path = NULL, *csum = NULL;
> struct guestfs_statns *stat = NULL;
> struct guestfs_xattr_list *xattrs = NULL;
> + struct guestfs_statns *stat_copy = NULL;
> + struct guestfs_xattr_list *xattrs_copy = NULL;
> size_t i;
>
> path = full_path (dir, name);
> @@ -474,15 +503,33 @@ visit_entry (const char *dir, const char *name,
> * free them after we return.
> */
> stat = guestfs_copy_statns (stat_orig);...