align first allocation from additional pool block, this fixes bus error on sun4v
diff --git a/src/core/ngx_palloc.c b/src/core/ngx_palloc.c
index 0cadd4a..ce826ba 100644
--- a/src/core/ngx_palloc.c
+++ b/src/core/ngx_palloc.c
@@ -171,6 +171,7 @@
     new->d.next = NULL;
 
     m += sizeof(ngx_pool_data_t);
+    m = ngx_align_ptr(m, NGX_ALIGNMENT);
     new->d.last = m + size;
 
     current = pool->current;