Ignore:
File:
1 edited

Legend:

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

    ra1a101d rf0a2720  
    6969            frame->size);
    7070
    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);
     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);
    7475
    7576        *rdata = data;
     
    8384        eth_header_t *hdr;
    8485
    85         log_msg(LOG_DEFAULT, LVL_DEBUG, "eth_pdu_decode()");
     86        log_msg(LVL_DEBUG, "eth_pdu_decode()");
    8687
    8788        if (size < sizeof(eth_header_t)) {
    88                 log_msg(LOG_DEFAULT, LVL_DEBUG, "PDU too short (%zu)", size);
     89                log_msg(LVL_DEBUG, "PDU too short (%zu)", size);
    8990                return EINVAL;
    9091        }
     
    104105            frame->size);
    105106
    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);
     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);
    109111
    110112        return EOK;
     
    143145        uint16_t fopcode;
    144146
    145         log_msg(LOG_DEFAULT, LVL_DEBUG, "arp_pdu_encode()");
     147        log_msg(LVL_DEBUG, "arp_pdu_encode()");
    146148
    147149        size = sizeof(arp_eth_packet_fmt_t);
     
    183185        arp_eth_packet_fmt_t *pfmt;
    184186
    185         log_msg(LOG_DEFAULT, LVL_DEBUG, "arp_pdu_decode()");
     187        log_msg(LVL_DEBUG, "arp_pdu_decode()");
    186188
    187189        if (size < sizeof(arp_eth_packet_fmt_t)) {
    188                 log_msg(LOG_DEFAULT, LVL_DEBUG, "ARP PDU too short (%zu)", size);
     190                log_msg(LVL_DEBUG, "ARP PDU too short (%zu)", size);
    189191                return EINVAL;
    190192        }
     
    193195
    194196        if (uint16_t_be2host(pfmt->hw_addr_space) != AHRD_ETHERNET) {
    195                 log_msg(LOG_DEFAULT, LVL_DEBUG, "HW address space != %u (%" PRIu16 ")",
     197                log_msg(LVL_DEBUG, "HW address space != %u (%" PRIu16 ")",
    196198                    AHRD_ETHERNET, uint16_t_be2host(pfmt->hw_addr_space));
    197199                return EINVAL;
     
    199201
    200202        if (uint16_t_be2host(pfmt->proto_addr_space) != 0x0800) {
    201                 log_msg(LOG_DEFAULT, LVL_DEBUG, "Proto address space != %u (%" PRIu16 ")",
     203                log_msg(LVL_DEBUG, "Proto address space != %u (%" PRIu16 ")",
    202204                    ETYPE_IP, uint16_t_be2host(pfmt->proto_addr_space));
    203205                return EINVAL;
     
    205207
    206208        if (pfmt->hw_addr_size != ETH_ADDR_SIZE) {
    207                 log_msg(LOG_DEFAULT, LVL_DEBUG, "HW address size != %zu (%zu)",
     209                log_msg(LVL_DEBUG, "HW address size != %zu (%zu)",
    208210                    (size_t)ETH_ADDR_SIZE, (size_t)pfmt->hw_addr_size);
    209211                return EINVAL;
     
    211213
    212214        if (pfmt->proto_addr_size != IPV4_ADDR_SIZE) {
    213                 log_msg(LOG_DEFAULT, LVL_DEBUG, "Proto address size != %zu (%zu)",
     215                log_msg(LVL_DEBUG, "Proto address size != %zu (%zu)",
    214216                    (size_t)IPV4_ADDR_SIZE, (size_t)pfmt->proto_addr_size);
    215217                return EINVAL;
     
    220222        case AOP_REPLY: packet->opcode = aop_reply; break;
    221223        default:
    222                 log_msg(LOG_DEFAULT, LVL_DEBUG, "Invalid ARP opcode (%" PRIu16 ")",
     224                log_msg(LVL_DEBUG, "Invalid ARP opcode (%" PRIu16 ")",
    223225                    uint16_t_be2host(pfmt->opcode));
    224226                return EINVAL;
     
    231233        packet->target_proto_addr.ipv4 =
    232234            uint32_t_be2host(pfmt->target_proto_addr);
    233         log_msg(LOG_DEFAULT, LVL_DEBUG, "packet->tpa = %x\n", pfmt->target_proto_addr);
     235        log_msg(LVL_DEBUG, "packet->tpa = %x\n", pfmt->target_proto_addr);
    234236
    235237        return EOK;
Note: See TracChangeset for help on using the changeset viewer.