Re: e1000 speed/duplex error

2006-08-03 Thread a1
Hi, Auke. Auke Kok wrote: AK> Don't you mean this? : AK> + hw->autoneg_advertised = ecmd->advertising | AK> +ADVERTISED_Autoneg | AK> +ADVERTISED_TP; AK> and we'd also have to do

Re: e1000 speed/duplex error

2006-08-02 Thread Auke Kok
a1 wrote: Hi, Auke. Auke Kok wrote: AK> Here's that part of the driver documentation: AK> $ modprobe e1000 AutoNeg=0x08 AK> e1000: :00:00.0: e1000_validate_option: AutoNeg advertising 100/FD AK> 99 /* Auto-negotiation Advertisement Override AK> 100 * AK> 101 * Valid Range: 0x01-0x0F,

Re: e1000 speed/duplex error

2006-08-02 Thread Auke Kok
a1 wrote: JK> I agree. Although ethtool does not have that functionality as of yet. JK> Feel free to provide a patch to the ethtool maintainer (Jeff Garzik) JK> if you would like. I will put it on my plate of things to do, but I JK> will admit that it is near the bottom of the list of items to

Re: e1000 speed/duplex error

2006-08-02 Thread a1
Hi, Jeff. JK> On 8/2/06, a1 <[EMAIL PROTECTED]> wrote: >> Hi, Auke. >> >> Auke Kok wrote: >> AK> Here's that part of the driver documentation: >> >> AK> $ modprobe e1000 AutoNeg=0x08 >> AK> e1000: :00:00.0: e1000_validate_option: AutoNeg advertising 100/FD >> >> >> AK> 99 /* Auto-negotiation

Re: e1000 speed/duplex error

2006-08-02 Thread Jeff Kirsher
On 8/2/06, a1 <[EMAIL PROTECTED]> wrote: Hi, Auke. Auke Kok wrote: AK> Here's that part of the driver documentation: AK> $ modprobe e1000 AutoNeg=0x08 AK> e1000: :00:00.0: e1000_validate_option: AutoNeg advertising 100/FD AK> 99 /* Auto-negotiation Advertisement Override AK> 100 * AK>

Re: e1000 speed/duplex error

2006-08-02 Thread a1
Hi, Auke. Auke Kok wrote: AK> Here's that part of the driver documentation: AK> $ modprobe e1000 AutoNeg=0x08 AK> e1000: :00:00.0: e1000_validate_option: AutoNeg advertising 100/FD AK> 99 /* Auto-negotiation Advertisement Override AK> 100 * AK> 101 * Valid Range: 0x01-0x0F, 0x20-0x2F (c

Re: e1000 speed/duplex error

2006-08-01 Thread Jeff Kirsher
On 8/1/06, Auke Kok <[EMAIL PROTECTED]> wrote: Jeff Kirsher wrote: > On 8/1/06, a1 <[EMAIL PROTECTED]> wrote: >> Hi, Jeff. >> >> >> JK> OPTION 2: Turn auto-negotiate on the e1000 card and tell it to only >> JK> advertise 100 Full Duplex. This will allow negotiation between the >> JK> two lnk par

Re: e1000 speed/duplex error

2006-08-01 Thread Rick Jones
I thought the common behavior is that if one side force any particular parameter, other side should "sense" that and go to that mode too. Nope. That is a common misconception and perhaps the source of many duplex mismatch problems today. Here is some boilerplate I bring-out from time to time

Re: e1000 speed/duplex error

2006-08-01 Thread Auke Kok
Jeff Kirsher wrote: On 8/1/06, a1 <[EMAIL PROTECTED]> wrote: Hi, Jeff. JK> OPTION 2: Turn auto-negotiate on the e1000 card and tell it to only JK> advertise 100 Full Duplex. This will allow negotiation between the JK> two lnk partners and the e1000 will advertise that it is only able to JK> d

Re: Re[4]: e1000 speed/duplex error

2006-08-01 Thread Jeff Kirsher
On 8/1/06, a1 <[EMAIL PROTECTED]> wrote: Hi, Jeff. JK> OPTION 2: Turn auto-negotiate on the e1000 card and tell it to only JK> advertise 100 Full Duplex. This will allow negotiation between the JK> two lnk partners and the e1000 will advertise that it is only able to JK> do 100 Full duplex. I

Re[4]: e1000 speed/duplex error

2006-08-01 Thread a1
Hi, Jeff. JK> OPTION 2: Turn auto-negotiate on the e1000 card and tell it to only JK> advertise 100 Full Duplex. This will allow negotiation between the JK> two lnk partners and the e1000 will advertise that it is only able to JK> do 100 Full duplex. Is there any way i could do this with ethtoo

Re: Re[2]: e1000 speed/duplex error

2006-08-01 Thread Jamal Hadi Salim
On Tue, 2006-01-08 at 16:03 +0400, a1 wrote: > I thought the common behavior is that if one side force any particular > parameter, other side should "sense" that and go to that mode too. > You _cannot_ depend on that behavior at all. IOW, if one side is not forced the other side's setting is und

Re: e1000 speed/duplex error

2006-08-01 Thread Andy Gospodarek
On Tue, Aug 01, 2006 at 04:03:28PM +0400, a1 wrote: > He, Jeff. > > Thank for quick reply. > > JK> On 8/1/06, a1 <[EMAIL PROTECTED]> wrote: > >> I'm trying to set my nic to force 100Mb/FD, but I'm constantly getting > >> 100/HD on > >> other side of the link. > >> > >> The command is: > >> ethto

Re[2]: e1000 speed/duplex error

2006-08-01 Thread a1
He, Jeff. Thank for quick reply. JK> On 8/1/06, a1 <[EMAIL PROTECTED]> wrote: >> I'm trying to set my nic to force 100Mb/FD, but I'm constantly getting >> 100/HD on >> other side of the link. >> >> The command is: >> ethtool -s eth0 speed 100 duplex full autoneg off >> >> e1000 driver version 7.

Re: e1000 speed/duplex error

2006-08-01 Thread Jeff Kirsher
On 8/1/06, a1 <[EMAIL PROTECTED]> wrote: I'm trying to set my nic to force 100Mb/FD, but I'm constantly getting 100/HD on other side of the link. The command is: ethtool -s eth0 speed 100 duplex full autoneg off e1000 driver version 7.1.9 (latest) downloaded from sourceforge. What are you li

e1000 speed/duplex error

2006-08-01 Thread a1
I'm trying to set my nic to force 100Mb/FD, but I'm constantly getting 100/HD on other side of the link. The command is: ethtool -s eth0 speed 100 duplex full autoneg off e1000 driver version 7.1.9 (latest) downloaded from sourceforge. Are there any problems? -- alkot