Lines Matching defs:opts
1347 static void get_fs_options(char *opts, int osize, long flags)
1349 *opts = '\0';
1350 if (flags & MNT_RDONLY) strncat(opts, "ro", osize);
1351 else strncat(opts, "rw", osize);
1352 if (flags & MNT_SYNCHRONOUS) strncat(opts, ",sync", osize);
1353 if (flags & MNT_NOEXEC) strncat(opts, ",noexec", osize);
1354 if (flags & MNT_NOSUID) strncat(opts, ",nosuid", osize);
1356 if (flags & MNT_NODEV) strncat(opts, ",nodev", osize);
1359 if (flags & MNT_UNION) strncat(opts, ",union", osize);
1361 if (flags & MNT_ASYNC) strncat(opts, ",async", osize);
1363 if (flags & MNT_NOATIME) strncat(opts, ",noatime", osize);
1366 if (flags & MNT_NOCLUSTERR) strncat(opts, ",noclusterr", osize);
1369 if (flags & MNT_NOCLUSTERW) strncat(opts, ",noclusterw", osize);
1372 if (flags & MNT_NOSYMFOLLOW) strncat(opts, ",nosymfollow", osize);
1375 if (flags & MNT_SUIDDIR) strncat(opts, ",suiddir", osize);
1378 if (flags & MNT_SOFTDEP) strncat(opts, ",soft-updates", osize);
1380 if (flags & MNT_LOCAL) strncat(opts, ",local", osize);
1381 if (flags & MNT_QUOTA) strncat(opts, ",quota", osize);
1382 if (flags & MNT_ROOTFS) strncat(opts, ",rootfs", osize);
1384 if (flags & MNT_USER) strncat(opts, ",user", osize);
1387 if (flags & MNT_IGNORE) strncat(opts, ",ignore", osize);
1389 if (flags & MNT_EXPORTED) strncat(opts, ",nfs", osize);