VirtualBox

Changeset 28187 in vbox for trunk/src/VBox/Devices/Network


Ignore:
Timestamp:
Apr 12, 2010 9:30:36 AM (15 years ago)
Author:
vboxsync
Message:

NAT: warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/slirp/bsd/kern/uipc_mbuf.c

    r27869 r28187  
    584584struct mbuf *
    585585#ifndef VBOX
    586 m_copym(struct mbuf *m, int off0, int len, int wait)
    587 #else
    588 m_copym(PNATState pData, struct mbuf *m, int off0, int len, int wait)
     586m_copym(struct mbuf *m, int off0, int len, int fWait)
     587#else
     588m_copym(PNATState pData, struct mbuf *m, int off0, int len, int fWait)
    589589#endif
    590590{
     
    596596        KASSERT(off >= 0, ("m_copym, negative off %d", off));
    597597        KASSERT(len >= 0, ("m_copym, negative len %d", len));
    598         MBUF_CHECKSLEEP(wait);
     598        MBUF_CHECKSLEEP(fWait);
    599599        if (off == 0 && m->m_flags & M_PKTHDR)
    600600                copyhdr = 1;
     
    615615                }
    616616                if (copyhdr)
    617                         MGETHDR(n, wait, m->m_type);
     617                        MGETHDR(n, fWait, m->m_type);
    618618                else
    619                         MGET(n, wait, m->m_type);
     619                        MGET(n, fWait, m->m_type);
    620620                *np = n;
    621621                if (n == NULL)
    622622                        goto nospace;
    623623                if (copyhdr) {
    624                         if (!m_dup_pkthdr(n, m, wait))
     624                        if (!m_dup_pkthdr(n, m, fWait))
    625625                                goto nospace;
    626626                        if (len == M_COPYALL)
     
    12851285struct mbuf *
    12861286#ifndef VBOX
    1287 m_split(struct mbuf *m0, int len0, int wait)
    1288 #else
    1289 m_split(PNATState pData, struct mbuf *m0, int len0, int wait)
     1287m_split(struct mbuf *m0, int len0, int fWait)
     1288#else
     1289m_split(PNATState pData, struct mbuf *m0, int len0, int fWait)
    12901290#endif
    12911291{
     
    12931293        u_int len = len0, remain;
    12941294
    1295         MBUF_CHECKSLEEP(wait);
     1295        MBUF_CHECKSLEEP(fWait);
    12961296        for (m = m0; m && len > m->m_len; m = m->m_next)
    12971297                len -= m->m_len;
     
    13001300        remain = m->m_len - len;
    13011301        if (m0->m_flags & M_PKTHDR) {
    1302                 MGETHDR(n, wait, m0->m_type);
     1302                MGETHDR(n, fWait, m0->m_type);
    13031303                if (n == NULL)
    13041304                        return (NULL);
     
    13121312                        MH_ALIGN(n, 0);
    13131313#ifndef VBOX
    1314                         n->m_next = m_split(m, len, wait);
    1315 #else
    1316                         n->m_next = m_split(pData, m, len, wait);
     1314                        n->m_next = m_split(m, len, fWait);
     1315#else
     1316                        n->m_next = m_split(pData, m, len, fWait);
    13171317#endif
    13181318                        if (n->m_next == NULL) {
     
    13341334                return (n);
    13351335        } else {
    1336                 MGET(n, wait, m->m_type);
     1336                MGET(n, fWait, m->m_type);
    13371337                if (n == NULL)
    13381338                        return (NULL);
Note: See TracChangeset for help on using the changeset viewer.

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