1 // SPDX-License-Identifier: GPL-2.0
3 * Data gathering module for Linux-VM Monitor Stream, Stage 1.
4 * Collects misc. OS related data (CPU utilization, running processes).
6 * Copyright IBM Corp. 2003, 2006
8 * Author: Gerald Schaefer <gerald.schaefer@de.ibm.com>
11 #define KMSG_COMPONENT "appldata"
12 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/slab.h>
17 #include <linux/errno.h>
18 #include <linux/kernel_stat.h>
19 #include <linux/netdevice.h>
20 #include <linux/sched.h>
21 #include <linux/sched/loadavg.h>
22 #include <linux/sched/stat.h>
23 #include <asm/appldata.h>
31 * This is accessed as binary data by z/VM. If changes to it can't be avoided,
32 * the structure version (product ID, see appldata_base.c) needs to be changed
33 * as well and all documentation and z/VM applications using it must be
36 * The record layout is documented in the Linux for zSeries Device Drivers
38 * http://oss.software.ibm.com/developerworks/opensource/linux390/index.shtml
40 struct appldata_os_per_cpu
{
41 u32 per_cpu_user
; /* timer ticks spent in user mode */
42 u32 per_cpu_nice
; /* ... spent with modified priority */
43 u32 per_cpu_system
; /* ... spent in kernel mode */
44 u32 per_cpu_idle
; /* ... spent in idle mode */
47 u32 per_cpu_irq
; /* ... spent in interrupts */
48 u32 per_cpu_softirq
; /* ... spent in softirqs */
49 u32 per_cpu_iowait
; /* ... spent while waiting for I/O */
51 /* New in modification level 01 */
52 u32 per_cpu_steal
; /* ... stolen by hypervisor */
53 u32 cpu_id
; /* number of this CPU */
54 } __attribute__((packed
));
56 struct appldata_os_data
{
58 u32 sync_count_1
; /* after VM collected the record data, */
59 u32 sync_count_2
; /* sync_count_1 and sync_count_2 should be the
60 same. If not, the record has been updated on
61 the Linux side while VM was collecting the
62 (possibly corrupt) data */
64 u32 nr_cpus
; /* number of (virtual) CPUs */
65 u32 per_cpu_size
; /* size of the per-cpu data struct */
66 u32 cpu_offset
; /* offset of the first per-cpu data struct */
68 u32 nr_running
; /* number of runnable threads */
69 u32 nr_threads
; /* number of threads */
70 u32 avenrun
[3]; /* average nr. of running processes during */
71 /* the last 1, 5 and 15 minutes */
74 u32 nr_iowait
; /* number of blocked threads
78 struct appldata_os_per_cpu os_cpu
[0];
79 } __attribute__((packed
));
81 static struct appldata_os_data
*appldata_os_data
;
83 static struct appldata_ops ops
= {
85 .record_nr
= APPLDATA_RECORD_OS_ID
,
87 .mod_lvl
= {0xF0, 0xF1}, /* EBCDIC "01" */
92 * appldata_get_os_data()
96 static void appldata_get_os_data(void *data
)
99 struct appldata_os_data
*os_data
;
100 unsigned int new_size
;
103 os_data
->sync_count_1
++;
105 os_data
->nr_threads
= nr_threads
;
106 os_data
->nr_running
= nr_running();
107 os_data
->nr_iowait
= nr_iowait();
108 os_data
->avenrun
[0] = avenrun
[0] + (FIXED_1
/200);
109 os_data
->avenrun
[1] = avenrun
[1] + (FIXED_1
/200);
110 os_data
->avenrun
[2] = avenrun
[2] + (FIXED_1
/200);
113 for_each_online_cpu(i
) {
114 os_data
->os_cpu
[j
].per_cpu_user
=
115 nsecs_to_jiffies(kcpustat_cpu(i
).cpustat
[CPUTIME_USER
]);
116 os_data
->os_cpu
[j
].per_cpu_nice
=
117 nsecs_to_jiffies(kcpustat_cpu(i
).cpustat
[CPUTIME_NICE
]);
118 os_data
->os_cpu
[j
].per_cpu_system
=
119 nsecs_to_jiffies(kcpustat_cpu(i
).cpustat
[CPUTIME_SYSTEM
]);
120 os_data
->os_cpu
[j
].per_cpu_idle
=
121 nsecs_to_jiffies(kcpustat_cpu(i
).cpustat
[CPUTIME_IDLE
]);
122 os_data
->os_cpu
[j
].per_cpu_irq
=
123 nsecs_to_jiffies(kcpustat_cpu(i
).cpustat
[CPUTIME_IRQ
]);
124 os_data
->os_cpu
[j
].per_cpu_softirq
=
125 nsecs_to_jiffies(kcpustat_cpu(i
).cpustat
[CPUTIME_SOFTIRQ
]);
126 os_data
->os_cpu
[j
].per_cpu_iowait
=
127 nsecs_to_jiffies(kcpustat_cpu(i
).cpustat
[CPUTIME_IOWAIT
]);
128 os_data
->os_cpu
[j
].per_cpu_steal
=
129 nsecs_to_jiffies(kcpustat_cpu(i
).cpustat
[CPUTIME_STEAL
]);
130 os_data
->os_cpu
[j
].cpu_id
= i
;
134 os_data
->nr_cpus
= j
;
136 new_size
= sizeof(struct appldata_os_data
) +
137 (os_data
->nr_cpus
* sizeof(struct appldata_os_per_cpu
));
138 if (ops
.size
!= new_size
) {
140 rc
= appldata_diag(APPLDATA_RECORD_OS_ID
,
141 APPLDATA_START_INTERVAL_REC
,
142 (unsigned long) ops
.data
, new_size
,
145 pr_err("Starting a new OS data collection "
146 "failed with rc=%d\n", rc
);
148 rc
= appldata_diag(APPLDATA_RECORD_OS_ID
,
150 (unsigned long) ops
.data
, ops
.size
,
153 pr_err("Stopping a faulty OS data "
154 "collection failed with rc=%d\n", rc
);
158 os_data
->timestamp
= get_tod_clock();
159 os_data
->sync_count_2
++;
166 * init data, register ops
168 static int __init
appldata_os_init(void)
172 max_size
= sizeof(struct appldata_os_data
) +
173 (num_possible_cpus() * sizeof(struct appldata_os_per_cpu
));
174 if (max_size
> APPLDATA_MAX_REC_SIZE
) {
175 pr_err("Maximum OS record size %i exceeds the maximum "
176 "record size %i\n", max_size
, APPLDATA_MAX_REC_SIZE
);
181 appldata_os_data
= kzalloc(max_size
, GFP_KERNEL
| GFP_DMA
);
182 if (appldata_os_data
== NULL
) {
187 appldata_os_data
->per_cpu_size
= sizeof(struct appldata_os_per_cpu
);
188 appldata_os_data
->cpu_offset
= offsetof(struct appldata_os_data
,
191 ops
.data
= appldata_os_data
;
192 ops
.callback
= &appldata_get_os_data
;
193 rc
= appldata_register_ops(&ops
);
195 kfree(appldata_os_data
);
205 static void __exit
appldata_os_exit(void)
207 appldata_unregister_ops(&ops
);
208 kfree(appldata_os_data
);
212 module_init(appldata_os_init
);
213 module_exit(appldata_os_exit
);
215 MODULE_LICENSE("GPL");
216 MODULE_AUTHOR("Gerald Schaefer");
217 MODULE_DESCRIPTION("Linux-VM Monitor Stream, OS statistics");