* [PATCH v2] powerpc: msi: mark bitmap with kmemleak_not_leak()
@ 2015-09-15 17:14 Denis Kirjanov
2015-09-16 10:46 ` Catalin Marinas
0 siblings, 1 reply; 3+ messages in thread
From: Denis Kirjanov @ 2015-09-15 17:14 UTC (permalink / raw)
To: linuxppc-dev; +Cc: Michael Ellerman, Catalin Marinas, Denis Kirjanov
During the MSI bitmap test on boot kmemleak spews the following trace:
unreferenced object 0xc00000016e86c900 (size 64):
comm "swapper/0", pid 1, jiffies 4294893173 (age 518.024s)
hex dump (first 32 bytes):
00 00 01 ff 7f ff 7f 37 00 00 00 00 00 00 00 00
.......7........
ff ff ff ff ff ff ff ff 01 ff ff ff ff
ff ff ff
................
backtrace:
[<c00000000003eebc>] .zalloc_maybe_bootmem+0x3c/0x380
[<c000000000042d6c>] .msi_bitmap_alloc+0x3c/0xb0
[<c000000000a9aff8>] .msi_bitmap_selftest+0x30/0x2b4
[<c0000000000090f4>] .do_one_initcall+0xd4/0x270
[<c000000000a8e250>] .kernel_init_freeable+0x1a0/0x280
[<c000000000009b5c>] .kernel_init+0x1c/0x120
[<c000000000007fbc>] .ret_from_kernel_thread+0x58/0x9c
Added a flag to msi_bitmap for tracking allocations
from slab and memblock so we can properly free/handle
memory in msi_bitmap_free().
Signed-off-by: Denis Kirjanov <kda@linux-powerpc.org>
Changes vor v2:
- added a flag to msi_bitmap
- kmemleak annotaion moved under CONFIG_MSI_BITMAP_SELFTEST
---
arch/powerpc/include/asm/msi_bitmap.h | 1 +
arch/powerpc/sysdev/msi_bitmap.c | 15 +++++++++++----
2 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/arch/powerpc/include/asm/msi_bitmap.h b/arch/powerpc/include/asm/msi_bitmap.h
index 97ac3f4..9a1d2fb 100644
--- a/arch/powerpc/include/asm/msi_bitmap.h
+++ b/arch/powerpc/include/asm/msi_bitmap.h
@@ -19,6 +19,7 @@ struct msi_bitmap {
unsigned long *bitmap;
spinlock_t lock;
unsigned int irq_count;
+ bool bitmap_from_slab;
};
int msi_bitmap_alloc_hwirqs(struct msi_bitmap *bmp, int num);
diff --git a/arch/powerpc/sysdev/msi_bitmap.c b/arch/powerpc/sysdev/msi_bitmap.c
index 73b64c7..305ebe3 100644
--- a/arch/powerpc/sysdev/msi_bitmap.c
+++ b/arch/powerpc/sysdev/msi_bitmap.c
@@ -11,6 +11,7 @@
#include <linux/slab.h>
#include <linux/kernel.h>
#include <linux/bitmap.h>
+#include <linux/bootmem.h>
#include <asm/msi_bitmap.h>
#include <asm/setup.h>
@@ -122,7 +123,12 @@ int msi_bitmap_alloc(struct msi_bitmap *bmp, unsigned int irq_count,
size = BITS_TO_LONGS(irq_count) * sizeof(long);
pr_debug("msi_bitmap: allocator bitmap size is 0x%x bytes\n", size);
- bmp->bitmap = zalloc_maybe_bootmem(size, GFP_KERNEL);
+ if (slab_is_available()) {
+ bmp->bitmap = kzalloc(size, GFP_KERNEL);
+ bmp->bitmap_from_slab = true;
+ } else
+ bmp->bitmap = memblock_virt_alloc(size, 0);
+
if (!bmp->bitmap) {
pr_debug("msi_bitmap: ENOMEM allocating allocator bitmap!\n");
return -ENOMEM;
@@ -138,7 +144,8 @@ int msi_bitmap_alloc(struct msi_bitmap *bmp, unsigned int irq_count,
void msi_bitmap_free(struct msi_bitmap *bmp)
{
- /* we can't free the bitmap we don't know if it's bootmem etc. */
+ if (bmp->bitmap_from_slab)
+ kfree(bmp->bitmap);
of_node_put(bmp->of_node);
bmp->bitmap = NULL;
}
@@ -200,11 +207,11 @@ static void __init test_basics(void)
WARN_ON(rc < 0 && rc % 128 != 0);
msi_bitmap_free(&bmp);
+ if (!bmp.bitmap_from_slab)
+ kmemleak_not_leak(bmp.bitmap);
/* Clients may WARN_ON bitmap == NULL for "not-allocated" */
WARN_ON(bmp.bitmap != NULL);
-
- kfree(bmp.bitmap);
}
static void __init test_of_node(void)
--
2.4.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] powerpc: msi: mark bitmap with kmemleak_not_leak()
2015-09-15 17:14 [PATCH v2] powerpc: msi: mark bitmap with kmemleak_not_leak() Denis Kirjanov
@ 2015-09-16 10:46 ` Catalin Marinas
2015-09-16 10:57 ` Denis Kirjanov
0 siblings, 1 reply; 3+ messages in thread
From: Catalin Marinas @ 2015-09-16 10:46 UTC (permalink / raw)
To: Denis Kirjanov; +Cc: linuxppc-dev, Michael Ellerman
On Tue, Sep 15, 2015 at 08:14:08PM +0300, Denis Kirjanov wrote:
> diff --git a/arch/powerpc/include/asm/msi_bitmap.h b/arch/powerpc/include=
/asm/msi_bitmap.h
> index 97ac3f4..9a1d2fb 100644
> --- a/arch/powerpc/include/asm/msi_bitmap.h
> +++ b/arch/powerpc/include/asm/msi_bitmap.h
> @@ -19,6 +19,7 @@ struct msi_bitmap {
> =09unsigned long=09=09*bitmap;
> =09spinlock_t=09=09lock;
> =09unsigned int=09=09irq_count;
> +=09bool=09=09bitmap_from_slab;
Nitpick: same alignment for bitmap_from_slab with irq_count etc. (unless
it's just my mail client).
> };
> =20
> int msi_bitmap_alloc_hwirqs(struct msi_bitmap *bmp, int num);
> diff --git a/arch/powerpc/sysdev/msi_bitmap.c b/arch/powerpc/sysdev/msi_b=
itmap.c
> index 73b64c7..305ebe3 100644
> --- a/arch/powerpc/sysdev/msi_bitmap.c
> +++ b/arch/powerpc/sysdev/msi_bitmap.c
> @@ -11,6 +11,7 @@
> #include <linux/slab.h>
> #include <linux/kernel.h>
> #include <linux/bitmap.h>
> +#include <linux/bootmem.h>
> #include <asm/msi_bitmap.h>
> #include <asm/setup.h>
> =20
> @@ -122,7 +123,12 @@ int msi_bitmap_alloc(struct msi_bitmap *bmp, unsigne=
d int irq_count,
> =09size =3D BITS_TO_LONGS(irq_count) * sizeof(long);
> =09pr_debug("msi_bitmap: allocator bitmap size is 0x%x bytes\n", size);
> =20
> -=09bmp->bitmap =3D zalloc_maybe_bootmem(size, GFP_KERNEL);
> +=09if (slab_is_available()) {
> +=09=09bmp->bitmap =3D kzalloc(size, GFP_KERNEL);
> +=09=09bmp->bitmap_from_slab =3D true;
> +=09} else
> +=09=09bmp->bitmap =3D memblock_virt_alloc(size, 0);
I don't think bmp->bitmap_from_slab is always initialised, so you need
to explicitly set it to false here.
> +
> =09if (!bmp->bitmap) {
> =09=09pr_debug("msi_bitmap: ENOMEM allocating allocator bitmap!\n");
> =09=09return -ENOMEM;
> @@ -138,7 +144,8 @@ int msi_bitmap_alloc(struct msi_bitmap *bmp, unsigned=
int irq_count,
> =20
> void msi_bitmap_free(struct msi_bitmap *bmp)
> {
> -=09/* we can't free the bitmap we don't know if it's bootmem etc. */
> +=09if (bmp->bitmap_from_slab)
> +=09=09kfree(bmp->bitmap);
> =09of_node_put(bmp->of_node);
> =09bmp->bitmap =3D NULL;
> }
> @@ -200,11 +207,11 @@ static void __init test_basics(void)
> =09WARN_ON(rc < 0 && rc % 128 !=3D 0);
> =20
> =09msi_bitmap_free(&bmp);
> +=09if (!bmp.bitmap_from_slab)
> +=09=09kmemleak_not_leak(bmp.bitmap);
As I mentioned in the other thread, I think you can call
kmemleak_not_leak() immediately after memblock_virt_alloc() (together
with a comment that this is never going to be freed). That would match
the other kmemleak API uses throughout the kernel.
--=20
Catalin
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] powerpc: msi: mark bitmap with kmemleak_not_leak()
2015-09-16 10:46 ` Catalin Marinas
@ 2015-09-16 10:57 ` Denis Kirjanov
0 siblings, 0 replies; 3+ messages in thread
From: Denis Kirjanov @ 2015-09-16 10:57 UTC (permalink / raw)
To: Catalin Marinas; +Cc: linuxppc-dev, Michael Ellerman
On 9/16/15, Catalin Marinas <catalin.marinas@arm.com> wrote:
> On Tue, Sep 15, 2015 at 08:14:08PM +0300, Denis Kirjanov wrote:
>> diff --git a/arch/powerpc/include/asm/msi_bitmap.h
>> b/arch/powerpc/include/asm/msi_bitmap.h
>> index 97ac3f4..9a1d2fb 100644
>> --- a/arch/powerpc/include/asm/msi_bitmap.h
>> +++ b/arch/powerpc/include/asm/msi_bitmap.h
>> @@ -19,6 +19,7 @@ struct msi_bitmap {
>> unsigned long *bitmap;
>> spinlock_t lock;
>> unsigned int irq_count;
>> + bool bitmap_from_slab;
>
> Nitpick: same alignment for bitmap_from_slab with irq_count etc. (unless
> it's just my mail client).
>
>> };
>>
>> int msi_bitmap_alloc_hwirqs(struct msi_bitmap *bmp, int num);
>> diff --git a/arch/powerpc/sysdev/msi_bitmap.c
>> b/arch/powerpc/sysdev/msi_bitmap.c
>> index 73b64c7..305ebe3 100644
>> --- a/arch/powerpc/sysdev/msi_bitmap.c
>> +++ b/arch/powerpc/sysdev/msi_bitmap.c
>> @@ -11,6 +11,7 @@
>> #include <linux/slab.h>
>> #include <linux/kernel.h>
>> #include <linux/bitmap.h>
>> +#include <linux/bootmem.h>
>> #include <asm/msi_bitmap.h>
>> #include <asm/setup.h>
>>
>> @@ -122,7 +123,12 @@ int msi_bitmap_alloc(struct msi_bitmap *bmp, unsigned
>> int irq_count,
>> size = BITS_TO_LONGS(irq_count) * sizeof(long);
>> pr_debug("msi_bitmap: allocator bitmap size is 0x%x bytes\n", size);
>>
>> - bmp->bitmap = zalloc_maybe_bootmem(size, GFP_KERNEL);
>> + if (slab_is_available()) {
>> + bmp->bitmap = kzalloc(size, GFP_KERNEL);
>> + bmp->bitmap_from_slab = true;
>> + } else
>> + bmp->bitmap = memblock_virt_alloc(size, 0);
>
> I don't think bmp->bitmap_from_slab is always initialised, so you need
> to explicitly set it to false here.
Oops, right.
>
>> +
>> if (!bmp->bitmap) {
>> pr_debug("msi_bitmap: ENOMEM allocating allocator bitmap!\n");
>> return -ENOMEM;
>> @@ -138,7 +144,8 @@ int msi_bitmap_alloc(struct msi_bitmap *bmp, unsigned
>> int irq_count,
>>
>> void msi_bitmap_free(struct msi_bitmap *bmp)
>> {
>> - /* we can't free the bitmap we don't know if it's bootmem etc. */
>> + if (bmp->bitmap_from_slab)
>> + kfree(bmp->bitmap);
>> of_node_put(bmp->of_node);
>> bmp->bitmap = NULL;
>> }
>> @@ -200,11 +207,11 @@ static void __init test_basics(void)
>> WARN_ON(rc < 0 && rc % 128 != 0);
>>
>> msi_bitmap_free(&bmp);
>> + if (!bmp.bitmap_from_slab)
>> + kmemleak_not_leak(bmp.bitmap);
>
> As I mentioned in the other thread, I think you can call
> kmemleak_not_leak() immediately after memblock_virt_alloc() (together
> with a comment that this is never going to be freed). That would match
> the other kmemleak API uses throughout the kernel.
Ah, ok. Thanks for the review!
>
> --
> Catalin
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-09-16 10:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-15 17:14 [PATCH v2] powerpc: msi: mark bitmap with kmemleak_not_leak() Denis Kirjanov
2015-09-16 10:46 ` Catalin Marinas
2015-09-16 10:57 ` Denis Kirjanov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).