diff options
Diffstat (limited to 'net')
| -rw-r--r-- | net/ipv4/udp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index 7ea1b67b6de1..1704c1474ea1 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c | |||
| @@ -1556,14 +1556,14 @@ static void *udp_seq_start(struct seq_file *seq, loff_t *pos) | |||
| 1556 | __acquires(udp_hash_lock) | 1556 | __acquires(udp_hash_lock) |
| 1557 | { | 1557 | { |
| 1558 | read_lock(&udp_hash_lock); | 1558 | read_lock(&udp_hash_lock); |
| 1559 | return *pos ? udp_get_idx(seq, *pos-1) : (void *)1; | 1559 | return *pos ? udp_get_idx(seq, *pos-1) : SEQ_START_TOKEN; |
| 1560 | } | 1560 | } |
| 1561 | 1561 | ||
| 1562 | static void *udp_seq_next(struct seq_file *seq, void *v, loff_t *pos) | 1562 | static void *udp_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 1563 | { | 1563 | { |
| 1564 | struct sock *sk; | 1564 | struct sock *sk; |
| 1565 | 1565 | ||
| 1566 | if (v == (void *)1) | 1566 | if (v == SEQ_START_TOKEN) |
| 1567 | sk = udp_get_idx(seq, 0); | 1567 | sk = udp_get_idx(seq, 0); |
| 1568 | else | 1568 | else |
| 1569 | sk = udp_get_next(seq, v); | 1569 | sk = udp_get_next(seq, v); |
