[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20080705154148.43f6e2a7@osprey.hogchain.net>
Date: Sat, 5 Jul 2008 15:41:48 -0500
From: Jay Cliburn <jacliburn@...lsouth.net>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: netdev@...r.kernel.org, bugme-daemon@...zilla.kernel.org,
scurippio@...il.com
Subject: Re: [Bugme-new] [Bug 11036] New: atl1 tx busy and hw csum wrong
On Sat, 5 Jul 2008 12:23:48 -0700
Andrew Morton <akpm@...ux-foundation.org> wrote:
>
> (switched to email. Please respond via emailed reply-to-all, not via
> the bugzilla web interface).
>
> On Sat, 5 Jul 2008 03:54:15 -0700 (PDT)
> bugme-daemon@...zilla.kernel.org wrote:
>
> > http://bugzilla.kernel.org/show_bug.cgi?id=11036
> >
> > Summary: atl1 tx busy and hw csum wrong
> > Product: Drivers
> > Version: 2.5
> > KernelVersion: 2.6.24-1-amd64
> > Platform: All
> > OS/Version: Linux
> > Tree: Mainline
> > Status: NEW
> > Severity: low
> > Priority: P1
> > Component: Network
> > AssignedTo: jgarzik@...ox.com
> > ReportedBy: scurippio@...il.com
> >
> >
> > Latest working kernel version:
> > Earliest failing kernel version:
> > Distribution: Debian amd64 lenny
> > Hardware Environment: Ethernet controller: Attansic Technology
> > Corp. L1 Gigabit Ethernet Adapter (rev b0)
> > Software Environment: atl1 module
> > Problem Description:
> > dmesg get flooded on irregular intervals by
> > atl1 0000:01:00.0: tx busy
This is a KERN_DEBUG advisory message indicating you ran out of transmit
descriptors. This can happen under heavy load. In current mainline
this message is filtered by netif_msg_tx_queued, and by default the
message will not be issued; it can be turned on using ethtool -s ethX
msglvl <value>.
> > and
> > atl1 0000:01:00.0: hw csum wrong, pkt_flag:1600, err_flag:80
This is also a KERN_DEBUG message, and it indicates that a received
packet was too short.
pkt_flag:1600 - ipv4, tcp, packet with error
err_flag:80 - runt packet
In current mainline this message is filtered by netif_msg_rx_err, so it
too can be controlled with ethtool (and will also be off by default).
To get rid of the messages in your 2.6.24 kernel, you might try reducing
the loglevel to exclude KERN_DEBUG messages.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists