@@ -41,27 +41,43 @@ static ssize_t __ref store_online(struct device *dev,
const char *buf, size_t count)
{
struct cpu *cpu = container_of(dev, struct cpu, dev);
- ssize_t ret;
+ struct hp_request *hp_req;
+ struct hp_device *hp_dev;
+ enum hp_operation operation;
+ ssize_t ret = count;
- cpu_hotplug_driver_lock();
switch (buf[0]) {
case '0':
- ret = cpu_down(cpu->dev.id);
- if (!ret)
- kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
+ operation = HP_ONLINE_DEL;
break;
case '1':
- ret = cpu_up(cpu->dev.id);
- if (!ret)
- kobject_uevent(&dev->kobj, KOBJ_ONLINE);
+ operation = HP_ONLINE_ADD;
break;
default:
- ret = -EINVAL;
+ return -EINVAL;
+ }
+
+ hp_req = hp_alloc_request(operation);
+ if (!hp_req)
+ return -ENOMEM;
+
+ hp_dev = kzalloc(sizeof(*hp_dev), GFP_KERNEL);
+ if (!hp_dev) {
+ kfree(hp_req);
+ return -ENOMEM;
+ }
+
+ hp_dev->device = dev;
+ hp_dev->class = HP_CLS_CPU;
+ hp_dev->data.cpu.cpu_id = cpu->dev.id;
+ hp_add_dev_info(hp_req, hp_dev);
+
+ if (hp_submit_req(hp_req)) {
+ kfree(hp_dev);
+ kfree(hp_req);
+ return -EINVAL;
}
- cpu_hotplug_driver_unlock();
- if (ret >= 0)
- ret = count;
return ret;
}
static DEVICE_ATTR(online, 0644, show_online, store_online);
Changed store_online() to request a cpu online or offline operation by calling hp_submit_req(). It sets a target cpu device information with hp_add_dev_info() before making the request. Signed-off-by: Toshi Kani <toshi.kani@hp.com> --- drivers/base/cpu.c | 40 ++++++++++++++++++++++++++++------------ 1 file changed, 28 insertions(+), 12 deletions(-)