comparison src/core/ngx_buf.c @ 441:fd759445d8a8 NGINX_0_7_28

nginx 0.7.28 *) Change: in memory allocation in the ngx_http_gzip_filter_module. *) Change: the default "gzip_buffers" directive values have been changed to 32 4k or 16 8k from 4 4k/8k.
author Igor Sysoev <http://sysoev.ru>
date Mon, 22 Dec 2008 00:00:00 +0300
parents 003bd800ec2a
children
comparison
equal deleted inserted replaced
440:e2c4e8b635a8 441:fd759445d8a8
199 while (*busy) { 199 while (*busy) {
200 if (ngx_buf_size((*busy)->buf) != 0) { 200 if (ngx_buf_size((*busy)->buf) != 0) {
201 break; 201 break;
202 } 202 }
203 203
204 #if (NGX_HAVE_WRITE_ZEROCOPY)
205 if ((*busy)->buf->zerocopy_busy) {
206 break;
207 }
208 #endif
209
210 if ((*busy)->buf->tag != tag) { 204 if ((*busy)->buf->tag != tag) {
211 *busy = (*busy)->next; 205 *busy = (*busy)->next;
212 continue; 206 continue;
213 } 207 }
214 208