* [TG3]: Fix performance regression on 5705.
@ 2007-10-12 19:39 Michael Chan
2007-10-15 9:14 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Michael Chan @ 2007-10-12 19:39 UTC (permalink / raw)
To: davem; +Cc: netdev, mcarlson, andy
[TG3]: Fix performance regression on 5705.
A performance regression was introduced by the following commit:
commit ee6a99b539a50b4e9398938a0a6d37f8bf911550
Author: Michael Chan <mchan@broadcom.com>
Date: Wed Jul 18 21:49:10 2007 -0700
[TG3]: Fix msi issue with kexec/kdump.
In making that change, the PCI latency timer and cache line size
registers were not restored after chip reset. On the 5705, the
latency timer gets reset to 0 during chip reset and this causes
very poor performance.
Update version to 3.84.
Signed-off-by: Michael Chan <mchan@broadcom.com>
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c
index 30b1cca..b9e1dc6 100644
--- a/drivers/net/tg3.c
+++ b/drivers/net/tg3.c
@@ -64,8 +64,8 @@
#define DRV_MODULE_NAME "tg3"
#define PFX DRV_MODULE_NAME ": "
-#define DRV_MODULE_VERSION "3.83"
-#define DRV_MODULE_RELDATE "October 10, 2007"
+#define DRV_MODULE_VERSION "3.84"
+#define DRV_MODULE_RELDATE "October 12, 2007"
#define TG3_DEF_MAC_MODE 0
#define TG3_DEF_RX_MODE 0
@@ -5056,6 +5056,12 @@ static void tg3_restore_pci_state(struct tg3 *tp)
pci_write_config_dword(tp->pdev, TG3PCI_COMMAND, tp->pci_cmd);
+ if (!(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
+ pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
+ tp->pci_cacheline_sz);
+ pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
+ tp->pci_lat_timer);
+ }
/* Make sure PCI-X relaxed ordering bit is clear. */
if (tp->pcix_cap) {
u16 pcix_cmd;
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [TG3]: Fix performance regression on 5705.
2007-10-12 19:39 [TG3]: Fix performance regression on 5705 Michael Chan
@ 2007-10-15 9:14 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2007-10-15 9:14 UTC (permalink / raw)
To: mchan; +Cc: netdev, mcarlson, andy
From: "Michael Chan" <mchan@broadcom.com>
Date: Fri, 12 Oct 2007 12:39:07 -0700
> [TG3]: Fix performance regression on 5705.
>
> A performance regression was introduced by the following commit:
>
> commit ee6a99b539a50b4e9398938a0a6d37f8bf911550
> Author: Michael Chan <mchan@broadcom.com>
> Date: Wed Jul 18 21:49:10 2007 -0700
>
> [TG3]: Fix msi issue with kexec/kdump.
>
> In making that change, the PCI latency timer and cache line size
> registers were not restored after chip reset. On the 5705, the
> latency timer gets reset to 0 during chip reset and this causes
> very poor performance.
>
> Update version to 3.84.
>
> Signed-off-by: Michael Chan <mchan@broadcom.com>
Applied, thanks Michael.
This might be what was causing the 5714 performance problems I was
seeing on one of my systems, I'll go check that out when I get a
chance.
Thanks again!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-10-15 9:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-12 19:39 [TG3]: Fix performance regression on 5705 Michael Chan
2007-10-15 9:14 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).