Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

e1000: update README for e1000

Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>

authored by

Auke Kok and committed by
Jeff Garzik
de3edab4 25006ac6

+244 -163
+244 -163
Documentation/networking/e1000.txt
··· 1 1 Linux* Base Driver for the Intel(R) PRO/1000 Family of Adapters 2 2 =============================================================== 3 3 4 - November 15, 2005 4 + September 26, 2006 5 5 6 6 7 7 Contents ··· 9 9 10 10 - In This Release 11 11 - Identifying Your Adapter 12 + - Building and Installation 12 13 - Command Line Parameters 13 14 - Speed and Duplex Configuration 14 15 - Additional Configurations ··· 42 41 Instructions on updating ethtool can be found in the section "Additional 43 42 Configurations" later in this document. 44 43 44 + NOTE: The Intel(R) 82562v 10/100 Network Connection only provides 10/100 45 + support. 46 + 45 47 46 48 Identifying Your Adapter 47 49 ======================== ··· 55 51 http://support.intel.com/support/network/adapter/pro100/21397.htm 56 52 57 53 For the latest Intel network drivers for Linux, refer to the following 58 - website. In the search field, enter your adapter name or type, or use the 54 + website. In the search field, enter your adapter name or type, or use the 59 55 networking link on the left to search for your adapter: 60 56 61 57 http://downloadfinder.intel.com/scripts-df/support_intel.asp 62 58 63 59 64 - Command Line Parameters ======================= 60 + Command Line Parameters 61 + ======================= 65 62 66 63 If the driver is built as a module, the following optional parameters 67 - are used by entering them on the command line with the modprobe or insmod 68 - command using this syntax: 64 + are used by entering them on the command line with the modprobe command 65 + using this syntax: 69 66 70 67 modprobe e1000 [<option>=<VAL1>,<VAL2>,...] 71 68 72 - insmod e1000 [<option>=<VAL1>,<VAL2>,...] 73 - 74 69 For example, with two PRO/1000 PCI adapters, entering: 75 70 76 - insmod e1000 TxDescriptors=80,128 71 + modprobe e1000 TxDescriptors=80,128 77 72 78 - loads the e1000 driver with 80 TX descriptors for the first adapter and 128 79 - TX descriptors for the second adapter. 73 + loads the e1000 driver with 80 TX descriptors for the first adapter and 74 + 128 TX descriptors for the second adapter. 80 75 81 76 The default value for each parameter is generally the recommended setting, 82 77 unless otherwise noted. ··· 90 87 http://www.intel.com/design/network/applnots/ap450.htm 91 88 92 89 A descriptor describes a data buffer and attributes related to 93 - the data buffer. This information is accessed by the hardware. 90 + the data buffer. This information is accessed by the hardware. 94 91 95 92 96 93 AutoNeg ··· 99 96 Valid Range: 0x01-0x0F, 0x20-0x2F 100 97 Default Value: 0x2F 101 98 102 - This parameter is a bit mask that specifies which speed and duplex 103 - settings the board advertises. When this parameter is used, the Speed 104 - and Duplex parameters must not be specified. 99 + This parameter is a bit-mask that specifies the speed and duplex settings 100 + advertised by the adapter. When this parameter is used, the Speed and 101 + Duplex parameters must not be specified. 105 102 106 103 NOTE: Refer to the Speed and Duplex section of this readme for more 107 104 information on the AutoNeg parameter. ··· 113 110 Valid Range: 0-2 (0=auto-negotiate, 1=half, 2=full) 114 111 Default Value: 0 115 112 116 - Defines the direction in which data is allowed to flow. Can be either 117 - one or two-directional. If both Duplex and the link partner are set to 118 - auto-negotiate, the board auto-detects the correct duplex. If the link 119 - partner is forced (either full or half), Duplex defaults to half-duplex. 113 + This defines the direction in which data is allowed to flow. Can be 114 + either one or two-directional. If both Duplex and the link partner are 115 + set to auto-negotiate, the board auto-detects the correct duplex. If the 116 + link partner is forced (either full or half), Duplex defaults to half- 117 + duplex. 120 118 121 119 122 120 FlowControl 123 - ---------- 121 + ----------- 124 122 Valid Range: 0-3 (0=none, 1=Rx only, 2=Tx only, 3=Rx&Tx) 125 123 Default Value: Reads flow control settings from the EEPROM 126 124 ··· 131 127 132 128 InterruptThrottleRate 133 129 --------------------- 134 - (not supported on Intel 82542, 82543 or 82544-based adapters) 135 - Valid Range: 100-100000 (0=off, 1=dynamic) 136 - Default Value: 8000 130 + (not supported on Intel(R) 82542, 82543 or 82544-based adapters) 131 + Valid Range: 0,1,3,100-100000 (0=off, 1=dynamic, 3=dynamic conservative) 132 + Default Value: 3 137 133 138 - This value represents the maximum number of interrupts per second the 139 - controller generates. InterruptThrottleRate is another setting used in 140 - interrupt moderation. Dynamic mode uses a heuristic algorithm to adjust 141 - InterruptThrottleRate based on the current traffic load. 134 + The driver can limit the amount of interrupts per second that the adapter 135 + will generate for incoming packets. It does this by writing a value to the 136 + adapter that is based on the maximum amount of interrupts that the adapter 137 + will generate per second. 138 + 139 + Setting InterruptThrottleRate to a value greater or equal to 100 140 + will program the adapter to send out a maximum of that many interrupts 141 + per second, even if more packets have come in. This reduces interrupt 142 + load on the system and can lower CPU utilization under heavy load, 143 + but will increase latency as packets are not processed as quickly. 144 + 145 + The default behaviour of the driver previously assumed a static 146 + InterruptThrottleRate value of 8000, providing a good fallback value for 147 + all traffic types,but lacking in small packet performance and latency. 148 + The hardware can handle many more small packets per second however, and 149 + for this reason an adaptive interrupt moderation algorithm was implemented. 150 + 151 + Since 7.3.x, the driver has two adaptive modes (setting 1 or 3) in which 152 + it dynamically adjusts the InterruptThrottleRate value based on the traffic 153 + that it receives. After determining the type of incoming traffic in the last 154 + timeframe, it will adjust the InterruptThrottleRate to an appropriate value 155 + for that traffic. 156 + 157 + The algorithm classifies the incoming traffic every interval into 158 + classes. Once the class is determined, the InterruptThrottleRate value is 159 + adjusted to suit that traffic type the best. There are three classes defined: 160 + "Bulk traffic", for large amounts of packets of normal size; "Low latency", 161 + for small amounts of traffic and/or a significant percentage of small 162 + packets; and "Lowest latency", for almost completely small packets or 163 + minimal traffic. 164 + 165 + In dynamic conservative mode, the InterruptThrottleRate value is set to 4000 166 + for traffic that falls in class "Bulk traffic". If traffic falls in the "Low 167 + latency" or "Lowest latency" class, the InterruptThrottleRate is increased 168 + stepwise to 20000. This default mode is suitable for most applications. 169 + 170 + For situations where low latency is vital such as cluster or 171 + grid computing, the algorithm can reduce latency even more when 172 + InterruptThrottleRate is set to mode 1. In this mode, which operates 173 + the same as mode 3, the InterruptThrottleRate will be increased stepwise to 174 + 70000 for traffic in class "Lowest latency". 175 + 176 + Setting InterruptThrottleRate to 0 turns off any interrupt moderation 177 + and may improve small packet latency, but is generally not suitable 178 + for bulk throughput traffic. 142 179 143 180 NOTE: InterruptThrottleRate takes precedence over the TxAbsIntDelay and 144 - RxAbsIntDelay parameters. In other words, minimizing the receive 181 + RxAbsIntDelay parameters. In other words, minimizing the receive 145 182 and/or transmit absolute delays does not force the controller to 146 183 generate more interrupts than what the Interrupt Throttle Rate 147 184 allows. 148 185 149 - CAUTION: If you are using the Intel PRO/1000 CT Network Connection 186 + CAUTION: If you are using the Intel(R) PRO/1000 CT Network Connection 150 187 (controller 82547), setting InterruptThrottleRate to a value 151 188 greater than 75,000, may hang (stop transmitting) adapters 152 - under certain network conditions. If this occurs a NETDEV 153 - WATCHDOG message is logged in the system event log. In 189 + under certain network conditions. If this occurs a NETDEV 190 + WATCHDOG message is logged in the system event log. In 154 191 addition, the controller is automatically reset, restoring 155 - the network connection. To eliminate the potential for the 192 + the network connection. To eliminate the potential for the 156 193 hang, ensure that InterruptThrottleRate is set no greater 157 194 than 75,000 and is not set to 0. 158 195 159 196 NOTE: When e1000 is loaded with default settings and multiple adapters 160 197 are in use simultaneously, the CPU utilization may increase non- 161 - linearly. In order to limit the CPU utilization without impacting 198 + linearly. In order to limit the CPU utilization without impacting 162 199 the overall throughput, we recommend that you load the driver as 163 200 follows: 164 201 165 - insmod e1000.o InterruptThrottleRate=3000,3000,3000 202 + modprobe e1000 InterruptThrottleRate=3000,3000,3000 166 203 167 204 This sets the InterruptThrottleRate to 3000 interrupts/sec for 168 - the first, second, and third instances of the driver. The range 205 + the first, second, and third instances of the driver. The range 169 206 of 2000 to 3000 interrupts per second works on a majority of 170 207 systems and is a good starting point, but the optimal value will 171 - be platform-specific. If CPU utilization is not a concern, use 208 + be platform-specific. If CPU utilization is not a concern, use 172 209 RX_POLLING (NAPI) and default driver settings. 210 + 173 211 174 212 175 213 RxDescriptors ··· 220 174 80-4096 for all other supported adapters 221 175 Default Value: 256 222 176 223 - This value specifies the number of receive descriptors allocated by the 224 - driver. Increasing this value allows the driver to buffer more incoming 225 - packets. Each descriptor is 16 bytes. A receive buffer is also 226 - allocated for each descriptor and is 2048. 177 + This value specifies the number of receive buffer descriptors allocated 178 + by the driver. Increasing this value allows the driver to buffer more 179 + incoming packets, at the expense of increased system memory utilization. 180 + 181 + Each descriptor is 16 bytes. A receive buffer is also allocated for each 182 + descriptor and can be either 2048, 4096, 8192, or 16384 bytes, depending 183 + on the MTU setting. The maximum MTU size is 16110. 184 + 185 + NOTE: MTU designates the frame size. It only needs to be set for Jumbo 186 + Frames. Depending on the available system resources, the request 187 + for a higher number of receive descriptors may be denied. In this 188 + case, use a lower number. 227 189 228 190 229 191 RxIntDelay ··· 241 187 242 188 This value delays the generation of receive interrupts in units of 1.024 243 189 microseconds. Receive interrupt reduction can improve CPU efficiency if 244 - properly tuned for specific network traffic. Increasing this value adds 190 + properly tuned for specific network traffic. Increasing this value adds 245 191 extra latency to frame reception and can end up decreasing the throughput 246 - of TCP traffic. If the system is reporting dropped receives, this value 192 + of TCP traffic. If the system is reporting dropped receives, this value 247 193 may be set too high, causing the driver to run out of available receive 248 194 descriptors. 249 195 250 196 CAUTION: When setting RxIntDelay to a value other than 0, adapters may 251 - hang (stop transmitting) under certain network conditions. If 197 + hang (stop transmitting) under certain network conditions. If 252 198 this occurs a NETDEV WATCHDOG message is logged in the system 253 - event log. In addition, the controller is automatically reset, 254 - restoring the network connection. To eliminate the potential 199 + event log. In addition, the controller is automatically reset, 200 + restoring the network connection. To eliminate the potential 255 201 for the hang ensure that RxIntDelay is set to 0. 256 202 257 203 ··· 262 208 Default Value: 128 263 209 264 210 This value, in units of 1.024 microseconds, limits the delay in which a 265 - receive interrupt is generated. Useful only if RxIntDelay is non-zero, 211 + receive interrupt is generated. Useful only if RxIntDelay is non-zero, 266 212 this value ensures that an interrupt is generated after the initial 267 213 packet is received within the set amount of time. Proper tuning, 268 214 along with RxIntDelay, may improve traffic throughput in specific network ··· 276 222 Default Value: 0 (auto-negotiate at all supported speeds) 277 223 278 224 Speed forces the line speed to the specified value in megabits per second 279 - (Mbps). If this parameter is not specified or is set to 0 and the link 225 + (Mbps). If this parameter is not specified or is set to 0 and the link 280 226 partner is set to auto-negotiate, the board will auto-detect the correct 281 - speed. Duplex should also be set when Speed is set to either 10 or 100. 227 + speed. Duplex should also be set when Speed is set to either 10 or 100. 282 228 283 229 284 230 TxDescriptors ··· 288 234 Default Value: 256 289 235 290 236 This value is the number of transmit descriptors allocated by the driver. 291 - Increasing this value allows the driver to queue more transmits. Each 237 + Increasing this value allows the driver to queue more transmits. Each 292 238 descriptor is 16 bytes. 293 239 294 240 NOTE: Depending on the available system resources, the request for a ··· 302 248 Default Value: 64 303 249 304 250 This value delays the generation of transmit interrupts in units of 305 - 1.024 microseconds. Transmit interrupt reduction can improve CPU 306 - efficiency if properly tuned for specific network traffic. If the 251 + 1.024 microseconds. Transmit interrupt reduction can improve CPU 252 + efficiency if properly tuned for specific network traffic. If the 307 253 system is reporting dropped transmits, this value may be set too high 308 254 causing the driver to run out of available transmit descriptors. 309 255 ··· 315 261 Default Value: 64 316 262 317 263 This value, in units of 1.024 microseconds, limits the delay in which a 318 - transmit interrupt is generated. Useful only if TxIntDelay is non-zero, 264 + transmit interrupt is generated. Useful only if TxIntDelay is non-zero, 319 265 this value ensures that an interrupt is generated after the initial 320 266 packet is sent on the wire within the set amount of time. Proper tuning, 321 267 along with TxIntDelay, may improve traffic throughput in specific ··· 342 288 343 289 For copper-based boards, the keywords interact as follows: 344 290 345 - The default operation is auto-negotiate. The board advertises all 291 + The default operation is auto-negotiate. The board advertises all 346 292 supported speed and duplex combinations, and it links at the highest 347 293 common speed and duplex mode IF the link partner is set to auto-negotiate. 348 294 349 295 If Speed = 1000, limited auto-negotiation is enabled and only 1000 Mbps 350 296 is advertised (The 1000BaseT spec requires auto-negotiation.) 351 297 352 - If Speed = 10 or 100, then both Speed and Duplex should be set. Auto- 353 - negotiation is disabled, and the AutoNeg parameter is ignored. Partner 298 + If Speed = 10 or 100, then both Speed and Duplex should be set. Auto- 299 + negotiation is disabled, and the AutoNeg parameter is ignored. Partner 354 300 SHOULD also be forced. 355 301 356 302 The AutoNeg parameter is used when more control is required over the ··· 358 304 speed and duplex combinations are advertised during the auto-negotiation 359 305 process. 360 306 361 - The parameter may be specified as either a decimal or hexidecimal value as 307 + The parameter may be specified as either a decimal or hexadecimal value as 362 308 determined by the bitmap below. 363 309 364 310 Bit position 7 6 5 4 3 2 1 0 ··· 391 337 392 338 Configuring the Driver on Different Distributions 393 339 ------------------------------------------------- 394 - 395 340 Configuring a network driver to load properly when the system is started 396 - is distribution dependent. Typically, the configuration process involves 341 + is distribution dependent. Typically, the configuration process involves 397 342 adding an alias line to /etc/modules.conf or /etc/modprobe.conf as well 398 - as editing other system startup scripts and/or configuration files. Many 343 + as editing other system startup scripts and/or configuration files. Many 399 344 popular Linux distributions ship with tools to make these changes for you. 400 345 To learn the proper way to configure a network device for your system, 401 - refer to your distribution documentation. If during this process you are 346 + refer to your distribution documentation. If during this process you are 402 347 asked for the driver or module name, the name for the Linux Base Driver 403 - for the Intel PRO/1000 Family of Adapters is e1000. 348 + for the Intel(R) PRO/1000 Family of Adapters is e1000. 404 349 405 350 As an example, if you install the e1000 driver for two PRO/1000 adapters 406 351 (eth0 and eth1) and set the speed and duplex to 10full and 100half, add 407 - the following to modules.conf or modprobe.conf: 352 + the following to modules.conf or or modprobe.conf: 408 353 409 354 alias eth0 e1000 410 355 alias eth1 e1000 ··· 411 358 412 359 Viewing Link Messages 413 360 --------------------- 414 - 415 361 Link messages will not be displayed to the console if the distribution is 416 - restricting system messages. In order to see network driver link messages 362 + restricting system messages. In order to see network driver link messages 417 363 on your console, set dmesg to eight by entering the following: 418 364 419 365 dmesg -n 8 ··· 421 369 422 370 Jumbo Frames 423 371 ------------ 424 - 425 - The driver supports Jumbo Frames for all adapters except 82542 and 426 - 82573-based adapters. Jumbo Frames support is enabled by changing the 427 - MTU to a value larger than the default of 1500. Use the ifconfig command 428 - to increase the MTU size. For example: 372 + Jumbo Frames support is enabled by changing the MTU to a value larger than 373 + the default of 1500. Use the ifconfig command to increase the MTU size. 374 + For example: 429 375 430 376 ifconfig eth<x> mtu 9000 up 431 377 ··· 440 390 441 391 - To enable Jumbo Frames, increase the MTU size on the interface beyond 442 392 1500. 443 - - The maximum MTU setting for Jumbo Frames is 16110. This value coincides 393 + 394 + - The maximum MTU setting for Jumbo Frames is 16110. This value coincides 444 395 with the maximum Jumbo Frames size of 16128. 396 + 445 397 - Using Jumbo Frames at 10 or 100 Mbps may result in poor performance or 446 398 loss of link. 399 + 447 400 - Some Intel gigabit adapters that support Jumbo Frames have a frame size 448 401 limit of 9238 bytes, with a corresponding MTU size limit of 9216 bytes. 449 - The adapters with this limitation are based on the Intel 82571EB and 450 - 82572EI controllers, which correspond to these product names: 451 - Intel� PRO/1000 PT Dual Port Server Adapter 452 - Intel� PRO/1000 PF Dual Port Server Adapter 453 - Intel� PRO/1000 PT Server Adapter 454 - Intel� PRO/1000 PT Desktop Adapter 455 - Intel� PRO/1000 PF Server Adapter 402 + The adapters with this limitation are based on the Intel(R) 82571EB, 403 + 82572EI, 82573L and 80003ES2LAN controller. These correspond to the 404 + following product names: 405 + Intel(R) PRO/1000 PT Server Adapter 406 + Intel(R) PRO/1000 PT Desktop Adapter 407 + Intel(R) PRO/1000 PT Network Connection 408 + Intel(R) PRO/1000 PT Dual Port Server Adapter 409 + Intel(R) PRO/1000 PT Dual Port Network Connection 410 + Intel(R) PRO/1000 PF Server Adapter 411 + Intel(R) PRO/1000 PF Network Connection 412 + Intel(R) PRO/1000 PF Dual Port Server Adapter 413 + Intel(R) PRO/1000 PB Server Connection 414 + Intel(R) PRO/1000 PL Network Connection 415 + Intel(R) PRO/1000 EB Network Connection with I/O Acceleration 416 + Intel(R) PRO/1000 EB Backplane Connection with I/O Acceleration 417 + Intel(R) PRO/1000 PT Quad Port Server Adapter 456 418 457 - - The Intel PRO/1000 PM Network Connection does not support jumbo frames. 419 + - Adapters based on the Intel(R) 82542 and 82573V/E controller do not 420 + support Jumbo Frames. These correspond to the following product names: 421 + Intel(R) PRO/1000 Gigabit Server Adapter 422 + Intel(R) PRO/1000 PM Network Connection 423 + 424 + - The following adapters do not support Jumbo Frames: 425 + Intel(R) 82562V 10/100 Network Connection 426 + Intel(R) 82566DM Gigabit Network Connection 427 + Intel(R) 82566DC Gigabit Network Connection 428 + Intel(R) 82566MM Gigabit Network Connection 429 + Intel(R) 82566MC Gigabit Network Connection 430 + Intel(R) 82562GT 10/100 Network Connection 431 + Intel(R) 82562G 10/100 Network Connection 458 432 459 433 460 434 Ethtool 461 435 ------- 462 - 463 436 The driver utilizes the ethtool interface for driver configuration and 464 437 diagnostics, as well as displaying statistical information. Ethtool 465 438 version 1.6 or later is required for this functionality. ··· 490 417 The latest release of ethtool can be found from 491 418 http://sourceforge.net/projects/gkernel. 492 419 493 - NOTE: Ethtool 1.6 only supports a limited set of ethtool options. Support 420 + NOTE: Ethtool 1.6 only supports a limited set of ethtool options. Support 494 421 for a more complete ethtool feature set can be enabled by upgrading 495 422 ethtool to ethtool-1.8.1. 496 423 497 424 Enabling Wake on LAN* (WoL) 498 425 --------------------------- 499 - 500 - WoL is configured through the Ethtool* utility. Ethtool is included with 501 - all versions of Red Hat after Red Hat 7.2. For other Linux distributions, 426 + WoL is configured through the Ethtool* utility. Ethtool is included with 427 + all versions of Red Hat after Red Hat 7.2. For other Linux distributions, 502 428 download and install Ethtool from the following website: 503 429 http://sourceforge.net/projects/gkernel. 504 430 ··· 508 436 For this driver version, in order to enable WoL, the e1000 driver must be 509 437 loaded when shutting down or rebooting the system. 510 438 439 + Wake On LAN is only supported on port A for the following devices: 440 + Intel(R) PRO/1000 PT Dual Port Network Connection 441 + Intel(R) PRO/1000 PT Dual Port Server Connection 442 + Intel(R) PRO/1000 PT Dual Port Server Adapter 443 + Intel(R) PRO/1000 PF Dual Port Server Adapter 444 + Intel(R) PRO/1000 PT Quad Port Server Adapter 445 + 511 446 NAPI 512 447 ---- 513 - 514 - NAPI (Rx polling mode) is supported in the e1000 driver. NAPI is enabled 515 - or disabled based on the configuration of the kernel. To override 448 + NAPI (Rx polling mode) is supported in the e1000 driver. NAPI is enabled 449 + or disabled based on the configuration of the kernel. To override 516 450 the default, use the following compile-time flags. 517 451 518 452 To enable NAPI, compile the driver module, passing in a configuration option: ··· 535 457 Known Issues 536 458 ============ 537 459 538 - Jumbo Frames System Requirement 539 - ------------------------------- 460 + Dropped Receive Packets on Half-duplex 10/100 Networks 461 + ------------------------------------------------------ 462 + If you have an Intel PCI Express adapter running at 10mbps or 100mbps, half- 463 + duplex, you may observe occasional dropped receive packets. There are no 464 + workarounds for this problem in this network configuration. The network must 465 + be updated to operate in full-duplex, and/or 1000mbps only. 540 466 541 - Memory allocation failures have been observed on Linux systems with 64 MB 542 - of RAM or less that are running Jumbo Frames. If you are using Jumbo 543 - Frames, your system may require more than the advertised minimum 544 - requirement of 64 MB of system memory. 467 + Jumbo Frames System Requirement 468 + ------------------------------- 469 + Memory allocation failures have been observed on Linux systems with 64 MB 470 + of RAM or less that are running Jumbo Frames. If you are using Jumbo 471 + Frames, your system may require more than the advertised minimum 472 + requirement of 64 MB of system memory. 545 473 546 - Performance Degradation with Jumbo Frames 547 - ----------------------------------------- 474 + Performance Degradation with Jumbo Frames 475 + ----------------------------------------- 476 + Degradation in throughput performance may be observed in some Jumbo frames 477 + environments. If this is observed, increasing the application's socket 478 + buffer size and/or increasing the /proc/sys/net/ipv4/tcp_*mem entry values 479 + may help. See the specific application manual and 480 + /usr/src/linux*/Documentation/ 481 + networking/ip-sysctl.txt for more details. 548 482 549 - Degradation in throughput performance may be observed in some Jumbo frames 550 - environments. If this is observed, increasing the application's socket 551 - buffer size and/or increasing the /proc/sys/net/ipv4/tcp_*mem entry values 552 - may help. See the specific application manual and 553 - /usr/src/linux*/Documentation/ 554 - networking/ip-sysctl.txt for more details. 483 + Jumbo Frames on Foundry BigIron 8000 switch 484 + ------------------------------------------- 485 + There is a known issue using Jumbo frames when connected to a Foundry 486 + BigIron 8000 switch. This is a 3rd party limitation. If you experience 487 + loss of packets, lower the MTU size. 555 488 556 - Jumbo frames on Foundry BigIron 8000 switch 557 - ------------------------------------------- 558 - There is a known issue using Jumbo frames when connected to a Foundry 559 - BigIron 8000 switch. This is a 3rd party limitation. If you experience 560 - loss of packets, lower the MTU size. 489 + Allocating Rx Buffers when Using Jumbo Frames 490 + --------------------------------------------- 491 + Allocating Rx buffers when using Jumbo Frames on 2.6.x kernels may fail if 492 + the available memory is heavily fragmented. This issue may be seen with PCI-X 493 + adapters or with packet split disabled. This can be reduced or eliminated 494 + by changing the amount of available memory for receive buffer allocation, by 495 + increasing /proc/sys/vm/min_free_kbytes. 561 496 562 - Multiple Interfaces on Same Ethernet Broadcast Network 563 - ------------------------------------------------------ 497 + Multiple Interfaces on Same Ethernet Broadcast Network 498 + ------------------------------------------------------ 499 + Due to the default ARP behavior on Linux, it is not possible to have 500 + one system on two IP networks in the same Ethernet broadcast domain 501 + (non-partitioned switch) behave as expected. All Ethernet interfaces 502 + will respond to IP traffic for any IP address assigned to the system. 503 + This results in unbalanced receive traffic. 564 504 565 - Due to the default ARP behavior on Linux, it is not possible to have 566 - one system on two IP networks in the same Ethernet broadcast domain 567 - (non-partitioned switch) behave as expected. All Ethernet interfaces 568 - will respond to IP traffic for any IP address assigned to the system. 569 - This results in unbalanced receive traffic. 505 + If you have multiple interfaces in a server, either turn on ARP 506 + filtering by entering: 570 507 571 - If you have multiple interfaces in a server, either turn on ARP 572 - filtering by entering: 508 + echo 1 > /proc/sys/net/ipv4/conf/all/arp_filter 509 + (this only works if your kernel's version is higher than 2.4.5), 573 510 574 - echo 1 > /proc/sys/net/ipv4/conf/all/arp_filter 575 - (this only works if your kernel's version is higher than 2.4.5), 511 + NOTE: This setting is not saved across reboots. The configuration 512 + change can be made permanent by adding the line: 513 + net.ipv4.conf.all.arp_filter = 1 514 + to the file /etc/sysctl.conf 576 515 577 - NOTE: This setting is not saved across reboots. The configuration 578 - change can be made permanent by adding the line: 579 - net.ipv4.conf.all.arp_filter = 1 580 - to the file /etc/sysctl.conf 516 + or, 581 517 582 - or, 518 + install the interfaces in separate broadcast domains (either in 519 + different switches or in a switch partitioned to VLANs). 583 520 584 - install the interfaces in separate broadcast domains (either in 585 - different switches or in a switch partitioned to VLANs). 521 + 82541/82547 can't link or are slow to link with some link partners 522 + ----------------------------------------------------------------- 523 + There is a known compatibility issue with 82541/82547 and some 524 + low-end switches where the link will not be established, or will 525 + be slow to establish. In particular, these switches are known to 526 + be incompatible with 82541/82547: 586 527 587 - 82541/82547 can't link or are slow to link with some link partners 588 - ----------------------------------------------------------------- 528 + Planex FXG-08TE 529 + I-O Data ETG-SH8 589 530 590 - There is a known compatibility issue with 82541/82547 and some 591 - low-end switches where the link will not be established, or will 592 - be slow to establish. In particular, these switches are known to 593 - be incompatible with 82541/82547: 531 + To workaround this issue, the driver can be compiled with an override 532 + of the PHY's master/slave setting. Forcing master or forcing slave 533 + mode will improve time-to-link. 594 534 595 - Planex FXG-08TE 596 - I-O Data ETG-SH8 535 + # make CFLAGS_EXTRA=-DE1000_MASTER_SLAVE=<n> 597 536 598 - To workaround this issue, the driver can be compiled with an override 599 - of the PHY's master/slave setting. Forcing master or forcing slave 600 - mode will improve time-to-link. 537 + Where <n> is: 601 538 602 - # make EXTRA_CFLAGS=-DE1000_MASTER_SLAVE=<n> 539 + 0 = Hardware default 540 + 1 = Master mode 541 + 2 = Slave mode 542 + 3 = Auto master/slave 603 543 604 - Where <n> is: 544 + Disable rx flow control with ethtool 545 + ------------------------------------ 546 + In order to disable receive flow control using ethtool, you must turn 547 + off auto-negotiation on the same command line. 605 548 606 - 0 = Hardware default 607 - 1 = Master mode 608 - 2 = Slave mode 609 - 3 = Auto master/slave 549 + For example: 610 550 611 - Disable rx flow control with ethtool 612 - ------------------------------------ 551 + ethtool -A eth? autoneg off rx off 613 552 614 - In order to disable receive flow control using ethtool, you must turn 615 - off auto-negotiation on the same command line. 616 - 617 - For example: 618 - 619 - ethtool -A eth? autoneg off rx off 553 + Unplugging network cable while ethtool -p is running 554 + ---------------------------------------------------- 555 + In kernel versions 2.5.50 and later (including 2.6 kernel), unplugging 556 + the network cable while ethtool -p is running will cause the system to 557 + become unresponsive to keyboard commands, except for control-alt-delete. 558 + Restarting the system appears to be the only remedy. 620 559 621 560 622 561 Support ··· 643 548 644 549 http://support.intel.com 645 550 646 - or the Intel Wired Networking project hosted by Sourceforge at: 551 + or the Intel Wired Networking project hosted by Sourceforge at: 647 552 648 553 http://sourceforge.net/projects/e1000 649 554 650 555 If an issue is identified with the released source code on the supported 651 556 kernel with a supported adapter, email the specific information related 652 - to the issue to e1000-devel@lists.sourceforge.net 653 - 654 - 655 - License 656 - ======= 657 - 658 - This software program is released under the terms of a license agreement 659 - between you ('Licensee') and Intel. Do not use or load this software or any 660 - associated materials (collectively, the 'Software') until you have carefully 661 - read the full terms and conditions of the file COPYING located in this software 662 - package. By loading or using the Software, you agree to the terms of this 663 - Agreement. If you do not agree with the terms of this Agreement, do not 664 - install or use the Software. 665 - 666 - * Other names and brands may be claimed as the property of others. 557 + to the issue to e1000-devel@lists.sf.net