Displaying 1 result from an estimated 1 matches for "config_src".
Did you mean:
config_sfc
2012 Apr 03
3
[PATCH] xl: Don't require a config file for cpupools
...ols/libxl/xl_cmdimpl.c Tue Apr 03 19:02:19 2012 +0100
+++ b/tools/libxl/xl_cmdimpl.c Tue Apr 03 19:28:04 2012 +0100
@@ -5407,7 +5407,7 @@ int main_tmem_freeable(int argc, char **
int main_cpupoolcreate(int argc, char **argv)
{
- const char *filename = NULL;
+ const char *filename = NULL, *config_src=NULL;
const char *p;
char extra_config[1024];
int opt;
@@ -5471,23 +5471,26 @@ int main_cpupoolcreate(int argc, char **
optind++;
}
- if (!filename) {
- help("cpupool-create");
- return -ERROR_FAIL;
- }
-
- if (libxl_read_file_contents...