Lines Matching refs:temp_64

3250 	u64 temp_64;  in pma_get_ib_portcounters()  local
3275 temp_64 = be64_to_cpu(rsp.port_rcv_errors); in pma_get_ib_portcounters()
3276 if (temp_64 > 0xFFFFUL) in pma_get_ib_portcounters()
3279 p->port_rcv_errors = cpu_to_be16((u16)temp_64); in pma_get_ib_portcounters()
3281 temp_64 = be64_to_cpu(rsp.port_rcv_remote_physical_errors); in pma_get_ib_portcounters()
3282 if (temp_64 > 0xFFFFUL) in pma_get_ib_portcounters()
3285 p->port_rcv_remphys_errors = cpu_to_be16((u16)temp_64); in pma_get_ib_portcounters()
3287 temp_64 = be64_to_cpu(rsp.port_rcv_switch_relay_errors); in pma_get_ib_portcounters()
3288 p->port_rcv_switch_relay_errors = cpu_to_be16((u16)temp_64); in pma_get_ib_portcounters()
3290 temp_64 = be64_to_cpu(rsp.port_xmit_discards); in pma_get_ib_portcounters()
3291 if (temp_64 > 0xFFFFUL) in pma_get_ib_portcounters()
3294 p->port_xmit_discards = cpu_to_be16((u16)temp_64); in pma_get_ib_portcounters()
3296 temp_64 = be64_to_cpu(rsp.port_xmit_constraint_errors); in pma_get_ib_portcounters()
3297 if (temp_64 > 0xFFUL) in pma_get_ib_portcounters()
3300 p->port_xmit_constraint_errors = (u8)temp_64; in pma_get_ib_portcounters()
3302 temp_64 = be64_to_cpu(rsp.port_rcv_constraint_errors); in pma_get_ib_portcounters()
3303 if (temp_64 > 0xFFUL) in pma_get_ib_portcounters()
3306 p->port_rcv_constraint_errors = (u8)temp_64; in pma_get_ib_portcounters()
3309 temp_64 = be64_to_cpu(rsp.local_link_integrity_errors); in pma_get_ib_portcounters()
3310 if (temp_64 > 0xFUL) in pma_get_ib_portcounters()
3311 temp_64 = 0xFUL; in pma_get_ib_portcounters()
3313 temp_link_overrun_errors = temp_64 << 4; in pma_get_ib_portcounters()
3315 temp_64 = be64_to_cpu(rsp.excessive_buffer_overruns); in pma_get_ib_portcounters()
3316 if (temp_64 > 0xFUL) in pma_get_ib_portcounters()
3317 temp_64 = 0xFUL; in pma_get_ib_portcounters()
3318 temp_link_overrun_errors |= temp_64; in pma_get_ib_portcounters()