]> err.no Git - varnish/commitdiff
Remove the unnecessary third argument to VBE_ClosedFd() and remove
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Mon, 20 Aug 2007 11:05:48 +0000 (11:05 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Mon, 20 Aug 2007 11:05:48 +0000 (11:05 +0000)
a couple of now pointless debugging messages in pipe mode.

git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1889 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishd/cache.h
varnish-cache/bin/varnishd/cache_backend.c
varnish-cache/bin/varnishd/cache_fetch.c
varnish-cache/bin/varnishd/cache_pipe.c

index 7cad55d51b43445029cb251d41a1a2df6a204033..19160ebc13d874411fe346801ccd59d8a79bf028 100644 (file)
@@ -366,7 +366,7 @@ extern int vca_pipes[2];
 /* cache_backend.c */
 void VBE_Init(void);
 struct vbe_conn *VBE_GetFd(struct sess *sp);
-void VBE_ClosedFd(struct worker *w, struct vbe_conn *vc, int already);
+void VBE_ClosedFd(struct worker *w, struct vbe_conn *vc);
 void VBE_RecycleFd(struct worker *w, struct vbe_conn *vc);
 struct bereq * VBE_new_bereq(void);
 void VBE_free_bereq(struct bereq *bereq);
index 744940aa2d4823f4779dc9ab43f0567c38549164..2e46b6e14180834c686e1f532abfd727f736d2b6 100644 (file)
@@ -290,7 +290,7 @@ vbe_nextfd(struct sess *sp)
                        reuse = 1;
                        break;
                }
-               VBE_ClosedFd(sp->wrk, vc, 0);
+               VBE_ClosedFd(sp->wrk, vc);
        }
 
        if (vc == NULL) {
@@ -352,15 +352,14 @@ VBE_GetFd(struct sess *sp)
 /* Close a connection ------------------------------------------------*/
 
 void
-VBE_ClosedFd(struct worker *w, struct vbe_conn *vc, int already)
+VBE_ClosedFd(struct worker *w, struct vbe_conn *vc)
 {
 
        CHECK_OBJ_NOTNULL(vc, VBE_CONN_MAGIC);
        assert(vc->fd >= 0);
        AN(vc->backend);
        WSL(w, SLT_BackendClose, vc->fd, "%s", vc->backend->vcl_name);
-       if (!already)
-               AZ(close(vc->fd));
+       AZ(close(vc->fd));
        vc->fd = -1;
        vc->backend = NULL;
        LOCK(&vbemtx);
index c34d82ac956d7d4c5afbda51ac58c76dc0e3ba0b..02aa60c9e0ead2138a33c37da6e3cbf8dd78e255 100644 (file)
@@ -346,7 +346,7 @@ Fetch(struct sess *sp)
                        TAILQ_REMOVE(&sp->obj->store, st, list);
                        STV_free(st);
                }
-               VBE_ClosedFd(sp->wrk, vc, 0);
+               VBE_ClosedFd(sp->wrk, vc);
                return (-1);
        }
 
@@ -364,7 +364,7 @@ Fetch(struct sess *sp)
                cls = 1;
 
        if (cls)
-               VBE_ClosedFd(sp->wrk, vc, 0);
+               VBE_ClosedFd(sp->wrk, vc);
        else
                VBE_RecycleFd(sp->wrk, vc);
 
index d73b96f1d5db15821cfa00f503a94a647e2bddbb..c33e5b3f051ab325bc1423cf5ba4840f471ac380 100644 (file)
@@ -50,8 +50,6 @@ rdf(struct pollfd *fds, int idx)
 
        i = read(fds[idx].fd, buf, sizeof buf);
        if (i <= 0 || fds[1-idx].events == 0) {
-               VSL(SLT_Debug, fds[idx].fd, "Pipe Shut read(read)");
-               VSL(SLT_Debug, fds[1-idx].fd, "Pipe Shut write(read)");
                shutdown(fds[idx].fd, SHUT_RD);
                shutdown(fds[1-idx].fd, SHUT_WR);
                fds[idx].events = 0;
@@ -59,9 +57,7 @@ rdf(struct pollfd *fds, int idx)
        }
        for (p = buf; i > 0; i -= j, p += j) {
                j = write(fds[1-idx].fd, p, i);
-               if (j < 0) {
-                       VSL(SLT_Debug, fds[idx].fd, "Pipe Shut write(write)");
-                       VSL(SLT_Debug, fds[1-idx].fd, "Pipe Shut read(write)");
+               if (j != i) {
                        shutdown(fds[idx].fd, SHUT_WR);
                        shutdown(fds[1-idx].fd, SHUT_RD);
                        fds[1-idx].events = 0;
@@ -98,7 +94,7 @@ PipeSession(struct sess *sp)
 
        if (WRK_Flush(w)) {
                vca_close_session(sp, "pipe");
-               VBE_ClosedFd(sp->wrk, vc, 0);
+               VBE_ClosedFd(sp->wrk, vc);
                return;
        }
 
@@ -125,6 +121,5 @@ PipeSession(struct sess *sp)
                        rdf(fds, 1);
        }
        vca_close_session(sp, "pipe");
-       (void)close (vc->fd);
-       VBE_ClosedFd(sp->wrk, vc, 1);
+       VBE_ClosedFd(sp->wrk, vc);
 }