Lines Matching defs:flags

153 static int hfs_start(struct mount *mp, int flags, vfs_context_t context);
258 int flags;
280 flags = WRITECLOSE;
282 flags |= FORCECLOSE;
284 if ((retval = hfs_flushfiles(mp, flags, p))) {
486 * tree flags that the allocator is enabled for use before we spawn the thread that will start
556 xattr->flags = 0;
715 if ((args->flags != VNOVAL) && (args->flags & HFSFSMNT_NOXONFILES))
1169 int flags = hfs_systemfile_lock(hfsmp, SFL_BITMAP, HFS_EXCLUSIVE_LOCK);
1177 err = GenerateTree(hfsmp, hfsmp->totalBlocks, &flags, 1);
1196 hfs_systemfile_unlock(hfsmp, flags);
1207 int flags = hfs_systemfile_lock(hfsmp, SFL_BITMAP, HFS_EXCLUSIVE_LOCK);
1215 hfs_systemfile_unlock(hfsmp, flags);
1235 int flags = 0;
1242 flags = hfs_systemfile_lock(hfsmp, SFL_BITMAP, HFS_EXCLUSIVE_LOCK);
1260 hfs_systemfile_unlock(hfsmp, flags);
1531 if (args->flags & HFSFSMNT_NOXONFILES) {
1540 if ((args->flags != (int)VNOVAL) && (args->flags & HFSFSMNT_WRAPPER))
1737 if (args != NULL && (args->flags & HFSFSMNT_EXTENDED_ARGS) &&
2101 hfs_start(__unused struct mount *mp, __unused int flags, __unused vfs_context_t context)
2116 int flags;
2121 flags = 0;
2124 flags |= FORCECLOSE;
2128 if ((retval = hfs_flushfiles(mp, flags, p)) && !force)
3389 hfs_flushfiles(struct mount *mp, int flags, struct proc *p)
3391 hfs_flushfiles(struct mount *mp, int flags, __unused struct proc *p)
3424 error = vflush(mp, skipvp, SKIPSYSTEM | SKIPSWAP | flags);
3428 error = vflush(mp, skipvp, SKIPSYSTEM | flags);
3445 if (error && (flags & FORCECLOSE) == 0)
3453 error = vflush(mp, NULLVP, SKIPSYSTEM | flags);