opening a vfs driver
I am writing a vfs module (for sol10) which has a userspace file server component. The file server needs to be able to pass messages to the vfs driver. Is the best way to accomplish this by using mod_driverops modlinkage, then registering my filesystem in the _init() method? WIll I lose the mount options handing by not specifying mod_fsops as the modlinkage?
Again, the goal is to have the driver appear in /devices/pseudo and to be able to call open() on the driver itself in order to pass messages to/from userspace. On Linux this is possible, since vfs filesystems appear in /proc/fs. Is there something analagous in Solaris10?
thanks 4 any advice,
mike

