1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-10 16:58:47 +03:00

o lvm readline error-case tidy-up

o more vgcreate error cases
This commit is contained in:
Alasdair Kergon 2001-10-15 12:49:58 +00:00
parent 0c947f7619
commit ca8f8837c2
5 changed files with 36 additions and 13 deletions

View File

@ -412,6 +412,7 @@ struct io_space *create_lvm1_format(const char *prefix, struct pool *mem,
ios->pv_setup = _pv_setup; ios->pv_setup = _pv_setup;
ios->pv_write = _pv_write; ios->pv_write = _pv_write;
ios->vg_read = _vg_read; ios->vg_read = _vg_read;
ios->vg_setup = _vg_setup;
ios->vg_write = _vg_write; ios->vg_write = _vg_write;
ios->destroy = _destroy; ios->destroy = _destroy;

View File

@ -19,16 +19,19 @@ int _add_pv_to_vg(struct io_space *ios, struct volume_group *vg,
struct physical_volume *pv = &pvl->pv; struct physical_volume *pv = &pvl->pv;
if (!pv) { if (!pv) {
stack; log_error("pv_list allocation for '%s' failed", name);
return 0; return 0;
} }
memset(pv, 0, sizeof(*pv)); memset(pv, 0, sizeof(*pv));
pv->dev = dev_cache_get(name, ios->filter); if (!(pv->dev = dev_cache_get(name, ios->filter))) {
log_error("Physical volume '%s' not found.", name);
return 0;
}
if (!(pv->vg_name = pool_strdup(ios->mem, vg->name))) { if (!(pv->vg_name = pool_strdup(ios->mem, vg->name))) {
stack; log_error("vg->name allocation failed for '%s'", name);
return 0; return 0;
} }
@ -52,7 +55,7 @@ int _add_pv_to_vg(struct io_space *ios, struct volume_group *vg,
pv->pe_allocated = 0; pv->pe_allocated = 0;
if (!ios->pv_setup(ios, pv, vg)) { if (!ios->pv_setup(ios, pv, vg)) {
log_err("Format specific setup of physical volume '%s' " log_error("Format specific setup of physical volume '%s' "
"failed.", name); "failed.", name);
return 0; return 0;
} }

View File

@ -93,7 +93,8 @@ void *pool_alloc_aligned(struct pool *p, size_t s, unsigned alignment)
void pool_empty(struct pool *p) void pool_empty(struct pool *p)
{ {
pool_free(p, p->chunk->begin); if (p->chunk)
pool_free(p, p->chunk->begin);
} }
void pool_free(struct pool *p, void *ptr) void pool_free(struct pool *p, void *ptr)

View File

@ -122,7 +122,7 @@ int main(int argc, char **argv)
if ((ret == ENO_SUCH_CMD) && (!alias)) if ((ret == ENO_SUCH_CMD) && (!alias))
ret = run_script(argc, argv); ret = run_script(argc, argv);
if (ret == ENO_SUCH_CMD) if (ret == ENO_SUCH_CMD)
log_error("No such command"); log_error("No such command. Try 'help'.");
out: out:
fin(); fin();
@ -810,14 +810,15 @@ static char *list_args(char *text, int state)
static int shell(void) static int shell(void)
{ {
int argc; int argc, ret;
char *input, *argv[MAX_ARGS]; char *input = NULL, *args[MAX_ARGS], **argv;
rl_readline_name = "lvm"; rl_readline_name = "lvm";
rl_attempted_completion_function = (CPPFunction *) lvm_completion; rl_attempted_completion_function = (CPPFunction *) lvm_completion;
_interactive = 1; _interactive = 1;
while (1) { while (1) {
free(input);
input = readline("lvm> "); input = readline("lvm> ");
/* EOF */ /* EOF */
@ -832,19 +833,30 @@ static int shell(void)
add_history(input); add_history(input);
argv = args;
if (split(input, &argc, argv, MAX_ARGS) == MAX_ARGS) { if (split(input, &argc, argv, MAX_ARGS) == MAX_ARGS) {
log_error("Too many arguments, sorry."); log_error("Too many arguments, sorry.");
continue; continue;
} }
if (!strcmp(argv[0], "lvm")) {
argv++;
argc--;
}
if (!argc) if (!argc)
continue; continue;
if (!strcmp(argv[0], "quit")) if (!strcmp(argv[0], "quit")) {
log_error("Exiting.");
break; break;
}
run_command(argc, argv); ret = run_command(argc, argv);
free(input); if (ret == ENO_SUCH_CMD)
log_error("No such command '%s'. Try 'help'.",
argv[0]);
} }
free(input); free(input);

View File

@ -6,6 +6,7 @@
#include "tools.h" #include "tools.h"
/* FIXME Config file? */
#define DEFAULT_PV 128 #define DEFAULT_PV 128
#define DEFAULT_LV 128 #define DEFAULT_LV 128
#define DEFAULT_EXTENT 8192 #define DEFAULT_EXTENT 8192
@ -13,6 +14,7 @@
int vgcreate(int argc, char **argv) int vgcreate(int argc, char **argv)
{ {
int max_lv, max_pv, extent_size; int max_lv, max_pv, extent_size;
char *vg_name;
struct volume_group *vg; struct volume_group *vg;
if (!argc) { if (!argc) {
@ -26,12 +28,13 @@ int vgcreate(int argc, char **argv)
return EINVALID_CMD_LINE; return EINVALID_CMD_LINE;
} }
vg_name = argv[0];
max_lv = arg_int_value(maxlogicalvolumes_ARG, DEFAULT_LV); max_lv = arg_int_value(maxlogicalvolumes_ARG, DEFAULT_LV);
max_pv = arg_int_value(maxphysicalvolumes_ARG, DEFAULT_PV); max_pv = arg_int_value(maxphysicalvolumes_ARG, DEFAULT_PV);
extent_size = arg_int_value(physicalextentsize_ARG, DEFAULT_EXTENT); extent_size = arg_int_value(physicalextentsize_ARG, DEFAULT_EXTENT);
/* create the new vg */ /* create the new vg */
if (!vg_create(ios, argv[0], extent_size, max_pv, max_lv, if (!vg_create(ios, vg_name, extent_size, max_pv, max_lv,
argc - 1, argv + 1)) argc - 1, argv + 1))
return ECMD_FAILED; return ECMD_FAILED;
@ -39,8 +42,11 @@ int vgcreate(int argc, char **argv)
if (ios->vg_write(ios, vg)) if (ios->vg_write(ios, vg))
return ECMD_FAILED; return ECMD_FAILED;
/* FIXME Create /dev/vg */
/* FIXME Activate */
log_print("Volume group %s successfully created and activated", log_print("Volume group %s successfully created and activated",
argv[0]); vg_name);
return 0; return 0;
} }