Series of 4 patches to implement close-on-fork. Tests have been published to https://github.com/nkarstens/ltp/tree/close-on-fork. close-on-fork addresses race conditions in system(), which (depending on the implementation) is non-atomic in that it first calls a fork() and then an exec(). This functionality was approved by the Austin Common Standards Revision Group for inclusion in the next revision of the POSIX standard (see issue 1318 in the Austin Group Defect Tracker). [PATCH 1/4] fs: Implement close-on-fork [PATCH 2/4] fs: Add O_CLOFORK flag for open(2) and dup3(2) [PATCH 3/4] fs: Add F_DUPFD_CLOFORK to fcntl(2) [PATCH 4/4] net: Add SOCK_CLOFORK