Skip to content

Commit

Permalink
Revert "Fix lock handling in memory hander of nscd."
Browse files Browse the repository at this point in the history
This reverts commit 137028b.

Conflicts:

	ChangeLog
  • Loading branch information
Ulrich Drepper committed Jul 17, 2009
1 parent 09f97a8 commit 00ebd7e
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 16 deletions.
11 changes: 0 additions & 11 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,6 @@
* resolv/res-mkquery.c (__res_nopt): If anslen is > 0xffff store
0xffff in the EDNS0 record.

2009-07-16 Petr Baudis <pasky@suse.cz>

[BZ #10402]
* nscd/mem.c (mempool_alloc): Fix unlock missing in the else branch.
* nscd/aicache.c: Remove bogus db->lock unlock.
* nscd/grpcache.c: Likewise.
* nscd/hstcache.c: Likewise.
* nscd/initgrcache.c: Likewise.
* nscd/pwdcache.c: Likewise.
* nscd/servicescache.c: Likewise.

2009-07-16 Ulrich Drepper <drepper@redhat.com>

* nscd/cache.c (cache_add): Use atomic_compare_and_exchange_bool_rel
Expand Down
2 changes: 2 additions & 0 deletions nscd/aicache.c
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,8 @@ addhstaiX (struct database_dyn *db, int fd, request_header *req,
(void) cache_add (req->type, key_copy, req->key_len, &dataset->head,
true, db, uid, he == NULL);

pthread_rwlock_unlock (&db->lock);

/* Mark the old entry as obsolete. */
if (dh != NULL)
dh->usable = false;
Expand Down
6 changes: 5 additions & 1 deletion nscd/grpcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ cache_addgr (struct database_dyn *db, int fd, request_header *req,
(void) cache_add (req->type, &dataset->strdata, req->key_len,
&dataset->head, true, db, owner, he == NULL);

pthread_rwlock_unlock (&db->lock);

/* Mark the old entry as obsolete. */
if (dh != NULL)
dh->usable = false;
Expand Down Expand Up @@ -365,10 +367,12 @@ cache_addgr (struct database_dyn *db, int fd, request_header *req,
(void) cache_add (GETGRBYGID, cp, key_offset, &dataset->head,
false, db, owner, false);
}

out:
pthread_rwlock_unlock (&db->lock);
}
}

out:
if (__builtin_expect (written != total, 0) && debug_level > 0)
{
char buf[256];
Expand Down
4 changes: 4 additions & 0 deletions nscd/hstcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ cache_addhst (struct database_dyn *db, int fd, request_header *req,
(void) cache_add (req->type, &dataset->strdata, req->key_len,
&dataset->head, true, db, owner, he == NULL);

pthread_rwlock_unlock (&db->lock);

/* Mark the old entry as obsolete. */
if (dh != NULL)
dh->usable = false;
Expand Down Expand Up @@ -402,6 +404,8 @@ cache_addhst (struct database_dyn *db, int fd, request_header *req,

(void) cache_add (req->type, key_copy, req->key_len,
&dataset->head, true, db, owner, he == NULL);

pthread_rwlock_unlock (&db->lock);
}
}

Expand Down
4 changes: 4 additions & 0 deletions nscd/initgrcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ addinitgroupsX (struct database_dyn *db, int fd, request_header *req,
(void) cache_add (req->type, key_copy, req->key_len,
&dataset->head, true, db, uid, he == NULL);

pthread_rwlock_unlock (&db->lock);

/* Mark the old entry as obsolete. */
if (dh != NULL)
dh->usable = false;
Expand Down Expand Up @@ -386,6 +388,8 @@ addinitgroupsX (struct database_dyn *db, int fd, request_header *req,

(void) cache_add (INITGROUPS, cp, req->key_len, &dataset->head, true,
db, uid, he == NULL);

pthread_rwlock_unlock (&db->lock);
}
}

Expand Down
6 changes: 3 additions & 3 deletions nscd/mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,9 @@ mempool_alloc (struct database_dyn *db, size_t len, int data_alloc)
}
}

if (data_alloc)
pthread_rwlock_unlock (&db->lock);

if (! db->last_alloc_failed)
{
dbg_log (_("no more memory for database '%s'"), dbnames[db - dbs]);
Expand All @@ -588,8 +591,5 @@ mempool_alloc (struct database_dyn *db, size_t len, int data_alloc)

pthread_mutex_unlock (&db->memlock);

if (data_alloc)
pthread_rwlock_unlock (&db->lock);

return res;
}
6 changes: 5 additions & 1 deletion nscd/pwdcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ cache_addpw (struct database_dyn *db, int fd, request_header *req,
(void) cache_add (req->type, key_copy, req->key_len,
&dataset->head, true, db, owner, he == NULL);

pthread_rwlock_unlock (&db->lock);

/* Mark the old entry as obsolete. */
if (dh != NULL)
dh->usable = false;
Expand Down Expand Up @@ -360,10 +362,12 @@ cache_addpw (struct database_dyn *db, int fd, request_header *req,
(void) cache_add (GETPWBYUID, cp, key_offset, &dataset->head,
false, db, owner, false);
}

out:
pthread_rwlock_unlock (&db->lock);
}
}

out:
if (__builtin_expect (written != total, 0) && debug_level > 0)
{
char buf[256];
Expand Down
4 changes: 4 additions & 0 deletions nscd/servicescache.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ cache_addserv (struct database_dyn *db, int fd, request_header *req,
(void) cache_add (req->type, &dataset->strdata, req->key_len,
&dataset->head, true, db, owner, he == NULL);

pthread_rwlock_unlock (&db->lock);

/* Mark the old entry as obsolete. */
if (dh != NULL)
dh->usable = false;
Expand Down Expand Up @@ -315,6 +317,8 @@ cache_addserv (struct database_dyn *db, int fd, request_header *req,

(void) cache_add (req->type, key_copy, req->key_len,
&dataset->head, true, db, owner, he == NULL);

pthread_rwlock_unlock (&db->lock);
}
}

Expand Down

0 comments on commit 00ebd7e

Please sign in to comment.