1
0
Mirror von https://github.com/tkuschel/bees.git synchronisiert 2026-05-08 04:59:37 +02:00

fs: don't zero-fill btrfs data containers

The kernel does it already, and we gain a little performance here because
we do it so often.

Signed-off-by: Zygo Blaxell <bees@furryterror.org>
Dieser Commit ist enthalten in:
Zygo Blaxell
2020-11-04 22:27:51 -05:00
Ursprung b49d458792
Commit 97c167d63a
+1 -1
Datei anzeigen
@@ -188,7 +188,7 @@ namespace crucible {
}
BtrfsDataContainer::BtrfsDataContainer(size_t buf_size) :
m_data(buf_size, 0)
m_data(buf_size)
{
}