summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorManabu Sugimoto <Manabu.Sugimoto@sony.com>2021-05-26 15:06:58 +0900
committerManabu Sugimoto <Manabu.Sugimoto@sony.com>2021-05-31 09:30:33 +0900
commit50e6b22b3a47b0aaa142dd782587d94d37a72df4 (patch)
tree2a6d982447cd7f13bb21d4104f41f97ff34a9576 /CHANGELOG.md
parent9f1b35b5d4a176ed7c09b576b461620c632c0182 (diff)
downloadnix-50e6b22b3a47b0aaa142dd782587d94d37a72df4.zip
Add MS_LAZYTIME flag
MS_LAZYTIME (since Linux 4.0) reduces on-disk updates of inode timestamps (atime, mtime, ctime) by maintaining these changes only in memory. Signed-off-by: Manabu Sugimoto <Manabu.Sugimoto@sony.com>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1e163be9..bad50adc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- Added TIMESTAMPNS support for linux
(#[1402](https://github.com/nix-rust/nix/pull/1402))
- Added `sendfile64` (#[1439](https://github.com/nix-rust/nix/pull/1439))
+- Added `MS_LAZYTIME` to `MsFlags`
+ (#[1437](https://github.com/nix-rust/nix/pull/1437))
### Changed
- Made `forkpty` unsafe, like `fork`