I want to increase the tx queue on ubuntu.
pidda@pidda:~$ ls /sys/class/net/wlp1s0/queues/
rx-0 tx-0
pidda@pidda:~$ sudo ip link set wlp1s0 numtxqueues 7
pidda@pidda:~$ echo $?
0
pidda@pidda:~$ ls /sys/class/net/wlp1s0/queues/
rx-0 tx-0
pidda@pidda:~$
Though the command execution is successfully, the tx queue is still one. It would be very helpful to point me to some doc which explains on tx queue. Is this a hardware limit? or is there any way to increase it?