1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

unit-test/io_engine_t: use posix_memalign() rather than aligned_alloc()

Not present on older systems.
This commit is contained in:
Joe Thornber 2018-04-30 16:55:19 +01:00
parent cca815d240
commit ef79d639fe

View File

@ -46,8 +46,8 @@ static void *_fix_init(void)
T_ASSERT(f);
f->e = create_async_io_engine();
T_ASSERT(f->e);
f->data = aligned_alloc(4096, SECTOR_SIZE * BLOCK_SIZE_SECTORS);
T_ASSERT(f->data);
if (posix_memalign(&f->data, 4096, SECTOR_SIZE * BLOCK_SIZE_SECTORS))
test_fail("posix_memalign failed");
snprintf(f->fname, sizeof(f->fname), "unit-test-XXXXXX");
f->fd = mkostemp(f->fname, O_RDWR | O_CREAT | O_EXCL);