From d25e6c3441498f05746a8307d0237fed92aef58c Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 8 Dec 2017 14:30:46 +0100 Subject: [PATCH] vfs_aio_fork: Drop "volatile" from the mmap area in aio_fork We don't do that in tdb either, and the mmap/memcpy prototypes don't have it either Signed-off-by: Volker Lendecke Reviewed-by: Andreas Schneider --- source3/modules/vfs_aio_fork.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/modules/vfs_aio_fork.c b/source3/modules/vfs_aio_fork.c index 8e47531ebd1..4069d935d24 100644 --- a/source3/modules/vfs_aio_fork.c +++ b/source3/modules/vfs_aio_fork.c @@ -47,7 +47,7 @@ struct aio_fork_config { struct mmap_area { size_t size; - volatile void *ptr; + void *ptr; }; static int mmap_area_destructor(struct mmap_area *area) -- 2.11.4.GIT