Message ID | 1454412562-28543-1-git-send-email-alexey.klimov@arm.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
On Tuesday, February 02, 2016 11:29:22 AM Alexey Klimov wrote: > This patch fixes the calculation of pcc_chan for non-zero id. > After the compiler ignores the (unsigned long) cast the > pcc_mbox_channels pointer is type-cast and then the type-cast > offset is added which results in address outside of the range > leading to the kernel crashing. > > We might add braces and make it: > > pcc_chan = (struct mbox_chan *) > ((unsigned long) pcc_mbox_channels + > (id * sizeof(*pcc_chan))); > > but let's go with array approach here and use id as index. > > Tested on Juno board. > > Acked-by: Sudeep Holla <sudeep.holla@arm.com> > Acked-by: Ashwin Chaugule <ashwin.chaugule@linaro.org> > Signed-off-by: Alexey Klimov <alexey.klimov@arm.com> Jassi said this was applied, so I'm not taking it. Thanks, Rafael -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/mailbox/pcc.c b/drivers/mailbox/pcc.c index 45d85ae..8f779a1 100644 --- a/drivers/mailbox/pcc.c +++ b/drivers/mailbox/pcc.c @@ -81,16 +81,10 @@ static struct mbox_controller pcc_mbox_ctrl = {}; */ static struct mbox_chan *get_pcc_channel(int id) { - struct mbox_chan *pcc_chan; - if (id < 0 || id > pcc_mbox_ctrl.num_chans) return ERR_PTR(-ENOENT); - pcc_chan = (struct mbox_chan *) - (unsigned long) pcc_mbox_channels + - (id * sizeof(*pcc_chan)); - - return pcc_chan; + return &pcc_mbox_channels[id]; } /**