Re: [PATCH 0/5] Retry if fdopen() fails due to ENOMEM

2015-03-17 Thread Junio C Hamano
Michael Haggerty mhag...@alum.mit.edu writes: On 03/06/2015 06:08 AM, Torsten Bögershausen wrote: On 03/05/2015 05:07 PM, Michael Haggerty wrote: One likely reason for fdopen() to fail is the lack of memory for allocating a FILE structure. When that happens, try freeing some memory and

Re: [PATCH 0/5] Retry if fdopen() fails due to ENOMEM

2015-03-10 Thread Michael Haggerty
On 03/05/2015 08:19 PM, Junio C Hamano wrote: Michael Haggerty mhag...@alum.mit.edu writes: One likely reason for fdopen() to fail is the lack of memory for allocating a FILE structure. When that happens, try freeing some memory and calling fdopen() again in the hope that it will work the

Re: [PATCH 0/5] Retry if fdopen() fails due to ENOMEM

2015-03-10 Thread Michael Haggerty
On 03/06/2015 06:08 AM, Torsten Bögershausen wrote: On 03/05/2015 05:07 PM, Michael Haggerty wrote: One likely reason for fdopen() to fail is the lack of memory for allocating a FILE structure. When that happens, try freeing some memory and calling fdopen() again in the hope that it will work

Re: [PATCH 0/5] Retry if fdopen() fails due to ENOMEM

2015-03-05 Thread Junio C Hamano
Michael Haggerty mhag...@alum.mit.edu writes: One likely reason for fdopen() to fail is the lack of memory for allocating a FILE structure. When that happens, try freeing some memory and calling fdopen() again in the hope that it will work the second time. In codepaths where we are likely

[PATCH 0/5] Retry if fdopen() fails due to ENOMEM

2015-03-05 Thread Michael Haggerty
One likely reason for fdopen() to fail is the lack of memory for allocating a FILE structure. When that happens, try freeing some memory and calling fdopen() again in the hope that it will work the second time. This change was suggested by Jonathan Nieder [1] In the first patch it is

Re: [PATCH 0/5] Retry if fdopen() fails due to ENOMEM

2015-03-05 Thread Torsten Bögershausen
On 03/05/2015 05:07 PM, Michael Haggerty wrote: One likely reason for fdopen() to fail is the lack of memory for allocating a FILE structure. When that happens, try freeing some memory and calling fdopen() again in the hope that it will work the second time. This change was suggested by