Commit 0b5c25e8 authored by Ben Hutchings's avatar Ben Hutchings Committed by David S. Miller

irttp: Print device parameters and statistics as unsigned

Device statistics have type unsigned long and several of the
device-specific parameters printed here have type __u32.
Signed-off-by: default avatarBen Hutchings <bhutchings@solarflare.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8ccef431
...@@ -1853,23 +1853,23 @@ static int irttp_seq_show(struct seq_file *seq, void *v) ...@@ -1853,23 +1853,23 @@ static int irttp_seq_show(struct seq_file *seq, void *v)
self->remote_credit); self->remote_credit);
seq_printf(seq, "send credit: %d\n", seq_printf(seq, "send credit: %d\n",
self->send_credit); self->send_credit);
seq_printf(seq, " tx packets: %ld, ", seq_printf(seq, " tx packets: %lu, ",
self->stats.tx_packets); self->stats.tx_packets);
seq_printf(seq, "rx packets: %ld, ", seq_printf(seq, "rx packets: %lu, ",
self->stats.rx_packets); self->stats.rx_packets);
seq_printf(seq, "tx_queue len: %d ", seq_printf(seq, "tx_queue len: %u ",
skb_queue_len(&self->tx_queue)); skb_queue_len(&self->tx_queue));
seq_printf(seq, "rx_queue len: %d\n", seq_printf(seq, "rx_queue len: %u\n",
skb_queue_len(&self->rx_queue)); skb_queue_len(&self->rx_queue));
seq_printf(seq, " tx_sdu_busy: %s, ", seq_printf(seq, " tx_sdu_busy: %s, ",
self->tx_sdu_busy? "TRUE":"FALSE"); self->tx_sdu_busy? "TRUE":"FALSE");
seq_printf(seq, "rx_sdu_busy: %s\n", seq_printf(seq, "rx_sdu_busy: %s\n",
self->rx_sdu_busy? "TRUE":"FALSE"); self->rx_sdu_busy? "TRUE":"FALSE");
seq_printf(seq, " max_seg_size: %d, ", seq_printf(seq, " max_seg_size: %u, ",
self->max_seg_size); self->max_seg_size);
seq_printf(seq, "tx_max_sdu_size: %d, ", seq_printf(seq, "tx_max_sdu_size: %u, ",
self->tx_max_sdu_size); self->tx_max_sdu_size);
seq_printf(seq, "rx_max_sdu_size: %d\n", seq_printf(seq, "rx_max_sdu_size: %u\n",
self->rx_max_sdu_size); self->rx_max_sdu_size);
seq_printf(seq, " Used by (%s)\n\n", seq_printf(seq, " Used by (%s)\n\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment