VirtualBox

Ignore:
Timestamp:
Feb 9, 2010 1:20:03 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
57455
Message:

Solaris/SUPLib: fix for #4650 (fix fd table from growing on vboxflt close)

Location:
trunk/src/VBox/HostDrivers/Support
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPLibInternal.h

    r25260 r26362  
    5050#else
    5151# define SUPLIB_DLL_SUFF    ".so"
     52#endif
     53
     54#ifdef RT_OS_SOLARIS
     55/** Number of dummy files to open (2:ip4, 1:ip6, 1:extra) see #4650 */
     56#define SUPLIB_FLT_DUMMYFILES 4
    5257#endif
    5358
     
    188193    /** Indicates whether madvise(,,MADV_DONTFORK) works. */
    189194    bool                fSysMadviseWorks;
     195#elif defined(RT_OS_SOLARIS)
     196    /** Extra dummy file descriptors to prevent growing file-descriptor table on clean up (see #4650) */
     197    int                 hDummy[SUPLIB_FLT_DUMMYFILES];
    190198#elif defined(RT_OS_WINDOWS)
    191199#endif
  • trunk/src/VBox/HostDrivers/Support/solaris/SUPLib-solaris.cpp

    r23834 r26362  
    8282        return VINF_SUCCESS;
    8383
     84#ifdef VBOXFLT_DUMMYFILES
     85    /*
     86     * Open dummy files to preallocate file descriptors, see #4650.
     87     */
     88    for (int i = 0; i < VBOXFLT_DUMMYFILES; i++)
     89    {
     90        int hDummy = open("/dev/null", O_RDWR, 0);
     91        fcntl(hDummy, F_SETFD, FD_CLOEXEC);
     92        if (hDummy >= 0)
     93            pThis->hDummy[i] = hDummy;
     94        else
     95        {
     96            pThis->hDummy[i] = -1;
     97            LogRel(("Failed to open[%d] /dev/null! errno=%d\n", i, errno));
     98        }
     99    }
     100#endif
    84101
    85102    /*
     
    127144int suplibOsTerm(PSUPLIBDATA pThis)
    128145{
     146#ifdef VBOXFLT_DUMMYFILES
     147    /*
     148     * Close the dummy files first.
     149     */
     150    for (int i = 0; i < VBOXFLT_DUMMYFILES; i++)
     151    {
     152        if (pThis->hDummy[i] != -1)
     153        {
     154            close(pThis->hDummy[i]);
     155            pThis->hDummy[i] = -1;
     156        }
     157    }
     158#endif
     159
    129160    /*
    130161     * Check if we're initialized
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette