[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v7 for-4.5 4/7] xl: move 'replace_string' further up the file
This allows the function to be reused more easily. Signed-off-by: David Scott <dave.scott@xxxxxxxxxx> Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx> --- tools/libxl/xl_cmdimpl.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 7b87298..1fc2171 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -812,6 +812,12 @@ static void parse_vcpu_affinity(libxl_domain_build_info *b_info, } } +static void replace_string(char **str, const char *val) +{ + free(*str); + *str = strdup(val); +} + static void parse_config_data(const char *config_source, const char *config_data, int config_len, @@ -1927,13 +1933,6 @@ static int match_option_size(const char *prefix, size_t len, #define MATCH_OPTION(prefix, arg, oparg) \ match_option_size((prefix "="), sizeof((prefix)), (arg), &(oparg)) -static void replace_string(char **str, const char *val) -{ - free(*str); - *str = strdup(val); -} - - /* Preserve a copy of a domain under a new name. Updates *r_domid */ static int preserve_domain(uint32_t *r_domid, libxl_event *event, libxl_domain_config *d_config) -- 1.7.10.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |