error: Convert qemu_opts_set() to QError
Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
		
							parent
							
								
									985a3e52f0
								
							
						
					
					
						commit
						c64f27d4f4
					
				@ -176,7 +176,7 @@ static int parse_option_bool(const char *name, const char *value, int *ret)
 | 
				
			|||||||
        } else if (!strcmp(value, "off")) {
 | 
					        } else if (!strcmp(value, "off")) {
 | 
				
			||||||
            *ret = 0;
 | 
					            *ret = 0;
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            fprintf(stderr, "Option '%s': Use 'on' or 'off'\n", name);
 | 
					            qerror_report(QERR_INVALID_PARAMETER_VALUE, name, "'on' or 'off'");
 | 
				
			||||||
            return -1;
 | 
					            return -1;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
@ -193,12 +193,12 @@ static int parse_option_number(const char *name, const char *value, uint64_t *re
 | 
				
			|||||||
    if (value != NULL) {
 | 
					    if (value != NULL) {
 | 
				
			||||||
        number = strtoull(value, &postfix, 0);
 | 
					        number = strtoull(value, &postfix, 0);
 | 
				
			||||||
        if (*postfix != '\0') {
 | 
					        if (*postfix != '\0') {
 | 
				
			||||||
            fprintf(stderr, "Option '%s' needs a number as parameter\n", name);
 | 
					            qerror_report(QERR_INVALID_PARAMETER_VALUE, name, "a number");
 | 
				
			||||||
            return -1;
 | 
					            return -1;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        *ret = number;
 | 
					        *ret = number;
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
        fprintf(stderr, "Option '%s' needs a parameter\n", name);
 | 
					        qerror_report(QERR_INVALID_PARAMETER_VALUE, name, "a number");
 | 
				
			||||||
        return -1;
 | 
					        return -1;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    return 0;
 | 
					    return 0;
 | 
				
			||||||
@ -226,13 +226,13 @@ static int parse_option_size(const char *name, const char *value, uint64_t *ret)
 | 
				
			|||||||
            *ret = (uint64_t) sizef;
 | 
					            *ret = (uint64_t) sizef;
 | 
				
			||||||
            break;
 | 
					            break;
 | 
				
			||||||
        default:
 | 
					        default:
 | 
				
			||||||
            fprintf(stderr, "Option '%s' needs size as parameter\n", name);
 | 
					            qerror_report(QERR_INVALID_PARAMETER_VALUE, name, "a size");
 | 
				
			||||||
            fprintf(stderr, "You may use k, M, G or T suffixes for "
 | 
					            error_printf_unless_qmp("You may use k, M, G or T suffixes for "
 | 
				
			||||||
                    "kilobytes, megabytes, gigabytes and terabytes.\n");
 | 
					                    "kilobytes, megabytes, gigabytes and terabytes.\n");
 | 
				
			||||||
            return -1;
 | 
					            return -1;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
        fprintf(stderr, "Option '%s' needs a parameter\n", name);
 | 
					        qerror_report(QERR_INVALID_PARAMETER_VALUE, name, "a size");
 | 
				
			||||||
        return -1;
 | 
					        return -1;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    return 0;
 | 
					    return 0;
 | 
				
			||||||
@ -581,8 +581,7 @@ int qemu_opt_set(QemuOpts *opts, const char *name, const char *value)
 | 
				
			|||||||
        if (i == 0) {
 | 
					        if (i == 0) {
 | 
				
			||||||
            /* empty list -> allow any */;
 | 
					            /* empty list -> allow any */;
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            fprintf(stderr, "option \"%s\" is not valid for %s\n",
 | 
					            qerror_report(QERR_INVALID_PARAMETER, name);
 | 
				
			||||||
                    name, opts->list->name);
 | 
					 | 
				
			||||||
            return -1;
 | 
					            return -1;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@ -598,8 +597,6 @@ int qemu_opt_set(QemuOpts *opts, const char *name, const char *value)
 | 
				
			|||||||
        opt->str = qemu_strdup(value);
 | 
					        opt->str = qemu_strdup(value);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    if (qemu_opt_parse(opt) < 0) {
 | 
					    if (qemu_opt_parse(opt) < 0) {
 | 
				
			||||||
        fprintf(stderr, "Failed to parse \"%s\" for \"%s.%s\"\n", opt->str,
 | 
					 | 
				
			||||||
                opts->list->name, opt->name);
 | 
					 | 
				
			||||||
        qemu_opt_del(opt);
 | 
					        qemu_opt_del(opt);
 | 
				
			||||||
        return -1;
 | 
					        return -1;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user