On Mon, 29 Jun 2026 20:13:37 GMT, David Holmes <[email protected]> wrote:
>> Coleen Phillimore has updated the pull request incrementally with one >> additional commit since the last revision: >> >> Add warning for non-writable /tmp directory suggesting to use AltTempDir. > > src/hotspot/os/linux/os_linux.cpp line 1554: > >> 1552: struct stat mystat; >> 1553: int ret_val = stat(name, &mystat); >> 1554: return (ret_val != -1 && S_ISDIR(mystat.st_mode) > 0 && access(name, >> R_OK|W_OK|X_OK) == 0); > > Why do we need eXecute permission? I think execute permissions for a directory is traversal isn't it? ------------- PR Review Comment: https://git.openjdk.org/jdk/pull/31407#discussion_r3498689272
