summaryrefslogtreecommitdiff
path: root/source/lib/tdb/common/io.c
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2008-09-03 10:44:09 -0400
committerStefan Metzmacher <metze@samba.org>2008-09-14 19:19:55 +0200
commit8fd54bb55f0c23bd025d1719abcbe75c6a2ea8ac (patch)
treece8add9a0cd74eadb2e55576ed9dfa3662ce1537 /source/lib/tdb/common/io.c
parent1d85e0647e287d269b3f6b534da88f497d6f76c3 (diff)
downloadsamba-8fd54bb55f0c23bd025d1719abcbe75c6a2ea8ac.tar.gz
The msync manpage reports that msync *must* be called before munmap. Failure to do so may result in lost data. Fix an ifdef check, I really think we meant to check HAVE_MMAP here.
(cherry picked from commit 74c8575b3f3b90ea21ae6aa7ccd95947838af956)
Diffstat (limited to 'source/lib/tdb/common/io.c')
-rw-r--r--source/lib/tdb/common/io.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/lib/tdb/common/io.c b/source/lib/tdb/common/io.c
index 172ab69d8c9..4ec18de48e0 100644
--- a/source/lib/tdb/common/io.c
+++ b/source/lib/tdb/common/io.c
@@ -189,7 +189,13 @@ int tdb_munmap(struct tdb_context *tdb)
#ifdef HAVE_MMAP
if (tdb->map_ptr) {
- int ret = munmap(tdb->map_ptr, tdb->map_size);
+ 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;
}