devfs_data
struct devfs_data *devfs_data;
devfs_data = kmem_zalloc(sizeof (struct devfs_data), KM_SLEEP);
devfs_data->devfs_vfsp = vfsp;
devfs_data->devfs_root = dv;
vfsp->vfs_data = (caddr_t)devfs_data;
devfs_mntinfo = devfs_data;
static struct devfs_data *devfs_mntinfo; /* linked list of instances */
#define VFSTODVFS(vfsp) ((struct devfs_data *)((vfsp)->vfs_data))