[RFC PATCH] irqchip/gic-v3-its:Fix the bug while calculating the page number of ITS table
majun (F)
majun258 at huawei.com
Fri Dec 25 00:24:27 PST 2015
Hi Marc:
在 2015/12/24 21:48, Marc Zyngier 写道:
> On Tue, 22 Dec 2015 15:10:23 +0800
> MaJun <majun258 at huawei.com> wrote:
>
[...]
>
> diff --git a/drivers/irqchip/irq-gic-v3-its.c b/drivers/irqchip/irq-gic-v3-its.c
> index e23d1d1..3447549 100644
> --- a/drivers/irqchip/irq-gic-v3-its.c
> +++ b/drivers/irqchip/irq-gic-v3-its.c
> @@ -875,6 +875,7 @@ static int its_alloc_tables(const char *node_name, struct its_node *its)
> }
>
> alloc_size = (1 << order) * PAGE_SIZE;
> +retry_alloc_baser:
> alloc_pages = (alloc_size / psz);
> if (alloc_pages > GITS_BASER_PAGES_MAX) {
> alloc_pages = GITS_BASER_PAGES_MAX;
> @@ -938,13 +939,16 @@ retry_baser:
> * size and retry. If we reach 4K, then
> * something is horribly wrong...
> */
> + free_pages((unsigned long)base, order);
> + its->tables[i] = NULL;
> +
> switch (psz) {
> case SZ_16K:
> psz = SZ_4K;
> - goto retry_baser;
> + goto retry_alloc_baser;
> case SZ_64K:
> psz = SZ_16K;
> - goto retry_baser;
> + goto retry_alloc_baser;
> }
> }
>
>
>
> I haven't tested it, but it looks less invasive. Care to give it a go?
>
This patch works fine on my board.
Tested-by: Ma Jun <majun258 at huawei.com>
Thanks
Ma Jun
> Thanks,
>
> M.
>
More information about the linux-arm-kernel
mailing list