Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/netif/lo/lo.c

    rfb04cba8 r2e236901  
    6464netif_globals_t netif_globals;
    6565
    66 int netif_specific_message(ipc_callid_t callid, ipc_call_t *call,
     66int
     67netif_specific_message(ipc_callid_t callid, ipc_call_t *call,
    6768    ipc_call_t *answer, int *answer_count)
    6869{
     
    7475        if (!address)
    7576                return EBADMEM;
    76 
    7777        address->value = str_dup(DEFAULT_ADDR);
    7878        address->length = DEFAULT_ADDR_LEN;
    79 
    8079        return EOK;
    8180}
     
    8887        if (!stats)
    8988                return EBADMEM;
    90 
    9189        rc = find_device(device_id, &device);
    9290        if (rc != EOK)
    9391                return rc;
    94 
    9592        memcpy(stats, (device_stats_ref) device->specific,
    9693            sizeof(device_stats_t));
    97 
    9894        return EOK;
    9995}
     
    138134        if (!*device)
    139135                return ENOMEM;
    140 
    141136        (*device)->specific = (device_stats_t *) malloc(sizeof(device_stats_t));
    142137        if (!(*device)->specific) {
     
    144139                return ENOMEM;
    145140        }
    146 
    147141        null_device_stats((device_stats_ref) (*device)->specific);
    148142        (*device)->device_id = device_id;
     
    151145        index = netif_device_map_add(&netif_globals.device_map,
    152146            (*device)->device_id, *device);
    153 
    154147        if (index < 0) {
    155148                free(*device);
     
    174167        int rc;
    175168
    176         /* Create a new device */
     169        // create a new device
    177170        rc = create(device_id, &device);
    178171        if (rc != EOK)
    179172                return rc;
    180 
    181         /* Print the settings */
     173        // print the settings
    182174        printf("%s: Device created (id: %d)\n", NAME, device->device_id);
    183 
    184175        return EOK;
    185176}
     
    196187        if (rc != EOK)
    197188                return EOK;
    198 
    199189        if (device->state != NETIF_ACTIVE) {
    200190                netif_pq_release(packet_get_id(packet));
    201191                return EFORWARD;
    202192        }
    203 
    204193        next = packet;
    205194        do {
     
    211200                next = pq_next(next);
    212201        } while(next);
    213 
    214202        phone = device->nil_phone;
    215203        fibril_rwlock_write_unlock(&netif_globals.lock);
Note: See TracChangeset for help on using the changeset viewer.