Skip to content

Commit

Permalink
x86: msi-laptop: fix memleak
Browse files Browse the repository at this point in the history
1. fix two visible mistakes:
    * when load_scm_model_init faild, we should call platform_device_del(msipf_device)
    * msipf_attribute_group should be remove in err case

2. change some tags, give them real meaning.

Signed-off-by: Libo Chen <libo.chen@huawei.com>
Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
  • Loading branch information
Libo Chen authored and Matthew Garrett committed Jul 10, 2013
1 parent e1a98e6 commit 4c241b3
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions drivers/platform/x86/msi-laptop.c
Original file line number Diff line number Diff line change
Expand Up @@ -1098,29 +1098,29 @@ static int __init msi_init(void)

ret = platform_device_add(msipf_device);
if (ret)
goto fail_platform_device1;
goto fail_device_add;

if (quirks->load_scm_model && (load_scm_model_init(msipf_device) < 0)) {
ret = -EINVAL;
goto fail_platform_device1;
goto fail_scm_model_init;
}

ret = sysfs_create_group(&msipf_device->dev.kobj,
&msipf_attribute_group);
if (ret)
goto fail_platform_device2;
goto fail_create_group;

if (!quirks->old_ec_model) {
if (threeg_exists)
ret = device_create_file(&msipf_device->dev,
&dev_attr_threeg);
if (ret)
goto fail_platform_device2;
goto fail_create_attr;
} else {
ret = sysfs_create_group(&msipf_device->dev.kobj,
&msipf_old_attribute_group);
if (ret)
goto fail_platform_device2;
goto fail_create_attr;

/* Disable automatic brightness control by default because
* this module was probably loaded to do brightness control in
Expand All @@ -1134,26 +1134,22 @@ static int __init msi_init(void)

return 0;

fail_platform_device2:

fail_create_attr:
sysfs_remove_group(&msipf_device->dev.kobj, &msipf_attribute_group);
fail_create_group:
if (quirks->load_scm_model) {
i8042_remove_filter(msi_laptop_i8042_filter);
cancel_delayed_work_sync(&msi_rfkill_dwork);
cancel_work_sync(&msi_rfkill_work);
rfkill_cleanup();
}
fail_scm_model_init:
platform_device_del(msipf_device);

fail_platform_device1:

fail_device_add:
platform_device_put(msipf_device);

fail_platform_driver:

platform_driver_unregister(&msipf_driver);

fail_backlight:

backlight_device_unregister(msibl_device);

return ret;
Expand Down

0 comments on commit 4c241b3

Please sign in to comment.