Changeset fedac2f in mainline for uspace/srv/net/ethip/arp.c


Ignore:
Timestamp:
2012-09-16T11:27:35Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
289fa65
Parents:
8930624 (diff), 00b4a68 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/ethip/arp.c

    r8930624 rfedac2f  
    5959        ethip_link_addr_t *laddr;
    6060
    61         log_msg(LVL_DEBUG, "arp_received()");
     61        log_msg(LOG_DEFAULT, LVL_DEBUG, "arp_received()");
    6262
    6363        rc = arp_pdu_decode(frame->data, frame->size, &packet);
     
    6565                return;
    6666
    67         log_msg(LVL_DEBUG, "ARP PDU decoded, opcode=%d, tpa=%x",
     67        log_msg(LOG_DEFAULT, LVL_DEBUG, "ARP PDU decoded, opcode=%d, tpa=%x",
    6868            packet.opcode, packet.target_proto_addr.ipv4);
    6969
    7070        laddr = ethip_nic_addr_find(nic, &packet.target_proto_addr);
    7171        if (laddr != NULL) {
    72                 log_msg(LVL_DEBUG, "Request/reply to my address");
     72                log_msg(LOG_DEFAULT, LVL_DEBUG, "Request/reply to my address");
    7373
    7474                (void) atrans_add(&packet.sender_proto_addr,
     
    122122        size_t fsize;
    123123
    124         log_msg(LVL_DEBUG, "arp_send_packet()");
     124        log_msg(LOG_DEFAULT, LVL_DEBUG, "arp_send_packet()");
    125125
    126126        rc = arp_pdu_encode(packet, &pdata, &psize);
Note: See TracChangeset for help on using the changeset viewer.