On 12 August 2015 at 17:46, Alexander Shiyan <[email protected]> wrote: >> Среда, 12 августа 2015, 15:36 +08:00 от cantona <[email protected]>: >> >> >> added Alexander Shiyan < [email protected] >. >> >> On 12 August 2015 at 15:22, Su Kang Yin < [email protected] > wrote: >> >Max310x driver supports up to 4 UART devices but array size of >> >"struct max310x_one" is set to 1. That leads to out of bounds >> >access on UART port registration. >> > >> >This patch fixed it by increase the array size to 4 which is >> >maximum supported UART. >> > >> >Signed-off-by: Su Kang Yin < [email protected] > >> >--- > ... > > This seems incorrect. The number of ports is allocated dynamically by: > ... > /* Alloc port structure */ > s = devm_kzalloc(dev, sizeof(*s) + sizeof(struct max310x_one) * devtype->nr, > GFP_KERNEL); > ... > > Thanks. > > --- >
Oh, my bad. But it looks confusing. So we must ensure "struct max310x_one p[0]" must the last element of "struct max310x_port". Thanks. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

