Re: Maximum number of NICs for Linux.

2010-09-28 Thread byrdca
Well thanks for the pointers to the code and all the other information. The point is academic as I don't expect that the person will require enough NICs to seriously encounter any boundary conditions. Thanks. On Sat, Sep 25, 2010 at 5:49 AM, Tom Horsley wrote: > On Sat, 25 Sep 2010 11:18:53 +02

Re: Maximum number of NICs for Linux.

2010-09-25 Thread Tom Horsley
On Sat, 25 Sep 2010 11:18:53 +0200 Roberto Ragusa wrote: > Forgetting for a moment about virtual devices (including tun, ppp, ...), > you now got me busy trying to imagine hardware with 32000 ethernet jacks. I think in practice it breaks down before that. I seem to recall at work the OS guys were

Re: Maximum number of NICs for Linux.

2010-09-25 Thread Roberto Ragusa
Gilboa Davara wrote: > Looking at the code (especially, register_net_dev) it seems that there > are two possible limits: > 1. Ethernet device name must not exceed 16 bytes. > 2. Total number of network devices must not exceed 32768. > (const int max_netdevices = 8*PAGE_SIZE in __dev_alloc_name)

Re: Maximum number of NICs for Linux.

2010-09-24 Thread Gilboa Davara
On Fri, 2010-09-24 at 15:02 -0700, byr...@gmail.com wrote: > Today I was asked about the maximum number of NICs supported by the > Linux kernel. My initial response was "probably more than you need". > Its been bothering me that I didn't know where to find the answer. I > looked in include/linux/

Re: Maximum number of NICs for Linux.

2010-09-24 Thread Patrick Lists
On 09/25/2010 12:02 AM, byr...@gmail.com wrote: > Today I was asked about the maximum number of NICs supported by the > Linux kernel. My initial response was "probably more than you need". > Its been bothering me that I didn't know where to find the answer. I > looked in include/linux/limits.h, I

Re: Maximum number of NICs for Linux.

2010-09-24 Thread JD
On 09/24/2010 03:02 PM, byr...@gmail.com wrote: > Today I was asked about the maximum number of NICs supported by the > Linux kernel. My initial response was "probably more than you need". > Its been bothering me that I didn't know where to find the answer. I > looked in include/linux/limits.h,

Maximum number of NICs for Linux.

2010-09-24 Thread byr...@gmail.com
Today I was asked about the maximum number of NICs supported by the Linux kernel. My initial response was "probably more than you need". Its been bothering me that I didn't know where to find the answer. I looked in include/linux/limits.h, I didn't expect to find it but that was my first thought.