Ignore:
File:
1 edited

Legend:

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

    rf0a2720 ra1a101d  
    6969            frame->size);
    7070
    71         log_msg(LVL_DEBUG, "Encoding Ethernet frame "
    72             "src=%" PRIx64 " dest=%" PRIx64 " etype=%x",
    73             frame->src.addr, frame->dest.addr, frame->etype_len);
    74         log_msg(LVL_DEBUG, "Encoded Ethernet frame (%zu bytes)", size);
     71        log_msg(LOG_DEFAULT, LVL_DEBUG, "Encoding Ethernet frame src=%llx dest=%llx etype=%x",
     72            frame->src, frame->dest, frame->etype_len);
     73        log_msg(LOG_DEFAULT, LVL_DEBUG, "Encoded Ethernet frame (%zu bytes)", size);
    7574
    7675        *rdata = data;
     
    8483        eth_header_t *hdr;
    8584
    86         log_msg(LVL_DEBUG, "eth_pdu_decode()");
     85        log_msg(LOG_DEFAULT, LVL_DEBUG, "eth_pdu_decode()");
    8786
    8887        if (size < sizeof(eth_header_t)) {
    89                 log_msg(LVL_DEBUG, "PDU too short (%zu)", size);
     88                log_msg(LOG_DEFAULT, LVL_DEBUG, "PDU too short (%zu)", size);
    9089                return EINVAL;
    9190        }
     
    105104            frame->size);
    106105
    107         log_msg(LVL_DEBUG, "Decoding Ethernet frame "
    108             "src=%" PRIx64 " dest=%" PRIx64 " etype=%x",
    109             frame->src.addr, frame->dest.addr, frame->etype_len);
    110         log_msg(LVL_DEBUG, "Decoded Ethernet frame payload (%zu bytes)", frame->size);
     106        log_msg(LOG_DEFAULT, LVL_DEBUG, "Decoding Ethernet frame src=%llx dest=%llx etype=%x",
     107            frame->src, frame->dest, frame->etype_len);
     108        log_msg(LOG_DEFAULT, LVL_DEBUG, "Decoded Ethernet frame payload (%zu bytes)", frame->size);
    111109
    112110        return EOK;
     
    145143        uint16_t fopcode;
    146144
    147         log_msg(LVL_DEBUG, "arp_pdu_encode()");
     145        log_msg(LOG_DEFAULT, LVL_DEBUG, "arp_pdu_encode()");
    148146
    149147        size = sizeof(arp_eth_packet_fmt_t);
     
    185183        arp_eth_packet_fmt_t *pfmt;
    186184
    187         log_msg(LVL_DEBUG, "arp_pdu_decode()");
     185        log_msg(LOG_DEFAULT, LVL_DEBUG, "arp_pdu_decode()");
    188186
    189187        if (size < sizeof(arp_eth_packet_fmt_t)) {
    190                 log_msg(LVL_DEBUG, "ARP PDU too short (%zu)", size);
     188                log_msg(LOG_DEFAULT, LVL_DEBUG, "ARP PDU too short (%zu)", size);
    191189                return EINVAL;
    192190        }
     
    195193
    196194        if (uint16_t_be2host(pfmt->hw_addr_space) != AHRD_ETHERNET) {
    197                 log_msg(LVL_DEBUG, "HW address space != %u (%" PRIu16 ")",
     195                log_msg(LOG_DEFAULT, LVL_DEBUG, "HW address space != %u (%" PRIu16 ")",
    198196                    AHRD_ETHERNET, uint16_t_be2host(pfmt->hw_addr_space));
    199197                return EINVAL;
     
    201199
    202200        if (uint16_t_be2host(pfmt->proto_addr_space) != 0x0800) {
    203                 log_msg(LVL_DEBUG, "Proto address space != %u (%" PRIu16 ")",
     201                log_msg(LOG_DEFAULT, LVL_DEBUG, "Proto address space != %u (%" PRIu16 ")",
    204202                    ETYPE_IP, uint16_t_be2host(pfmt->proto_addr_space));
    205203                return EINVAL;
     
    207205
    208206        if (pfmt->hw_addr_size != ETH_ADDR_SIZE) {
    209                 log_msg(LVL_DEBUG, "HW address size != %zu (%zu)",
     207                log_msg(LOG_DEFAULT, LVL_DEBUG, "HW address size != %zu (%zu)",
    210208                    (size_t)ETH_ADDR_SIZE, (size_t)pfmt->hw_addr_size);
    211209                return EINVAL;
     
    213211
    214212        if (pfmt->proto_addr_size != IPV4_ADDR_SIZE) {
    215                 log_msg(LVL_DEBUG, "Proto address size != %zu (%zu)",
     213                log_msg(LOG_DEFAULT, LVL_DEBUG, "Proto address size != %zu (%zu)",
    216214                    (size_t)IPV4_ADDR_SIZE, (size_t)pfmt->proto_addr_size);
    217215                return EINVAL;
     
    222220        case AOP_REPLY: packet->opcode = aop_reply; break;
    223221        default:
    224                 log_msg(LVL_DEBUG, "Invalid ARP opcode (%" PRIu16 ")",
     222                log_msg(LOG_DEFAULT, LVL_DEBUG, "Invalid ARP opcode (%" PRIu16 ")",
    225223                    uint16_t_be2host(pfmt->opcode));
    226224                return EINVAL;
     
    233231        packet->target_proto_addr.ipv4 =
    234232            uint32_t_be2host(pfmt->target_proto_addr);
    235         log_msg(LVL_DEBUG, "packet->tpa = %x\n", pfmt->target_proto_addr);
     233        log_msg(LOG_DEFAULT, LVL_DEBUG, "packet->tpa = %x\n", pfmt->target_proto_addr);
    236234
    237235        return EOK;
Note: See TracChangeset for help on using the changeset viewer.