r3400 - trunk/varnish-cache/bin/varnishd

phk at projects.linpro.no phk at projects.linpro.no
Mon Nov 17 19:02:09 CET 2008


Author: phk
Date: 2008-11-17 19:02:09 +0100 (Mon, 17 Nov 2008)
New Revision: 3400

Modified:
   trunk/varnish-cache/bin/varnishd/hash_simple_list.c
Log:
Rename variables to reflect that they are object heads, not objects.



Modified: trunk/varnish-cache/bin/varnishd/hash_simple_list.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/hash_simple_list.c	2008-11-17 13:31:37 UTC (rev 3399)
+++ trunk/varnish-cache/bin/varnishd/hash_simple_list.c	2008-11-17 18:02:09 UTC (rev 3400)
@@ -46,7 +46,7 @@
 
 struct hsl_entry {
 	VTAILQ_ENTRY(hsl_entry)	list;
-	struct objhead		*obj;
+	struct objhead		*oh;
 	unsigned		refcnt;
 };
 
@@ -73,34 +73,34 @@
  */
 
 static struct objhead *
-hsl_lookup(const struct sess *sp, struct objhead *nobj)
+hsl_lookup(const struct sess *sp, struct objhead *noh)
 {
 	struct hsl_entry *he, *he2;
 	int i;
 
 	Lck_Lock(&hsl_mtx);
 	VTAILQ_FOREACH(he, &hsl_head, list) {
-		i = HSH_Compare(sp, he->obj);
+		i = HSH_Compare(sp, he->oh);
 		if (i < 0)
 			continue;
 		if (i > 0)
 			break;
 		he->refcnt++;
-		nobj = he->obj;
+		noh = he->oh;
 		Lck_Unlock(&hsl_mtx);
-		return (nobj);
+		return (noh);
 	}
-	if (nobj != NULL) {
+	if (noh != NULL) {
 		he2 = calloc(sizeof *he2, 1);
 		XXXAN(he2);
-		he2->obj = nobj;
+		he2->oh = noh;
 		he2->refcnt = 1;
 
-		nobj->hashpriv = he2;
-		nobj->hash = malloc(sp->lhashptr);
-		XXXAN(nobj->hash);
-		nobj->hashlen = sp->lhashptr;
-		HSH_Copy(sp, nobj);
+		noh->hashpriv = he2;
+		noh->hash = malloc(sp->lhashptr);
+		XXXAN(noh->hash);
+		noh->hashlen = sp->lhashptr;
+		HSH_Copy(sp, noh);
 
 		if (he != NULL)
 			VTAILQ_INSERT_BEFORE(he, he2, list);
@@ -108,7 +108,7 @@
 			VTAILQ_INSERT_TAIL(&hsl_head, he2, list);
 	}
 	Lck_Unlock(&hsl_mtx);
-	return (nobj);
+	return (noh);
 }
 
 /*--------------------------------------------------------------------



More information about the varnish-commit mailing list