summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-05-31 00:45:01 +0000
committerGitHub <noreply@github.com>2021-05-31 00:45:01 +0000
commita55dd4537286c8fbd96e3e21e18c56a38f8124b9 (patch)
tree7e4685b5f6922e97c9fd7bfd21e06ff6339c4a27 /CHANGELOG.md
parent892daf1bc7bb4ea91c1c9c5f69ba3ee386c99a8b (diff)
parent50e6b22b3a47b0aaa142dd782587d94d37a72df4 (diff)
downloadnix-a55dd4537286c8fbd96e3e21e18c56a38f8124b9.zip
Merge #1437
1437: Add MS_LAZYTIME flag r=asomers a=ManaSugi MS_LAZYTIME (since Linux 4.0) reduces on-disk updates of inode timestamps (atime, mtime, ctime) by maintaining these changes only in memory. MS_LAZYTIME is available from `libc` v0.2.95. Signed-off-by: Manabu Sugimoto <Manabu.Sugimoto@sony.com> Co-authored-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 0fc57f62..d950ab18 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`