Lines Matching refs:ma
193 msdosfs_cmount(struct mntarg *ma, void *data, uint64_t flags) in msdosfs_cmount() argument
204 ma = mount_argsu(ma, "from", args.fspec, MAXPATHLEN); in msdosfs_cmount()
205 ma = mount_arg(ma, "export", &args.export, sizeof(args.export)); in msdosfs_cmount()
206 ma = mount_argf(ma, "uid", "%d", args.uid); in msdosfs_cmount()
207 ma = mount_argf(ma, "gid", "%d", args.gid); in msdosfs_cmount()
208 ma = mount_argf(ma, "mask", "%d", args.mask); in msdosfs_cmount()
209 ma = mount_argf(ma, "dirmask", "%d", args.dirmask); in msdosfs_cmount()
211 ma = mount_argb(ma, args.flags & MSDOSFSMNT_SHORTNAME, "noshortname"); in msdosfs_cmount()
212 ma = mount_argb(ma, args.flags & MSDOSFSMNT_LONGNAME, "nolongname"); in msdosfs_cmount()
213 ma = mount_argb(ma, !(args.flags & MSDOSFSMNT_NOWIN95), "nowin95"); in msdosfs_cmount()
214 ma = mount_argb(ma, args.flags & MSDOSFSMNT_KICONV, "nokiconv"); in msdosfs_cmount()
216 ma = mount_argsu(ma, "cs_win", args.cs_win, MAXCSLEN); in msdosfs_cmount()
217 ma = mount_argsu(ma, "cs_dos", args.cs_dos, MAXCSLEN); in msdosfs_cmount()
218 ma = mount_argsu(ma, "cs_local", args.cs_local, MAXCSLEN); in msdosfs_cmount()
220 error = kernel_mount(ma, flags); in msdosfs_cmount()