summaryrefslogtreecommitdiff
path: root/nscd/grpcache.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-09-12 10:10:48 +0000
committerUlrich Drepper <drepper@redhat.com>2004-09-12 10:10:48 +0000
commitcf244b74a04435b6954d5499a09fa97a628bc3ab (patch)
tree897579a8737715c5850e0d96b59024bf9556e68f /nscd/grpcache.c
parent8c89236fd36aac2a048c9a400572ef0ee642fb83 (diff)
Update.
2004-09-12 Ulrich Drepper <drepper@redhat.com> * nscd/pwdcache.c (cache_addpw): Sync also negative results to disk. * nscd/grpcache.c (cache_addgr): Likewise. * nscd/hstcache.c (cache_addhst): Likewise.
Diffstat (limited to 'nscd/grpcache.c')
-rw-r--r--nscd/grpcache.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/nscd/grpcache.c b/nscd/grpcache.c
index d07693f1a4..bf4a225edd 100644
--- a/nscd/grpcache.c
+++ b/nscd/grpcache.c
@@ -128,6 +128,16 @@ cache_addgr (struct database_dyn *db, int fd, request_header *req,
/* Copy the key data. */
memcpy (dataset->strdata, key, req->key_len);
+ /* If necessary, we also propagate the data to disk. */
+ if (db->persistent)
+ {
+ // XXX async OK?
+ uintptr_t pval = (uintptr_t) dataset & ~pagesize_m1;
+ msync ((void *) pval,
+ ((uintptr_t) dataset & pagesize_m1)
+ + sizeof (struct dataset) + req->key_len, MS_ASYNC);
+ }
+
/* Now get the lock to safely insert the records. */
pthread_rwlock_rdlock (&db->lock);