mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-18 02:25:18 +00:00
S390: Fixed Parser for /proc/cpuinfo needs to be adapted for your architecture
Minimal CPU "parser" for s390 to avoid compile time warning. Signed-off-by: Thang Pham <thang.pham@us.ibm.com> Signed-off-by: Viktor Mihajlovski <mihajlov@linux.vnet.ibm.com> (cherry picked from commit bf2e40fac034428d51efbab4a39cfe3c56132786) (crobinso: Add Thang to AUTHORS)
This commit is contained in:
parent
2a6cfe8ee8
commit
d838a6bca8
1
AUTHORS
1
AUTHORS
@ -238,6 +238,7 @@ Patches have also been contributed by:
|
||||
Gao feng <gaofeng@cn.fujitsu.com>
|
||||
Dipankar Sarma <dipankar@in.ibm.com>
|
||||
Viktor Mihajlovski <mihajlov@linux.vnet.ibm.com>
|
||||
Thang Pham <thang.pham@us.ibm.com>
|
||||
|
||||
[....send patches to get your name here....]
|
||||
|
||||
|
@ -275,6 +275,11 @@ int linuxNodeInfoCPUPopulate(FILE *cpuinfo,
|
||||
* and parsed in next iteration, because it is not in expected
|
||||
* format and thus lead to error. */
|
||||
}
|
||||
# elif defined(__s390__) || \
|
||||
defined(__s390x__)
|
||||
/* s390x has no realistic value for CPU speed,
|
||||
* assign a value of zero to signify this */
|
||||
nodeinfo->mhz = 0;
|
||||
# else
|
||||
# warning Parser for /proc/cpuinfo needs to be adapted for your architecture
|
||||
# endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user