[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <521268CE.7040508@cogentembedded.com>
Date: Mon, 19 Aug 2013 22:49:50 +0400
From: Sergei Shtylyov <sergei.shtylyov@...entembedded.com>
To: Amir Vadai <amirv@...lanox.com>
CC: "David S. Miller" <davem@...emloft.net>, netdev@...r.kernel.org
Subject: Re: [PATCH net-next 2/3] net/mlx4_en: Notify user when TX ring in
error state
Hello.
On 08/19/2013 10:42 AM, Amir Vadai wrote:
> When hardware gets into error state, must notify user about it.
> When QP in error state no traffic will be tx'ed from the attached
> tx_ring.
> Driver should know how to recover from this unexpected state. I will send later
> on the recovery flow, but having the print shouldn't be delayed.
> Signed-off-by: Amir Vadai <amirv@...lanox.com>
> ---
> drivers/net/ethernet/mellanox/mlx4/en_tx.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
> diff --git a/drivers/net/ethernet/mellanox/mlx4/en_tx.c b/drivers/net/ethernet/mellanox/mlx4/en_tx.c
> index 6dcca98..157bcd1 100644
> --- a/drivers/net/ethernet/mellanox/mlx4/en_tx.c
> +++ b/drivers/net/ethernet/mellanox/mlx4/en_tx.c
> @@ -362,6 +362,14 @@ static void mlx4_en_process_tx_cq(struct net_device *dev, struct mlx4_en_cq *cq)
> */
> rmb();
>
> + if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) ==
> + MLX4_CQE_OPCODE_ERROR)) {
> + struct mlx4_err_cqe *cqe_err = (struct mlx4_err_cqe *)cqe;
Empty line wouldn't hurt here, after declaration.
> + en_err(priv, "CQE error - vendor syndrom: 0x%x syndrom: 0x%x\n",
s/syndrom/syndrome/ as below?
> + cqe_err->vendor_err_syndrome,
> + cqe_err->syndrome);
> + }
> +
WBR, Sergei
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists