diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2024-09-19 13:14:39 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-09-19 14:18:39 +0200 |
commit | 45246705456aa06df70b30233db3bf99ee008f58 (patch) | |
tree | 712c15228376981776af5ffbcfc6333cd8ca6dd3 | |
parent | e64a1e81aadf6c401174ac9471ced0f0125c2912 (diff) | |
download | glibc-45246705456aa06df70b30233db3bf99ee008f58.tar.gz glibc-45246705456aa06df70b30233db3bf99ee008f58.tar.xz glibc-45246705456aa06df70b30233db3bf99ee008f58.zip |
hurd: Avoid file_check_access () RPC for access (F_OK)
A common use case of access () / faccessat () is checking for file existence, not any specific access permissions. In that case, we can avoid doing the file_check_access () RPC; whether the given path had been successfully resolved to a file is all we need to know to answer. This is prompted by GLib switching to use faccessat (F_OK) to implement g_file_query_exists () for local files. https://gitlab.gnome.org/GNOME/glib/-/merge_requests/4272 Signed-off-by: Sergey Bugaev <bugaevc@gmail.com> Message-ID: <20240919101439.179663-1-bugaevc@gmail.com>
-rw-r--r-- | sysdeps/mach/hurd/faccessat.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sysdeps/mach/hurd/faccessat.c b/sysdeps/mach/hurd/faccessat.c index 998e31962f..6d3d123abb 100644 --- a/sysdeps/mach/hurd/faccessat.c +++ b/sysdeps/mach/hurd/faccessat.c @@ -185,6 +185,15 @@ __faccessat_common (int fd, const char *file, int type, int at_flags, return errfunc (err); } + /* If all we wanted was to check for a file existing at the path, + then we already got our answer, and we don't need to call + file_check_access (). */ + if (type == F_OK) + { + __mach_port_deallocate (__mach_task_self (), io); + return 0; + } + /* Find out what types of access we are allowed to this file. */ err = __file_check_access (io, &allowed); __mach_port_deallocate (__mach_task_self (), io); |