[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH V2] libxl: support custom block hotplug scripts
Ian Campbell writes ("[PATCH V2] libxl: support custom block hotplug scripts"): > libxl: support custom block hotplug scripts Wow. Thanks. Everything looks good apart from this: > DPC->had_depr_prefix=1; DEPRECATE("use `script=...'"); > - SAVESTRING("script", script, yytext); > - } > + if (DPC->disk->script) { > + if (*DPC->disk->script) { > + xlu__disk_err(DPC,yytext,"script respecified"); > + return 0; > + } > + /* do not complain about overwriting empty strings */ > + free(DPC->disk->script); > + } > + DPC->disk->script = malloc(strlen("block-") > + +strlen(yytext) + 1); > + strcpy(DPC->disk->script, "block-"); > + strcat(DPC->disk->script, yytext); Isn't this very like the contents of the savestring() function ? Ie you could do: char *newscript; asprintf(&newscript, ...); savestring(DPC, "script respecified", &DPC->disk->script, newscript); free(newscript); Other places in xl use asprintf so you can use it here. > + } Is this one-character indentation change intentional ? Ian. _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |