diff options
author | Jingqi Liu <jingqi.liu@intel.com> | 2020-04-29 16:50:10 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-06-26 09:39:36 -0400 |
commit | 5f509751f711b54717c1be03d55d096015b1712b (patch) | |
tree | 6de91610952afc62dccf75e748e94be40a4f2b63 /exec.c | |
parent | ce317be98db0dfdfae1d77b77e6b2575d7c59eeb (diff) |
docs/nvdimm: add description of alignment requirement of device dax
For device dax (e.g., /dev/dax0.0), the NUM of 'align=NUM' option
needs to match the alignment requirement of the device dax.
It must be larger than or equal to the 'align' of device dax.
Reviewed-by: Joao Martins <joao.m.martins@oracle.com>
Signed-off-by: Jingqi Liu <jingqi.liu@intel.com>
Message-Id: <20200429085011.63752-3-jingqi.liu@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'exec.c')
-rw-r--r-- | exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2379,7 +2379,7 @@ RAMBlock *qemu_ram_alloc_from_fd(ram_addr_t size, MemoryRegion *mr, file_align = get_file_align(fd); if (file_align > 0 && mr && file_align > mr->align) { error_setg(errp, "backing store align 0x%" PRIx64 - " is larger than 'align' option 0x" PRIx64, + " is larger than 'align' option 0x%" PRIx64, file_align, mr->align); return NULL; } |