From: Lennart Poettering Date: Fri, 18 Dec 2015 18:43:10 +0000 (+0100) Subject: resolved: rename dns_cache_remove() → dns_cache_remove_by_key() X-Git-Tag: v229~201^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2dda578f1e729ff906820936b65474967683aeda;p=thirdparty%2Fsystemd.git resolved: rename dns_cache_remove() → dns_cache_remove_by_key() Given that we already have dns_cache_remove_by_rr() this makes clearer what the operation actually does. --- diff --git a/src/resolve/resolved-dns-cache.c b/src/resolve/resolved-dns-cache.c index a6b9fb8f2de..c0bfcce7cd5 100644 --- a/src/resolve/resolved-dns-cache.c +++ b/src/resolve/resolved-dns-cache.c @@ -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;