Displaying 5 results from an estimated 5 matches for "time_rel".
Did you mean:
time_rec
2003 May 30
5
Samba Dropouts...
OK, I have been banging my head into the wall on this now for two or more
weeks
We have a samba server (2.2.8 then 2.2.8a) running on top of a 320 GB raid
ATA-raid array with a FastTrack controller. Both the server and workstations
are running through Gigabit NIC's. Every five or so minutes the workstations
loose communications with the server, Then it takes 10-15 seconds for the
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
...nt enable_times = 0;
static int enable_uids = 0;
static int enable_xattrs = 0;
+static int no_compare_xattrs = 0;
+static int no_compare_perms = 0;
+static int no_compare_extra_stats = 0;
+static int no_compare_times = 0;
+static int no_compare_uids = 0;
static int time_t_output = 0;
static int time_relative = 0; /* 1 = seconds, 2 = days */
static const char *checksum = NULL;
@@ -125,6 +130,11 @@ usage (int status)
" -V|--version Display version and exit\n"
" -x Trace libguestfs API calls\n"
" --xattrs...
2015 Jan 05
2
Re: [PATCH] virt-diff: add additional ignore options
...ic int no_compare_times = 0;
> +static int no_compare_uids = 0;
Instead of "no_compare_XXXX", I'd name them "compare_XXX" defaulting
to 1, as avoids some mind twisting in expressions like:
if (!no_compare_perms) ...
> static int time_t_output = 0;
> static int time_relative = 0; /* 1 = seconds, 2 = days */
> static const char *checksum = NULL;
> @@ -125,6 +130,11 @@ usage (int status)
> " -V|--version Display version and exit\n"
> " -x Trace libguestfs API calls\n"
>...
2014 Sep 22
2
[PATCH] New APIs: Implement stat calls that return nanosecond timestamps (RHBZ#1144891).
...ink = guestfs_readlink (g, path);
if (link)
@@ -703,7 +703,7 @@ output_int64_perms (int64_t i)
}
static void
-output_int64_time (int64_t i)
+output_int64_time (int64_t secs, int64_t nsecs)
{
int r;
@@ -713,19 +713,19 @@ output_int64_time (int64_t i)
if (time_t_output) {
switch (time_relative) {
case 0: /* --time-t */
- r = printf ("%10" PRIi64, i);
+ r = printf ("%10" PRIi64, secs);
break;
case 1: /* --time-relative */
- r = printf ("%8" PRIi64, now - i);
+ r = printf ("...