8139_tx_interrupt - Tx time
From: Adam Flizikowski (adam_fli_at_poczta.onet.pl)
Date: 10/10/03
- Previous message: Willy Tarreau: "Re: 2.4.23-pre7 build problems"
- Next in thread: Zwane Mwaikambo: "Re: 8139_tx_interrupt - Tx time"
- Maybe reply: Zwane Mwaikambo: "Re: 8139_tx_interrupt - Tx time"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
To: <linux-kernel@vger.kernel.org> Date: Fri, 10 Oct 2003 14:52:13 +0200
Hi,
I am trying to find out how long it takes to push packet off the NIC in
8139_tx_interrupt(){} (kernel 2.4.20)
but i don't know how to identify packet in this loop - i know that "entry"
stands for the packet but in the loop underneath:
/* code snippet for 8139_tx_interrupt(){}*/
1726 while (tx_left > 0) {
1727 int entry = dirty_tx % NUM_TX_DESC;
1728 int txstatus;
...
1762
1763 dirty_tx++;
1764 tx_left--; // <- is single packet sent just
here??????
1765 }
what "tx_left" and "dirty_tx" variables stand for? Is single iteration
through the loop (lines 1726-1765) related to SINGLE packet transmission?
I wanted to put some probes inside tx_interrupt but not sure where it should
start/stop measuring to show single packet transmission time.
regards
adam
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- Previous message: Willy Tarreau: "Re: 2.4.23-pre7 build problems"
- Next in thread: Zwane Mwaikambo: "Re: 8139_tx_interrupt - Tx time"
- Maybe reply: Zwane Mwaikambo: "Re: 8139_tx_interrupt - Tx time"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|
|