]> git.itanic.dy.fi Git - linux-stable/commitdiff
virt: sev-guest: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Tue, 26 Dec 2023 13:28:03 +0000 (14:28 +0100)
committerBorislav Petkov (AMD) <bp@alien8.de>
Tue, 2 Jan 2024 18:07:18 +0000 (19:07 +0100)
The .remove() callback for a platform driver returns an int which makes
many driver authors wrongly assume it's possible to do error handling by
returning an error code. However the value returned is ignored (apart
from emitting a warning) and this typically results in resource leaks.

To improve here there is a quest to make the remove callback return
void. In the first step of this quest all drivers are converted to
.remove_new(), which already returns void. Eventually after all drivers
are converted, .remove_new() will be renamed to .remove().

Trivially convert this driver from always returning zero in the remove
callback to the void returning variant.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Acked-by: Tom Lendacky <thomas.lendacky@amd.com>
Link: https://lore.kernel.org/r/52826a50250304ab0af14c594009f7b901c2cd31.1703596577.git.u.kleine-koenig@pengutronix.de
drivers/virt/coco/sev-guest/sev-guest.c

index bc564adcf499526aacdbc4fbc35e276f4cbdfee4..87f241825bc360fcc8af7d6f48e10d2b68d0fcb0 100644 (file)
@@ -994,7 +994,7 @@ static int __init sev_guest_probe(struct platform_device *pdev)
        return ret;
 }
 
-static int __exit sev_guest_remove(struct platform_device *pdev)
+static void __exit sev_guest_remove(struct platform_device *pdev)
 {
        struct snp_guest_dev *snp_dev = platform_get_drvdata(pdev);
 
@@ -1003,8 +1003,6 @@ static int __exit sev_guest_remove(struct platform_device *pdev)
        free_shared_pages(snp_dev->request, sizeof(struct snp_guest_msg));
        deinit_crypto(snp_dev->crypto);
        misc_deregister(&snp_dev->misc);
-
-       return 0;
 }
 
 /*
@@ -1013,7 +1011,7 @@ static int __exit sev_guest_remove(struct platform_device *pdev)
  * with the SEV-SNP support, it is named "sev-guest".
  */
 static struct platform_driver sev_guest_driver = {
-       .remove         = __exit_p(sev_guest_remove),
+       .remove_new     = __exit_p(sev_guest_remove),
        .driver         = {
                .name = "sev-guest",
        },