nginx-0.8.1

Igor Sysoev is at rambler-co.ru
Thu Jun 11 23:19:56 MSD 2009


On Thu, Jun 11, 2009 at 11:02:59PM +0400, Volkov Oleg wrote:

> В Чтв, 11/06/2009 в 21:30 +0400, Igor Sysoev пишет:
> 
> > В новом патче в режиме отладки ещё пишется inode, можно сделать отладочный
> > лог ?
> 
> Вот один из запросов, снятый через несколько секунд после "поломки".
> Воркеров - 1.

Новый патч вместо предыдущего.


-- 
Игорь Сысоев
http://sysoev.ru
-------------- next part --------------
Index: src/http/ngx_http_file_cache.c
===================================================================
--- src/http/ngx_http_file_cache.c	(revision 2252)
+++ src/http/ngx_http_file_cache.c	(working copy)
@@ -172,8 +172,9 @@
 
     rc = ngx_http_file_cache_exists(cache, c);
 
-    ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
-                   "http file cache exists: %i e:%d", rc, c->exists);
+    ngx_log_debug3(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
+                   "http file cache exists: %i e:%d %uXL",
+                   rc, c->exists, (uint64_t) c->uniq);
 
     if (rc == NGX_ERROR) {
         return rc;
@@ -320,6 +321,7 @@
             c->node->uses = 1;
             c->node->body_start = c->body_start;
             c->node->exists = 1;
+            c->node->uniq = of.uniq;
 
             cache->sh->size += (c->length + cache->bsize - 1) / cache->bsize;
         }
Index: src/core/ngx_open_file_cache.c
===================================================================
--- src/core/ngx_open_file_cache.c	(revision 2252)
+++ src/core/ngx_open_file_cache.c	(working copy)
@@ -209,6 +209,10 @@
             goto add_event;
         }
 
+        ngx_log_debug2(NGX_LOG_DEBUG_CORE, pool->log, 0,
+                       "uniq: %uXL %uXL",
+                       (uint64_t) of->uniq, (uint64_t) file->uniq);
+
         if (file->use_event
             || (file->event == NULL
                 && (of->uniq == 0 || of->uniq == file->uniq)
@@ -360,6 +364,7 @@
 
     file->uses = 1;
     file->count = 0;
+    file->use_event = 0;
     file->event = NULL;
 
 add_event:


More information about the nginx-ru mailing list