1
2
3
4
5
6
7
8
9
10#include <linux/kmod.h>
11#include <linux/module.h>
12#include <linux/moduleparam.h>
13#include <linux/version.h>
14#include "sclp_cpi_sys.h"
15
16MODULE_LICENSE("GPL");
17MODULE_DESCRIPTION("Identify this operating system instance "
18 "to the System z hardware");
19MODULE_AUTHOR("Martin Peschke <mpeschke@de.ibm.com>, "
20 "Michael Ernst <mernst@de.ibm.com>");
21
22static char *system_name = "";
23static char *sysplex_name = "";
24
25module_param(system_name, charp, 0);
26MODULE_PARM_DESC(system_name, "e.g. hostname - max. 8 characters");
27module_param(sysplex_name, charp, 0);
28MODULE_PARM_DESC(sysplex_name, "if applicable - max. 8 characters");
29
30static int __init cpi_module_init(void)
31{
32 return sclp_cpi_set_data(system_name, sysplex_name, "LINUX",
33 LINUX_VERSION_CODE);
34}
35
36static void __exit cpi_module_exit(void)
37{
38}
39
40module_init(cpi_module_init);
41module_exit(cpi_module_exit);
42