VirtualBox

Ignore:
Timestamp:
Feb 14, 2010 7:59:48 AM (15 years ago)
Author:
vboxsync
Message:

Devices: whitespace cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/slirp/libalias/alias_mod.c

    r21864 r26495  
    6363struct rwlock   handler_rw;
    6464#endif
    65 SLIST_HEAD(dll_chain, dll) dll_chain = SLIST_HEAD_INITIALIZER(foo); 
     65SLIST_HEAD(dll_chain, dll) dll_chain = SLIST_HEAD_INITIALIZER(foo);
    6666
    6767#ifdef _KERNEL
     
    123123#define _handler_chain_init() ;
    124124#define _handler_chain_destroy() ;
    125 #endif 
     125#endif
    126126
    127127void
     
    146146    struct proto_handler *b = NULL;
    147147
    148     LIBALIAS_WLOCK_ASSERT();   
     148    LIBALIAS_WLOCK_ASSERT();
    149149    LIST_FOREACH(b, &handler_chain, entries) {
    150         if ((b->pri == p->pri) && 
     150        if ((b->pri == p->pri) &&
    151151            (b->dir == p->dir) &&
    152152            (b->proto == p->proto))
     
    174174    struct proto_handler *b, *b_tmp;;
    175175
    176     LIBALIAS_WLOCK_ASSERT();   
     176    LIBALIAS_WLOCK_ASSERT();
    177177    LIST_FOREACH_SAFE(b, &handler_chain, entries, b_tmp) {
    178178        if (b == p) {
     
    195195    LIBALIAS_WLOCK();
    196196    for (i=0; 1; i++) {
    197         if (*((int *)&_p[i]) == EOH) 
     197        if (*((int *)&_p[i]) == EOH)
    198198            break;
    199199#ifdef VBOX
     
    202202        error = _attach_handler(&_p[i]);
    203203#endif
    204         if (error != 0) 
     204        if (error != 0)
    205205            break;
    206206    }
     
    220220    LIBALIAS_WLOCK();
    221221    for (i=0; 1; i++) {
    222         if (*((int *)&_p[i]) == EOH) 
     222        if (*((int *)&_p[i]) == EOH)
    223223            break;
    224224#ifdef VBOX
     
    227227        error = _detach_handler(&_p[i]);
    228228#endif
    229         if (error != 0) 
     229        if (error != 0)
    230230            break;
    231231    }
     
    254254
    255255int
    256 find_handler(int8_t dir, int8_t proto, struct libalias *la, struct ip *pip, 
     256find_handler(int8_t dir, int8_t proto, struct libalias *la, struct ip *pip,
    257257         struct alias_data *ad)
    258258{
     
    264264
    265265    LIBALIAS_RLOCK();
    266    
     266
    267267    LIST_FOREACH(p, &handler_chain, entries) {
    268268        if ((p->dir & dir) && (p->proto & proto))
     
    273273    }
    274274    LIBALIAS_RUNLOCK();
    275     return (error); 
     275    return (error);
    276276}
    277277
     
    283283#endif
    284284{
    285    
    286     return (LIST_FIRST(&handler_chain));   
     285
     286    return (LIST_FIRST(&handler_chain));
    287287}
    288288
     
    310310    SLIST_FOREACH_SAFE(b, &dll_chain, next, b_tmp)
    311311        if (!strncmp(b->name, p, DLL_LEN)) {
    312             SLIST_REMOVE(&dll_chain, b, dll, next); 
     312            SLIST_REMOVE(&dll_chain, b, dll, next);
    313313            error = b;
    314314            break;
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