Date: Wed, 18 Oct 2006 18:15:14 +0100 From: Jason Thomson <jason.thomson@mintel.com> To: Scott Long <scottl@samsco.org> Cc: freebsd-stable@freebsd.org, Conrad Burger <conrad.burger@gmail.com> Subject: Re: When will the new BCE driver in HEAD be incorporated into RELENG_6? Message-ID: <45366122.6090704@mintel.com> In-Reply-To: <45364782.8090209@samsco.org> References: <d0c4d1610610180258l1fb94e96m349022fcb2d0330c@mail.gmail.com> <45364782.8090209@samsco.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Scott Long wrote:
> Conrad Burger wrote:
>
>> Hi
>>
>> It looks like there is a "new" version of the bce driver in HEAD.
>> When will it be incorporated into Releng_6?
>
>
> It will be merged when someone, preferably 2-3 people, tell me that
> the changes in HEAD work for them. So far, no one has.
>
> Scott
> _______________________________________________
Using the driver from HEAD* in the latest RELENG_6 didn't fix our
problems.
We could still trigger the Watchdog timeout when copying a local file to
an NFS mounted filesystem (UDP mount, GigE speeds).
It was also possible to trigger this bug with multiple simultaneous TCP
streams, but that took a little longer.
Copying a local file to an NFS/UDP filesystem would trigger the bug in a
few seconds.
If there's anything we can do to help debug this, please let us know.
* With the following patch applied:
--- /usr/src/sys/dev/bce/if_bce.c.orig Wed Oct 18 17:19:02 2006
+++ /usr/src/sys/dev/bce/if_bce.c Wed Oct 18 17:39:11 2006
@@ -4521,6 +4521,7 @@
bus_dmamap_t map;
struct tx_bd *txbd = NULL;
struct mbuf *m0;
+ struct m_tag *mtag;
u32 vlan_tag_flags = 0;
u32 prod_bseq;
u16 chain_prod, prod;
@@ -4540,9 +4541,10 @@
}
/* Transfer any VLAN tags to the bd. */
- if (m0->m_flags & M_VLANTAG)
+ mtag = VLAN_OUTPUT_TAG(sc->bce_ifp, m0);
+ if (mtag != NULL)
vlan_tag_flags |= (TX_BD_FLAGS_VLAN_TAG |
- (m0->m_pkthdr.ether_vtag << 16));
+ (VLAN_TAG_VALUE(mtag) << 16));
/* Map the mbuf into DMAable memory. */
prod = sc->tx_prod;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?45366122.6090704>
