Displaying 8 results from an estimated 8 matches for "lvm_".
Did you mean:
lvm
2016 Jul 26
1
[PATCH] daemon: lvm: change the separator character to '\r'
...';\n";
(match coltype with
@@ -633,7 +633,7 @@ cleanup_free_mountable (mountable_t *mountable)
pr " r = command (&out, &err,\n";
pr " \"lvm\", \"%ss\",\n" typ;
pr " \"-o\", lvm_%s_cols, \"--unbuffered\", \"--noheadings\",\n" typ;
- pr " \"--nosuffix\", \"--separator\", \":\", \"--units\", \"b\", NULL);\n";
+ pr " \"--nosuffix\", \"--separator...
2015 Nov 10
0
[PATCH] daemon: lvm: Change the separator character to ':'.
...';\n";
(match coltype with
@@ -631,7 +631,7 @@ cleanup_free_mountable (mountable_t *mountable)
pr " r = command (&out, &err,\n";
pr " \"lvm\", \"%ss\",\n" typ;
pr " \"-o\", lvm_%s_cols, \"--unbuffered\", \"--noheadings\",\n" typ;
- pr " \"--nosuffix\", \"--separator\", \",\", \"--units\", \"b\", NULL);\n";
+ pr " \"--nosuffix\", \"--separator...
2016 Jul 26
0
[PATCH 4/5] daemon: lvm: list PVs/VGs/LVs with --foreign
...&err,
str_lvm, "lvs",
+ "--foreign",
"-o", "lv_attr,vg_name,lv_name",
"--noheadings",
"--separator", ":", NULL);
@@ -718,7 +720,7 @@ get_lvm_field (const char *cmd, const char *field, const char *device)
char *out;
CLEANUP_FREE char *err = NULL;
int r = command (&out, &err,
- str_lvm, cmd,
+ str_lvm, cmd, "--foreign",
"--unbuffered", "--nohe...
2016 Jul 22
1
[PATCH] static const char *str -> static const char str
...ON },
diff --git a/generator/daemon.ml b/generator/daemon.ml
index cb8b6ba..31ca764 100644
--- a/generator/daemon.ml
+++ b/generator/daemon.ml
@@ -535,7 +535,7 @@ cleanup_free_mountable (mountable_t *mountable)
List.iter (
function
| typ, cols ->
- pr "static const char *lvm_%s_cols = \"%s\";\n"
+ pr "static const char lvm_%s_cols[] = \"%s\";\n"
typ (String.concat "," (List.map fst cols));
pr "\n";
diff --git a/generator/fish.ml b/generator/fish.ml
index 980f55f..cc869d3 100644
--- a/gen...
2016 Jul 26
8
[PATCH 0/5] Improve LVM handling in the appliance
Hi,
this series improves the way LVM is used in the appliance: in
particular, now lvmetad can eventually run at all, and with the correct
configuration.
Also improve the listing strategies.
Thanks,
Pino Toscano (5):
daemon: lvm-filter: set also global_filter
daemon: lvm-filter: start lvmetad better
daemon: lvm: improve filter for LVs with activationskip flag set
daemon: lvm: list
2009 Jun 19
0
Wine release 1.1.24
...ators.
wininet/test: Test malformed header separators.
Mikio Idneuma (1):
appwiz.cpl: Update Japanese translation.
Nikolay Sivov (25):
ntdll: Call NtCreateSection with NULL attributes loading native dll.
comctl32/listview: Edit box should be destroyed on invalid index too (LVM_EDITLABEL).
comctl32/listview: Test showing that Edit box should be positioned after LVN_BEGINLABELEDIT.
comctl32/listview: Position edit box after notification.
comctl32/listview: Defaulting to NFR_ANSI on query failure.
comctl32/listview: Use LV_VIEW_* constants instead of...
2009 Jul 17
0
Wine release 1.1.26
...UTF-8.
Set the encoding of the Romanian resources to UTF-8.
wordpad: Change some string resource ids to logically group the strings in separate STRINGTABLEs.
Mike Kaplinskiy (1):
ws2/tests: Test AcceptEx with a deferred socket.
Nikolay Sivov (15):
comctl32/listview: Basic LVM_GETITEMSPACING tests.
user32/spy: Update ListView message table.
comctl32/listview: Fix some test failures on 4.7x.
comctl32/listview: More LVM_*HITTEST tests.
comctl32/listview: Fix hittesting for "small" positive Y coordinates.
comctl32/listview: Fix hittest...
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...ot;;
+ pr " xdr_free ((xdrproc_t) xdr_guestfs_%s_args, (char *) &args);\n"
+ name
);
pr "}\n\n";
@@ -4819,164 +4819,164 @@ and generate_daemon_actions () =
List.iter (
function
| typ, cols ->
- pr "static const char *lvm_%s_cols = \"%s\";\n"
- typ (String.concat "," (List.map fst cols));
- pr "\n";
-
- pr "static int lvm_tokenize_%s (char *str, guestfs_int_lvm_%s *r)\n" typ typ;
- pr "{\n";
- pr " char *tok, *p, *next;\n";
- pr " int i, j;\n&q...