Re: Memory use pattern in svn_fs_base__retry_txn(

2011-11-26 Thread C. Michael Pilato
On 11/24/2011 04:38 PM, Daniel Shahaf wrote: > svn_fs_base__retry_txn() is a while(1) loop that calls > begin_trail(pool) in every iteration. The latter function callocates > a struct trail_t out of POOL. > > Is there a memory growth issue here? Will the number of iterations of > the while(1) lo

Memory use pattern in svn_fs_base__retry_txn(

2011-11-24 Thread Daniel Shahaf
svn_fs_base__retry_txn() is a while(1) loop that calls begin_trail(pool) in every iteration. The latter function callocates a struct trail_t out of POOL. Is there a memory growth issue here? Will the number of iterations of the while(1) loop be small or bounded? If not, should we avoid repeated