netdev
[Top] [All Lists]

RE: e100-3.0.0_dev8 "Minneapolis Moline" release

To: "Jason Lunz" <lunz@xxxxxxxxxxxxxxxxxx>, <netdev@xxxxxxxxxxx>
Subject: RE: e100-3.0.0_dev8 "Minneapolis Moline" release
From: "Feldman, Scott" <scott.feldman@xxxxxxxxx>
Date: Wed, 18 Jun 2003 09:52:15 -0700
Sender: netdev-bounce@xxxxxxxxxxx
Thread-index: AcM1tE358eiRVYN0TjCMoVriszGE4gABS+0g
Thread-topic: e100-3.0.0_dev8 "Minneapolis Moline" release
> It's running on my workstation with no problems. passes the 
> "ping -qf" load test.

Do you have any other tests you can through at it?

> ethtool output seems normal, but what's with the rx-mini and 
> rx-jumbo max settings in the -g output?

Good catch.  Needs this:

@@ -1848,8 +1848,12 @@ static int e100_ethtool(struct net_devic
        case ETHTOOL_GRINGPARAM:
                ecmd->ring.rx_max_pending = rfds->max;
                ecmd->ring.tx_max_pending = cbs->max;
+               ecmd->ring.rx_mini_max_pending = 0;
+               ecmd->ring.rx_jumbo_max_pending = 0;
                ecmd->ring.rx_pending = rfds->count;
                ecmd->ring.tx_pending = cbs->count;
+               ecmd->ring.rx_mini_pending = 0;
+               ecmd->ring.rx_jumbo_pending = 0;
                if(copy_to_user(useraddr, ecmd, sizeof(ecmd->ring)))
                        err = -EFAULT;
                break;

-scott


<Prev in Thread] Current Thread [Next in Thread>