From a90ba70cbf8af0d6081f6bb02cae71b955126c49 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 5 Sep 2008 15:32:22 -0700 Subject: Remove unecessary msync. Jeremy. (This used to be commit 0bae1ef3de8fda5e1e2d641b14a408e627396912) --- source3/lib/tdb/common/io.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/source3/lib/tdb/common/io.c b/source3/lib/tdb/common/io.c index 4ec18de48e..661f761489 100644 --- a/source3/lib/tdb/common/io.c +++ b/source3/lib/tdb/common/io.c @@ -191,10 +191,6 @@ int tdb_munmap(struct tdb_context *tdb) if (tdb->map_ptr) { int ret; - ret = msync(tdb->map_ptr, tdb->map_size, MS_SYNC); - if (ret != 0) - return ret; - ret = munmap(tdb->map_ptr, tdb->map_size); if (ret != 0) return ret; -- cgit