Lines Matching refs:ma
322 struct mounta ma; in do_mount() local
359 bzero(&ma, sizeof (ma)); in do_mount()
360 ma.spec = mnt_resource; in do_mount()
361 ma.dir = "/"; in do_mount()
362 ma.flags = MS_DATA | MS_OPTIONSTR | MS_NOSPLICE | MS_NOSUID; in do_mount()
363 ma.fstype = "smbfs"; in do_mount()
364 ma.dataptr = (void *) &mdata; in do_mount()
365 ma.datalen = sizeof (mdata); in do_mount()
366 ma.optptr = mnt_opt_buf; in do_mount()
367 ma.optlen = sizeof (mnt_opt_buf); in do_mount()
369 error = fake_domount("smbfs", &ma, &vfsp); in do_mount()