search for: cpu_topology_func

Displaying 1 result from an estimated 1 matches for "cpu_topology_func".

2012 Sep 14
1
[PATCH] xenpm: make argument parsing and error handling more consistent
...derr, "failed to set governor name\n"); + fprintf(stderr, "failed to set governor name (%d - %s)\n", + errno, strerror(errno)); } - - free(name); - return ; -out: - fprintf(stderr, "failed to set governor name\n"); } void cpu_topology_func(int argc, char *argv[]) @@ -971,7 +958,7 @@ void cpu_topology_func(int argc, char *a DECLARE_HYPERCALL_BUFFER(uint32_t, cpu_to_socket); DECLARE_HYPERCALL_BUFFER(uint32_t, cpu_to_node); xc_topologyinfo_t info = { 0 }; - int i; + int i, rc = ENOMEM; cpu_to_core = xc_hyperc...