aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/ipv6/ip6_flowlabel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv6/ip6_flowlabel.c b/net/ipv6/ip6_flowlabel.c
index 1d672b0547f2..062e526a668c 100644
--- a/net/ipv6/ip6_flowlabel.c
+++ b/net/ipv6/ip6_flowlabel.c
@@ -587,6 +587,8 @@ static struct ip6_flowlabel *ip6fl_get_next(struct seq_file *seq, struct ip6_flo
587 while (!fl) { 587 while (!fl) {
588 if (++state->bucket <= FL_HASH_MASK) 588 if (++state->bucket <= FL_HASH_MASK)
589 fl = fl_ht[state->bucket]; 589 fl = fl_ht[state->bucket];
590 else
591 break;
590 } 592 }
591 return fl; 593 return fl;
592} 594}