Implement metadata dump tool

This commit is contained in:
Vitaliy Filippov
2022-06-10 18:50:09 +03:00
parent 1eec4407ab
commit dac12d8a4c
11 changed files with 210 additions and 13 deletions
+5 -1
View File
@@ -19,7 +19,11 @@
#include "timerfd_manager.h"
// Memory alignment for direct I/O (usually 512 bytes)
// All other alignments must be a multiple of this one
#ifndef DIRECT_IO_ALIGNMENT
#define DIRECT_IO_ALIGNMENT 512
#endif
// Memory allocation alignment (page size is usually optimal)
#ifndef MEM_ALIGNMENT
#define MEM_ALIGNMENT 4096
#endif