Skip to content

Instantly share code, notes, and snippets.

@dch
Created June 12, 2024 08:55
Show Gist options
  • Save dch/1bfa5563cca1bc37f8f78da1d48bdbea to your computer and use it in GitHub Desktop.
Save dch/1bfa5563cca1bc37f8f78da1d48bdbea to your computer and use it in GitHub Desktop.
mlx5
[12324] mce0: ERR: mlx5e_dump_err_cqe:75:(pid 12): Error CQE on CQN 0x22, CI 0x37d, QN 0xc5, OPCODE 0xd, SYNDROME 0x2, VENDOR SYNDROME 0x68
[12324] [0] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[12324] [0x10] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[12324] [0x20] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[12324] [0x30] 00 00 00 00 04 10 68 02 65 00 00 c5 03 80 0e d2
[15596] mce0: ERR: mlx5e_dump_err_cqe:75:(pid 12): Error CQE on CQN 0x1b, CI 0x100, QN 0xa7, OPCODE 0xe, SYNDROME 0x4, VENDOR SYNDROME 0x32
[15596] [0] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[15596] [0x10] 00 00 00 00 00 00 e2 7e 06 00 00 00 00 00 00 00
[15596] [0x20] 00 00 00 00 00 00 92 32 00 00 00 00 00 00 01 f5
[15596] [0x30] 00 00 32 a4 92 03 32 04 00 ff ff fe 01 00 1e e0
  1. Error CQE on CQN 0x22, CI 0x37d, QN 0xc5, OPCODE 0xd, SYNDROME 0x2, VENDOR SYNDROME 0x68

    • CQN (Completion Queue Number): 0x22
    • CI (Consumer Index): 0x37d
    • QN (Queue Number): 0xc5
    • OPCODE: 0xd
    • SYNDROME: 0x2
    • VENDOR SYNDROME: 0x68
  2. Error CQE on CQN 0x1b, CI 0x100, QN 0xa7, OPCODE 0xe, SYNDROME 0x4, VENDOR SYNDROME 0x32

    • CQN (Completion Queue Number): 0x1b
    • CI (Consumer Index): 0x100
    • QN (Queue Number): 0xa7
    • OPCODE: 0xe
    • SYNDROME: 0x4
    • VENDOR SYNDROME: 0x32

These errors indicate that there were issues with the Completion Queue Entries (CQEs) on the specified Completion Queues (CQs). The OPCODE, SYNDROME, and VENDOR SYNDROME provide additional information about the nature of the error.

The OPCODE represents the type of operation that encountered the error. The SYNDROME and VENDOR SYNDROME are error codes that provide more specific details about the error condition.

To determine the exact cause of the error, you would need to refer to the Mellanox documentation or contact their support for further assistance. They can provide more information based on the specific error codes and the context in which the errors occurred.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment