Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 202913
b: refs/heads/master
c: 0b5c25e
h: refs/heads/master
i:
  202911: f5c3e35
v: v3
  • Loading branch information
Ben Hutchings authored and David S. Miller committed Jun 13, 2010
1 parent 9e647a8 commit de1b547
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8ccef431a2994bb8a722d0fbc6c6da2bdbf86834
refs/heads/master: 0b5c25e8ac3a60bd01a52ca7405ba96aec8c16be
14 changes: 7 additions & 7 deletions trunk/net/irda/irttp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1853,23 +1853,23 @@ static int irttp_seq_show(struct seq_file *seq, void *v)
self->remote_credit);
seq_printf(seq, "send credit: %d\n",
self->send_credit);
seq_printf(seq, " tx packets: %ld, ",
seq_printf(seq, " tx packets: %lu, ",
self->stats.tx_packets);
seq_printf(seq, "rx packets: %ld, ",
seq_printf(seq, "rx packets: %lu, ",
self->stats.rx_packets);
seq_printf(seq, "tx_queue len: %d ",
seq_printf(seq, "tx_queue len: %u ",
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));
seq_printf(seq, " tx_sdu_busy: %s, ",
self->tx_sdu_busy? "TRUE":"FALSE");
seq_printf(seq, "rx_sdu_busy: %s\n",
self->rx_sdu_busy? "TRUE":"FALSE");
seq_printf(seq, " max_seg_size: %d, ",
seq_printf(seq, " max_seg_size: %u, ",
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);
seq_printf(seq, "rx_max_sdu_size: %d\n",
seq_printf(seq, "rx_max_sdu_size: %u\n",
self->rx_max_sdu_size);

seq_printf(seq, " Used by (%s)\n\n",
Expand Down

0 comments on commit de1b547

Please sign in to comment.