Changes in 4.9.154 net: bridge: Fix ethernet header pointer before check skb forwardable net: Fix usage of pskb_trim_rcsum openvswitch: Avoid OOB read when parsing flow nlattrs vhost: log dirty page correctly net: ipv4: Fix memory leak in network namespace dismantle net_sched: refetch skb protocol for each filter ipfrag: really prevent allocation on netns exit USB: serial: simple: add Motorola Tetra TPG2200 device id USB: serial: pl2303: add new PID to support PL2303TB ASoC: atom: fix a missing check of snd_pcm_lib_malloc_pages ASoC: rt5514-spi: Fix potential NULL pointer dereference ARCv2: lib: memeset: fix doing prefetchw outside of buffer ARC: perf: map generic branches to correct hardware condition s390/early: improve machine detection s390/smp: fix CPU hotplug deadlock with CPU rescan char/mwave: fix potential Spectre v1 vulnerability staging: rtl8188eu: Add device code for D-Link DWA-121 rev B1 tty: Handle problem if line discipline does not have receive_buf uart: Fix crash in uart_write and uart_put_char tty/n_hdlc: fix __might_sleep warning CIFS: Fix possible hang during async MTU reads and writes Input: xpad - add support for SteelSeries Stratus Duo compiler.h: enable builtin overflow checkers and add fallback code Input: uinput - fix undefined behavior in uinput_validate_absinfo() acpi/nfit: Block function zero DSMs acpi/nfit: Fix command-supported detection dm thin: fix passdown_double_checking_shared_status() KVM: x86: Fix single-step debugging x86/selftests/pkeys: Fork() to check for state being preserved x86/kaslr: Fix incorrect i8254 outb() parameters can: dev: __can_get_echo_skb(): fix bogous check for non-existing skb by removing it can: bcm: check timer values before ktime conversion vt: invoke notifier on screen size change perf unwind: Unwind with libdw doesn't take symfs into account perf unwind: Take pgoff into account when reporting elf to libdwfl irqchip/gic-v3-its: Align PCI Multi-MSI allocation on their size s390/smp: Fix calling smp_call_ipl_cpu() from ipl CPU nvmet-rdma: Add unlikely for response allocated check nvmet-rdma: fix null dereference under heavy load f2fs: read page index before freeing btrfs: fix error handling in btrfs_dev_replace_start btrfs: dev-replace: go back to suspended state if target device is missing Linux 4.9.154 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
180 lines
4.0 KiB
C
180 lines
4.0 KiB
C
/*
|
|
* Copyright IBM Corp. 2007
|
|
* Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
|
|
*/
|
|
|
|
#define KMSG_COMPONENT "sclp_config"
|
|
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/cpu.h>
|
|
#include <linux/device.h>
|
|
#include <linux/workqueue.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/sysfs.h>
|
|
#include <asm/smp.h>
|
|
|
|
#include "sclp.h"
|
|
|
|
struct conf_mgm_data {
|
|
u8 reserved;
|
|
u8 ev_qualifier;
|
|
} __attribute__((packed));
|
|
|
|
#define OFB_DATA_MAX 64
|
|
|
|
struct sclp_ofb_evbuf {
|
|
struct evbuf_header header;
|
|
struct conf_mgm_data cm_data;
|
|
char ev_data[OFB_DATA_MAX];
|
|
} __packed;
|
|
|
|
struct sclp_ofb_sccb {
|
|
struct sccb_header header;
|
|
struct sclp_ofb_evbuf ofb_evbuf;
|
|
} __packed;
|
|
|
|
#define EV_QUAL_CPU_CHANGE 1
|
|
#define EV_QUAL_CAP_CHANGE 3
|
|
#define EV_QUAL_OPEN4BUSINESS 5
|
|
|
|
static struct work_struct sclp_cpu_capability_work;
|
|
static struct work_struct sclp_cpu_change_work;
|
|
|
|
static void sclp_cpu_capability_notify(struct work_struct *work)
|
|
{
|
|
int cpu;
|
|
struct device *dev;
|
|
|
|
s390_update_cpu_mhz();
|
|
pr_info("CPU capability may have changed\n");
|
|
get_online_cpus();
|
|
for_each_online_cpu(cpu) {
|
|
dev = get_cpu_device(cpu);
|
|
kobject_uevent(&dev->kobj, KOBJ_CHANGE);
|
|
}
|
|
put_online_cpus();
|
|
}
|
|
|
|
static void __ref sclp_cpu_change_notify(struct work_struct *work)
|
|
{
|
|
lock_device_hotplug();
|
|
smp_rescan_cpus();
|
|
unlock_device_hotplug();
|
|
}
|
|
|
|
static void sclp_conf_receiver_fn(struct evbuf_header *evbuf)
|
|
{
|
|
struct conf_mgm_data *cdata;
|
|
|
|
cdata = (struct conf_mgm_data *)(evbuf + 1);
|
|
switch (cdata->ev_qualifier) {
|
|
case EV_QUAL_CPU_CHANGE:
|
|
schedule_work(&sclp_cpu_change_work);
|
|
break;
|
|
case EV_QUAL_CAP_CHANGE:
|
|
schedule_work(&sclp_cpu_capability_work);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static struct sclp_register sclp_conf_register =
|
|
{
|
|
#ifdef CONFIG_SCLP_OFB
|
|
.send_mask = EVTYP_CONFMGMDATA_MASK,
|
|
#endif
|
|
.receive_mask = EVTYP_CONFMGMDATA_MASK,
|
|
.receiver_fn = sclp_conf_receiver_fn,
|
|
};
|
|
|
|
#ifdef CONFIG_SCLP_OFB
|
|
static int sclp_ofb_send_req(char *ev_data, size_t len)
|
|
{
|
|
static DEFINE_MUTEX(send_mutex);
|
|
struct sclp_ofb_sccb *sccb;
|
|
int rc, response;
|
|
|
|
if (len > OFB_DATA_MAX)
|
|
return -EINVAL;
|
|
sccb = (struct sclp_ofb_sccb *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
|
|
if (!sccb)
|
|
return -ENOMEM;
|
|
/* Setup SCCB for Control-Program Identification */
|
|
sccb->header.length = sizeof(struct sclp_ofb_sccb);
|
|
sccb->ofb_evbuf.header.length = sizeof(struct sclp_ofb_evbuf);
|
|
sccb->ofb_evbuf.header.type = EVTYP_CONFMGMDATA;
|
|
sccb->ofb_evbuf.cm_data.ev_qualifier = EV_QUAL_OPEN4BUSINESS;
|
|
memcpy(sccb->ofb_evbuf.ev_data, ev_data, len);
|
|
|
|
if (!(sclp_conf_register.sclp_receive_mask & EVTYP_CONFMGMDATA_MASK))
|
|
pr_warn("SCLP receiver did not register to receive "
|
|
"Configuration Management Data Events.\n");
|
|
|
|
mutex_lock(&send_mutex);
|
|
rc = sclp_sync_request(SCLP_CMDW_WRITE_EVENT_DATA, sccb);
|
|
mutex_unlock(&send_mutex);
|
|
if (rc)
|
|
goto out;
|
|
response = sccb->header.response_code;
|
|
if (response != 0x0020) {
|
|
pr_err("Open for Business request failed with response code "
|
|
"0x%04x\n", response);
|
|
rc = -EIO;
|
|
}
|
|
out:
|
|
free_page((unsigned long)sccb);
|
|
return rc;
|
|
}
|
|
|
|
static ssize_t sysfs_ofb_data_write(struct file *filp, struct kobject *kobj,
|
|
struct bin_attribute *bin_attr,
|
|
char *buf, loff_t off, size_t count)
|
|
{
|
|
int rc;
|
|
|
|
rc = sclp_ofb_send_req(buf, count);
|
|
return rc ?: count;
|
|
}
|
|
|
|
static struct bin_attribute ofb_bin_attr = {
|
|
.attr = {
|
|
.name = "event_data",
|
|
.mode = S_IWUSR,
|
|
},
|
|
.write = sysfs_ofb_data_write,
|
|
};
|
|
#endif
|
|
|
|
static int __init sclp_ofb_setup(void)
|
|
{
|
|
#ifdef CONFIG_SCLP_OFB
|
|
struct kset *ofb_kset;
|
|
int rc;
|
|
|
|
ofb_kset = kset_create_and_add("ofb", NULL, firmware_kobj);
|
|
if (!ofb_kset)
|
|
return -ENOMEM;
|
|
rc = sysfs_create_bin_file(&ofb_kset->kobj, &ofb_bin_attr);
|
|
if (rc) {
|
|
kset_unregister(ofb_kset);
|
|
return rc;
|
|
}
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
static int __init sclp_conf_init(void)
|
|
{
|
|
int rc;
|
|
|
|
INIT_WORK(&sclp_cpu_capability_work, sclp_cpu_capability_notify);
|
|
INIT_WORK(&sclp_cpu_change_work, sclp_cpu_change_notify);
|
|
rc = sclp_register(&sclp_conf_register);
|
|
if (rc)
|
|
return rc;
|
|
return sclp_ofb_setup();
|
|
}
|
|
|
|
__initcall(sclp_conf_init);
|