Displaying 2 results from an estimated 2 matches for "uuid_param".
Did you mean:
  id_param
  
2012 Nov 14
1
Notes on compiling libguestfs 1.19.59 on Debian 7 (Wheezy) beta
In no particular order.  Some of these need further investigation.
----------------------------------------------------------------------
I had to patch libguestfs not to use febootstrap-supermin-helper
--copy-kernel option.  See attachment #1.  This could be avoided by
providing a newer febootstrap in Wheezy.
I had to patch libguestfs to make it not use the (not working)
virtio-scsi in old
2017 Dec 12
2
[PATCH] df: Handle block sizes smaller than 1024 bytes (RHBZ#1525241).
...ale (uintmax_t n, uintmax_t from, uintmax_t to)
+{
+  if (from >= to) {
+    uintmax_t multiplier = from / to;
+    return n * multiplier;
+  }
+  else {
+    uintmax_t divisor = to / from;
+    return n / divisor;
+  }
+}
+
 void
 print_stat (FILE *fp,
             const char *name, const char *uuid_param,
@@ -95,7 +111,7 @@ print_stat (FILE *fp,
 #define MAX_LEN (LONGEST_HUMAN_READABLE > 128 ? LONGEST_HUMAN_READABLE : 128)
   char buf[4][MAX_LEN];
   const char *cols[4];
-  int64_t factor, v;
+  int64_t v;
   float percent;
   const int hopts =
     human_round_to_nearest|human_autoscale|human_b...