• Home
  • Raw
  • Download

Lines Matching refs:lookup_flags

130 	unsigned int lookup_flags = LOOKUP_FOLLOW;  in do_sys_truncate()  local
138 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path); in do_sys_truncate()
143 if (retry_estale(error, lookup_flags)) { in do_sys_truncate()
144 lookup_flags |= LOOKUP_REVAL; in do_sys_truncate()
365 unsigned int lookup_flags = LOOKUP_FOLLOW; in do_faccessat() local
408 res = user_path_at(dfd, filename, lookup_flags, &path); in do_faccessat()
444 if (retry_estale(res, lookup_flags)) { in do_faccessat()
445 lookup_flags |= LOOKUP_REVAL; in do_faccessat()
468 unsigned int lookup_flags = LOOKUP_FOLLOW | LOOKUP_DIRECTORY; in ksys_chdir() local
470 error = user_path_at(AT_FDCWD, filename, lookup_flags, &path); in ksys_chdir()
482 if (retry_estale(error, lookup_flags)) { in ksys_chdir()
483 lookup_flags |= LOOKUP_REVAL; in ksys_chdir()
522 unsigned int lookup_flags = LOOKUP_FOLLOW | LOOKUP_DIRECTORY; in ksys_chroot() local
524 error = user_path_at(AT_FDCWD, filename, lookup_flags, &path); in ksys_chroot()
543 if (retry_estale(error, lookup_flags)) { in ksys_chroot()
544 lookup_flags |= LOOKUP_REVAL; in ksys_chroot()
607 unsigned int lookup_flags = LOOKUP_FOLLOW; in do_fchmodat() local
609 error = user_path_at(dfd, filename, lookup_flags, &path); in do_fchmodat()
613 if (retry_estale(error, lookup_flags)) { in do_fchmodat()
614 lookup_flags |= LOOKUP_REVAL; in do_fchmodat()
679 int lookup_flags; in do_fchownat() local
684 lookup_flags = (flag & AT_SYMLINK_NOFOLLOW) ? 0 : LOOKUP_FOLLOW; in do_fchownat()
686 lookup_flags |= LOOKUP_EMPTY; in do_fchownat()
688 error = user_path_at(dfd, filename, lookup_flags, &path); in do_fchownat()
698 if (retry_estale(error, lookup_flags)) { in do_fchownat()
699 lookup_flags |= LOOKUP_REVAL; in do_fchownat()
972 int lookup_flags = 0; in build_open_flags() local
1034 lookup_flags |= LOOKUP_DIRECTORY; in build_open_flags()
1036 lookup_flags |= LOOKUP_FOLLOW; in build_open_flags()
1037 op->lookup_flags = lookup_flags; in build_open_flags()