cxgb4: Added tls stats prints.
authorDevulapally Shiva Krishna <shiva@chelsio.com>
Thu, 6 Feb 2020 08:34:43 +0000 (14:04 +0530)
committerDavid S. Miller <davem@davemloft.net>
Thu, 6 Feb 2020 10:26:49 +0000 (11:26 +0100)
Added debugfs entry to show the tls stats.

Signed-off-by: Devulapally Shiva Krishna <shiva@chelsio.com>
Signed-off-by: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/chelsio/cxgb4/cxgb4_debugfs.c

index 9d1f2f8..de30d61 100644 (file)
@@ -3403,6 +3403,13 @@ static int chcr_stats_show(struct seq_file *seq, void *v)
                   atomic_read(&adap->chcr_stats.fallback));
        seq_printf(seq, "IPSec PDU: %10u\n",
                   atomic_read(&adap->chcr_stats.ipsec_cnt));
+       seq_printf(seq, "TLS PDU Tx: %10u\n",
+                  atomic_read(&adap->chcr_stats.tls_pdu_tx));
+       seq_printf(seq, "TLS PDU Rx: %10u\n",
+                  atomic_read(&adap->chcr_stats.tls_pdu_rx));
+       seq_printf(seq, "TLS Keys (DDR) Count: %10u\n",
+                  atomic_read(&adap->chcr_stats.tls_key));
+
        return 0;
 }
 DEFINE_SHOW_ATTRIBUTE(chcr_stats);