search for: show_siz

Displaying 3 results from an estimated 3 matches for "show_siz".

Did you mean: show_size
2023 Oct 08
1
[libnbd PATCH 2/2] info: Show human sizes for block_size values
...diff --git a/info/show.c b/info/show.c >> index 6aeffb54..ac483f34 100644 >> --- a/info/show.c >> +++ b/info/show.c >> @@ -35,6 +35,7 @@ >> #include "nbdinfo.h" >> >> static void show_boolean (const char *name, bool cond); >> +static void show_size (const char *name, int64_t size); >> static int collect_context (void *opaque, const char *name); >> static char *get_content (struct nbd_handle *, int64_t size); >> >> @@ -181,13 +182,9 @@ show_one_export (struct nbd_handle *nbd, const char *desc, >> show_bo...
2023 Oct 06
2
[libnbd PATCH 0/2] Improve nbdinfo display of block constraints
Based on Laszlo's approval of my idea here: https://listman.redhat.com/archives/libguestfs/2023-September/032661.html but as I would like to resync human-size.h back to nbdkit, I'm reluctant to apply patch 1 this until I get Rich's consent to relicensing (this email serves as my consent for my contribution here): https://listman.redhat.com/archives/libguestfs/2023-October/032755.html
2009 Feb 11
8
how to get DTrace to use the same structure field alignment as C?
Is there a pragma to turn off padding or some other mechanism besides dummying up fields to make them char[] to disable padding? Thanks!