On Wed, Dec 30, 2009 at 11:52 AM, Ilari Liusvaara <ilari.liusvaara@xxxxxxxxxxx> wrote: > +static inline void force_close(int fd) > +{ > + while (close(fd) < 0 && errno != EBADF) > + ; /* No-op */ > +} > + According to http://linux.die.net/man/2/close, close can set errno to EBADF, EINTR, or EIO. Currently, you're retrying on EINTR and EIO. When we get EIO, are you sure it makes sense to retry? I'd imagine that error would most likely just repeat itself, leading to an infinite loop. How about "while (close(fd) < 0 && errno == EINTR)" instead? I've seen other functions (like xread in wrapper.c) only retry on those errors that it expects. In xreads case, it's not retrying on EIO. Perhaps it's OK still, since force_close() is only used on pipes. I don't know if closing a pipe can generate EIO or not. -- Erik "kusma" Faye-Lund -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html