diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2008-04-17 01:46:10 -0400 |
---|---|---|
committer | Heiko Carstens <heiko.carstens@de.ibm.com> | 2008-04-17 01:47:01 -0400 |
commit | cbce70e687bf9c7968d63f058b4c3d2e90008ce2 (patch) | |
tree | baa522ffccc740a9ba523a4947d22e2ce0a42ca1 /drivers | |
parent | aa24f7f08baca5aa9201901131cbdd0b14deceb6 (diff) |
[S390] Add new fields for System z10 to /proc/sysinfo
Add permanent and temporary model capacity and the corresponding
capacity value fields for the three capacity identifiers to the
output of /proc/sysinfo.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/s390/sysinfo.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/drivers/s390/sysinfo.c b/drivers/s390/sysinfo.c index 43fffa3b099d..c3e4ab07b9cc 100644 --- a/drivers/s390/sysinfo.c +++ b/drivers/s390/sysinfo.c | |||
@@ -35,6 +35,8 @@ static int stsi_1_1_1(struct sysinfo_1_1_1 *info, char *page, int len) | |||
35 | EBCASC(info->sequence, sizeof(info->sequence)); | 35 | EBCASC(info->sequence, sizeof(info->sequence)); |
36 | EBCASC(info->plant, sizeof(info->plant)); | 36 | EBCASC(info->plant, sizeof(info->plant)); |
37 | EBCASC(info->model_capacity, sizeof(info->model_capacity)); | 37 | EBCASC(info->model_capacity, sizeof(info->model_capacity)); |
38 | EBCASC(info->model_perm_cap, sizeof(info->model_perm_cap)); | ||
39 | EBCASC(info->model_temp_cap, sizeof(info->model_temp_cap)); | ||
38 | len += sprintf(page + len, "Manufacturer: %-16.16s\n", | 40 | len += sprintf(page + len, "Manufacturer: %-16.16s\n", |
39 | info->manufacturer); | 41 | info->manufacturer); |
40 | len += sprintf(page + len, "Type: %-4.4s\n", | 42 | len += sprintf(page + len, "Type: %-4.4s\n", |
@@ -57,8 +59,18 @@ static int stsi_1_1_1(struct sysinfo_1_1_1 *info, char *page, int len) | |||
57 | info->sequence); | 59 | info->sequence); |
58 | len += sprintf(page + len, "Plant: %-4.4s\n", | 60 | len += sprintf(page + len, "Plant: %-4.4s\n", |
59 | info->plant); | 61 | info->plant); |
60 | len += sprintf(page + len, "Model Capacity: %-16.16s\n", | 62 | len += sprintf(page + len, "Model Capacity: %-16.16s %08u\n", |
61 | info->model_capacity); | 63 | info->model_capacity, *(u32 *) info->model_cap_rating); |
64 | if (info->model_perm_cap[0] != '\0') | ||
65 | len += sprintf(page + len, | ||
66 | "Model Perm. Capacity: %-16.16s %08u\n", | ||
67 | info->model_perm_cap, | ||
68 | *(u32 *) info->model_perm_cap_rating); | ||
69 | if (info->model_temp_cap[0] != '\0') | ||
70 | len += sprintf(page + len, | ||
71 | "Model Temp. Capacity: %-16.16s %08u\n", | ||
72 | info->model_temp_cap, | ||
73 | *(u32 *) info->model_temp_cap_rating); | ||
62 | return len; | 74 | return len; |
63 | } | 75 | } |
64 | 76 | ||