Mårten Lindahl
d2bef2cbd3
driver core: Free DMA range map when device is released
...
commit d8f7a5484f2188e9af2d9e4e587587d724501b12 upstream.
When unbinding/binding a driver with DMA mapped memory, the DMA map is
not freed before the driver is reloaded. This leads to a memory leak
when the DMA map is overwritten when reprobing the driver.
This can be reproduced with a platform driver having a dma-range:
dummy {
...
#address-cells = <0x2>;
#size-cells = <0x2>;
ranges;
dma-ranges = <...>;
...
};
and then unbinding/binding it:
~# echo soc:dummy >/sys/bus/platform/drivers/<driver>/unbind
DMA map object 0xffffff800b0ae540 still being held by &pdev->dev
~# echo soc:dummy >/sys/bus/platform/drivers/<driver>/bind
~# echo scan > /sys/kernel/debug/kmemleak
~# cat /sys/kernel/debug/kmemleak
unreferenced object 0xffffff800b0ae540 (size 64):
comm "sh", pid 833, jiffies 4295174550 (age 2535.352s)
hex dump (first 32 bytes):
00 00 00 80 00 00 00 00 00 00 00 00 00 00 00 00 ................
00 00 00 80 00 00 00 00 00 00 00 80 00 00 00 00 ................
backtrace:
[<ffffffefd1694708>] create_object.isra.0+0x108/0x344
[<ffffffefd1d1a850>] kmemleak_alloc+0x8c/0xd0
[<ffffffefd167e2d0>] __kmalloc+0x440/0x6f0
[<ffffffefd1a960a4>] of_dma_get_range+0x124/0x220
[<ffffffefd1a8ce90>] of_dma_configure_id+0x40/0x2d0
[<ffffffefd198b68c>] platform_dma_configure+0x5c/0xa4
[<ffffffefd198846c>] really_probe+0x8c/0x514
[<ffffffefd1988990>] __driver_probe_device+0x9c/0x19c
[<ffffffefd1988cd8>] device_driver_attach+0x54/0xbc
[<ffffffefd1986634>] bind_store+0xc4/0x120
[<ffffffefd19856e0>] drv_attr_store+0x30/0x44
[<ffffffefd173c9b0>] sysfs_kf_write+0x50/0x60
[<ffffffefd173c1c4>] kernfs_fop_write_iter+0x124/0x1b4
[<ffffffefd16a013c>] new_sync_write+0xdc/0x160
[<ffffffefd16a256c>] vfs_write+0x23c/0x2a0
[<ffffffefd16a2758>] ksys_write+0x64/0xec
To prevent this we should free the dma_range_map when the device is
released.
Fixes: e0d072782c73 ("dma-mapping: introduce DMA range map, supplanting dma_pfn_offset")
Cc: stable <stable@vger.kernel.org>
Suggested-by: Rob Herring <robh@kernel.org>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Mårten Lindahl <marten.lindahl@axis.com>
Link: https://lore.kernel.org/r/20220216094128.4025861-1-marten.lindahl@axis.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2022-03-02 11:48:07 +01:00
..
2021-11-25 09:48:27 +01:00
2022-02-16 12:56:19 +01:00
2022-03-02 11:48:01 +01:00
2021-10-06 17:53:42 -06:00
2021-09-14 13:23:22 -07:00
2021-08-30 10:43:35 +05:30
2021-05-14 13:37:10 +02:00
2021-07-27 09:22:08 +02:00
2021-07-16 19:17:05 +02:00
2021-07-21 14:56:00 +02:00
2021-07-21 17:29:40 +02:00
2020-11-09 18:56:49 +01:00
2021-11-18 19:16:08 +01:00
2022-01-27 11:04:44 +01:00
2021-07-21 17:30:09 +02:00
2022-03-02 11:48:07 +01:00
2021-06-04 15:05:44 +02:00
2021-06-15 17:14:36 +02:00
2022-01-20 09:13:13 +01:00
2020-07-10 14:16:44 +02:00
2021-02-11 08:43:03 +01:00
2021-07-21 11:53:42 +02:00
2021-02-26 10:28:35 -08:00
2021-06-15 17:14:36 +02:00
2021-07-21 17:30:09 +02:00
2021-09-08 12:55:35 -07:00
2021-09-08 12:55:35 -07:00
2021-08-24 09:16:20 +02:00
2021-08-18 16:08:11 +02:00
2022-01-27 11:05:10 +01:00
2020-12-09 19:46:31 +01:00
2022-01-27 11:03:46 +01:00
2020-09-08 13:32:06 +02:00
2021-08-13 10:27:49 +02:00
2021-06-15 17:14:36 +02:00
2021-06-15 17:14:36 +02:00
2020-01-15 22:55:37 -05:00