mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-06 17:35:20 +02:00
Revert "net: libwx: fix alloc msix vectors failed"
This reverts commit69197dfc64
. commit937d46ecc5
("net: wangxun: add ethtool_ops for channel number") changed NIC misc irq from most significant bit to least significant bit, the former condition is not required to apply this patch, because we only need to set irq affinity for NIC queue irq vectors. this patch is required after commit937d46ecc5
("net: wangxun: add ethtool_ops for channel number") was applied, so this is only relevant to 6.6.y branch. Signed-off-by: Duanqiang Wen <duanqiangwen@net-swift.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0851b1ec65
commit
79fec62d0f
|
@ -1585,7 +1585,7 @@ static void wx_set_num_queues(struct wx *wx)
|
||||||
*/
|
*/
|
||||||
static int wx_acquire_msix_vectors(struct wx *wx)
|
static int wx_acquire_msix_vectors(struct wx *wx)
|
||||||
{
|
{
|
||||||
struct irq_affinity affd = { .pre_vectors = 1 };
|
struct irq_affinity affd = {0, };
|
||||||
int nvecs, i;
|
int nvecs, i;
|
||||||
|
|
||||||
nvecs = min_t(int, num_online_cpus(), wx->mac.max_msix_vectors);
|
nvecs = min_t(int, num_online_cpus(), wx->mac.max_msix_vectors);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user