Skip to content

Commit 4cb205c

Browse files
Jia HeKAGA-KOKO
authored andcommitted
irqchip/gic-v3-its: Cap lpi_id_bits to reduce memory footprint
Commit fe8e935 ("irqchip/gic-v3-its: Use full range of LPIs"), removes the cap for lpi_id_bits, which causes the following warning to trigger on a QDF2400 server: WARNING: CPU: 0 PID: 0 at mm/page_alloc.c:4066 __alloc_pages_nodemask ... Call trace: __alloc_pages_nodemask+0x2d8/0x1188 alloc_pages_current+0x8c/0xd8 its_allocate_prop_table+0x5c/0xb8 its_init+0x220/0x3c0 gic_init_bases+0x250/0x380 gic_acpi_init+0x16c/0x2a4 In its_alloc_lpi_tables(), lpi_id_bits is 24 in QDF2400. The allocation in allocate_prop_table() tries therefore to allocate 16M (order 12 if pagesize=4k), which triggers the warning. As said by MarcL Capping lpi_id_bits at 16 (which is what we had before) is plenty, will save a some memory, and gives some margin before we need to push it up again. Bring the upper limit of lpi_id_bits back to prevent Fixes: fe8e935 ("irqchip/gic-v3-its: Use full range of LPIs") Suggested-by: Marc Zyngier <marc.zyngier@arm.com> Signed-off-by: Jia He <jia.he@hxt-semitech.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Marc Zyngier <marc.zyngier@arm.com> Tested-by: Olof Johansson <olof@lixom.net> Cc: Jason Cooper <jason@lakedaemon.net> Cc: linux-arm-kernel@lists.infradead.org Link: https://lkml.kernel.org/r/1535432006-2304-1-git-send-email-jia.he@hxt-semitech.com
1 parent db44bf4 commit 4cb205c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

drivers/irqchip/irq-gic-v3-its.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1439,6 +1439,7 @@ static struct irq_chip its_irq_chip = {
14391439
* The consequence of the above is that allocation is cost is low, but
14401440
* freeing is expensive. We assumes that freeing rarely occurs.
14411441
*/
1442+
#define ITS_MAX_LPI_NRBITS 16 /* 64K LPIs */
14421443

14431444
static DEFINE_MUTEX(lpi_range_lock);
14441445
static LIST_HEAD(lpi_range_list);
@@ -1625,7 +1626,8 @@ static int __init its_alloc_lpi_tables(void)
16251626
{
16261627
phys_addr_t paddr;
16271628

1628-
lpi_id_bits = GICD_TYPER_ID_BITS(gic_rdists->gicd_typer);
1629+
lpi_id_bits = min_t(u32, GICD_TYPER_ID_BITS(gic_rdists->gicd_typer),
1630+
ITS_MAX_LPI_NRBITS);
16291631
gic_rdists->prop_page = its_allocate_prop_table(GFP_NOWAIT);
16301632
if (!gic_rdists->prop_page) {
16311633
pr_err("Failed to allocate PROPBASE\n");

0 commit comments

Comments
 (0)