linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* 2.4.21: proc-fs and allocating many new files (PROC_NDYNAMIC)
@ 2003-08-13 23:18 Ben Greear
  0 siblings, 0 replies; only message in thread
From: Ben Greear @ 2003-08-13 23:18 UTC (permalink / raw)
  To: linux-kernel

I am working on a mac-vlan module, and would like to have a proc entry for each
vlan device.  My code fails after creating 124 vlans (which will create ~240
proc entries).

What is worse, after doing this, the 802.1q module will not even load because
it can't allocate it's small number of proc entries.  (I will fix this shortly
and have it ignore the error and continue, since it uses ioctls as well.)

After poking around in the proc-fs code (please, next time someone re-writes this,
give us an int* err_code return value so that we can know why things fail!!!)
I believe I must be hitting the failure due to not being able to find a free entry
in the proc_alloc_map.  It seems that a max of PROC_NDYNAMIC proc entries can be
created.  This value is #defined to 4096 in 2.4.21....

So, several questions:

Can I arbitrarily make this bigger...say (4096*4)?  Any trade-offs other than memory?

Is there a better way to have many proc file entries?  I can even live
  with read-only, as I can do the config through ioctls.

Thanks,
Ben

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-08-13 23:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-08-13 23:18 2.4.21: proc-fs and allocating many new files (PROC_NDYNAMIC) Ben Greear

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).