which io-net executes init() function ?

Hi,
If two or more io-net is running, which io-net executes init() function when
I do ‘mount -T io-net mydriver.so’ ?

Thanks in advance,
Hoon

Hoon Jung <hjung@3ic.co.kr> wrote:

Hi,
If two or more io-net is running, which io-net executes init() function when
I do ‘mount -T io-net mydriver.so’ ?

Currently the one that is run last.

chris

cdm@qnx.com > “The faster I go, the behinder I get.”

Chris McKillop – Lewis Carroll –
Software Engineer, QSSL
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

The one that gets the mount request first which is the last
one run. You can see the order the mount request is delivered by:

/home/seanb>ls -S /proc/mount/ | grep 11
0,57319454,1,0,11
0,44470313,1,1,11
0,6,7,0,11

In the above, 11 is FTYPE_MOUNT, second filed is the pid.

-seanb

Hoon Jung <hjung@3ic.co.kr> wrote:
: Hi,
: If two or more io-net is running, which io-net executes init() function when
: I do ‘mount -T io-net mydriver.so’ ?

: Thanks in advance,
: Hoon