mirror of
https://github.com/containers/podman.git
synced 2025-07-15 03:02:52 +08:00

'noatime' flag disables updates to file access times when files are read. This can reduce unnecessary writes and improve performance, especially in read-heavy workloads. Previously, tmpfs did not recognize the 'noatime' mount option and would return an error. With this change, tmpfs now properly accepts and handles the 'noatime' option. Fixes: #26102 Signed-off-by: Arthur Wu <lion811004@gmail.com>