Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3894e9e8 authored by Dan Carpenter's avatar Dan Carpenter Committed by Thomas Gleixner
Browse files

irqchip: irq-crossbar: Not allocating enough memory



We are allocating the size of a pointer and not the size of the data.
This will lead to memory corruption.

There isn't actually a "cb_device" struct, btw.  The code is only able
to compile because GCC knows that all pointers are the same size.

Fixes: 96ca848e ('DRIVERS: IRQCHIP: CROSSBAR: Add support for Crossbar IP')

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Acked-by: default avatarSricharan R <r.sricharan@ti.com>
Cc: Grant Likely <grant.likely@linaro.org>
Cc: Rob Herring <robh+dt@kernel.org>
Link: http://lkml.kernel.org/r/20140403072134.GA14286@mwanda


Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 8cc3cfc5
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -107,7 +107,7 @@ static int __init crossbar_of_init(struct device_node *node)
	int i, size, max, reserved = 0, entry;
	int i, size, max, reserved = 0, entry;
	const __be32 *irqsr;
	const __be32 *irqsr;


	cb = kzalloc(sizeof(struct cb_device *), GFP_KERNEL);
	cb = kzalloc(sizeof(*cb), GFP_KERNEL);


	if (!cb)
	if (!cb)
		return -ENOMEM;
		return -ENOMEM;