[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <3bd0c0d3-324b-4e74-ac8a-0bf6f66ee33e@loongson.cn>
Date: Tue, 23 Apr 2024 21:16:25 +0800
From: Yanteng Si <siyanteng@...ngson.cn>
To: Serge Semin <fancer.lancer@...il.com>
Cc: andrew@...n.ch, hkallweit1@...il.com, peppe.cavallaro@...com,
alexandre.torgue@...s.st.com, joabreu@...opsys.com, Jose.Abreu@...opsys.com,
chenhuacai@...nel.org, linux@...linux.org.uk, guyinggang@...ngson.cn,
netdev@...r.kernel.org, chris.chenfeiyang@...il.com, siyanteng01@...il.com
Subject: Re: [PATCH net-next v11 6/6] net: stmmac: dwmac-loongson: Add
Loongson GNET support
Hi Serge,
在 2024/4/18 22:01, Serge Semin 写道:
> Once again. Please replace this with simpler solution:
>
> static int loongson_dwmac_config_multi_msi(struct pci_dev *pdev,
> + struct plat_stmmacenet_data *plat,
> + struct stmmac_resources *res)
> +{
> + int i, ret, vecs;
> +
> + /* INT NAME | MAC | CH7 rx | CH7 tx | ... | CH0 rx | CH0 tx |
> + * --------- ----- -------- -------- ... -------- --------
> + * IRQ NUM | 0 | 1 | 2 | ... | 15 | 16 |
> + */
> + vecs = plat->rx_queues_to_use + plat->tx_queues_to_use + 1;
Referring to the msi spec, the number of vectors should be the power of
two, so let's:
vecs = roundup_pow_of_two(plat->rx_queues_to_use +
plat->tx_queues_to_use + 1);
or
vecs = roundup_pow_of_two(CHANNEL_NUM * 2 + 1);
? :)
Thanks,
Yanteng
Powered by blists - more mailing lists