resolved: rename dns_cache_remove() → dns_cache_remove_by_key()
authorLennart Poettering <lennart@poettering.net>
Fri, 18 Dec 2015 18:43:10 +0000 (19:43 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 18 Dec 2015 18:43:10 +0000 (19:43 +0100)
Given that we already have dns_cache_remove_by_rr() this makes clearer
what the operation actually does.

src/resolve/resolved-dns-cache.c

index a6b9fb8..c0bfcce 100644 (file)
@@ -107,7 +107,7 @@ static bool dns_cache_remove_by_rr(DnsCache *c, DnsResourceRecord *rr) {
         return false;
 }
 
-static bool dns_cache_remove(DnsCache *c, DnsResourceKey *key) {
+static bool dns_cache_remove_by_key(DnsCache *c, DnsResourceKey *key) {
         DnsCacheItem *first, *i, *n;
 
         assert(c);
@@ -131,7 +131,7 @@ void dns_cache_flush(DnsCache *c) {
         assert(c);
 
         while ((key = hashmap_first_key(c->by_key)))
-                dns_cache_remove(c, key);
+                dns_cache_remove_by_key(c, key);
 
         assert(hashmap_size(c->by_key) == 0);
         assert(prioq_size(c->by_expiry) == 0);
@@ -167,7 +167,7 @@ static void dns_cache_make_space(DnsCache *c, unsigned add) {
                 /* Take an extra reference to the key so that it
                  * doesn't go away in the middle of the remove call */
                 key = dns_resource_key_ref(i->key);
-                dns_cache_remove(c, key);
+                dns_cache_remove_by_key(c, key);
         }
 }
 
@@ -202,7 +202,7 @@ void dns_cache_prune(DnsCache *c) {
                         /* Take an extra reference to the key so that it
                          * doesn't go away in the middle of the remove call */
                         key = dns_resource_key_ref(i->key);
-                        dns_cache_remove(c, key);
+                        dns_cache_remove_by_key(c, key);
                 }
         }
 }
@@ -504,7 +504,7 @@ static void dns_cache_remove_previous(
          * not on mDNS), delete all matching old RRs, so that we only
          * keep complete by_key in place. */
         if (key)
-                dns_cache_remove(c, key);
+                dns_cache_remove_by_key(c, key);
 
         /* Second, flush all entries matching the answer, unless this
          * is an RR that is explicitly marked to be "shared" between
@@ -516,7 +516,7 @@ static void dns_cache_remove_previous(
                 if (flags & DNS_ANSWER_SHARED_OWNER)
                         continue;
 
-                dns_cache_remove(c, rr->key);
+                dns_cache_remove_by_key(c, rr->key);
         }
 }
 
@@ -638,13 +638,13 @@ fail:
          * added, just in case */
 
         if (key)
-                dns_cache_remove(c, key);
+                dns_cache_remove_by_key(c, key);
 
         DNS_ANSWER_FOREACH_FLAGS(rr, flags, answer) {
                 if ((flags & DNS_ANSWER_CACHEABLE) == 0)
                         continue;
 
-                dns_cache_remove(c, rr->key);
+                dns_cache_remove_by_key(c, rr->key);
         }
 
         return r;