|
@@ -175,7 +175,7 @@ static int sctp_print_tuple(struct seq_file *s,
|
|
}
|
|
}
|
|
|
|
|
|
/* Print out the private part of the conntrack. */
|
|
/* Print out the private part of the conntrack. */
|
|
-static int sctp_print_conntrack(struct seq_file *s, struct nf_conn *ct)
|
|
|
|
|
|
+static void sctp_print_conntrack(struct seq_file *s, struct nf_conn *ct)
|
|
{
|
|
{
|
|
enum sctp_conntrack state;
|
|
enum sctp_conntrack state;
|
|
|
|
|
|
@@ -183,7 +183,7 @@ static int sctp_print_conntrack(struct seq_file *s, struct nf_conn *ct)
|
|
state = ct->proto.sctp.state;
|
|
state = ct->proto.sctp.state;
|
|
spin_unlock_bh(&ct->lock);
|
|
spin_unlock_bh(&ct->lock);
|
|
|
|
|
|
- return seq_printf(s, "%s ", sctp_conntrack_names[state]);
|
|
|
|
|
|
+ seq_printf(s, "%s ", sctp_conntrack_names[state]);
|
|
}
|
|
}
|
|
|
|
|
|
#define for_each_sctp_chunk(skb, sch, _sch, offset, dataoff, count) \
|
|
#define for_each_sctp_chunk(skb, sch, _sch, offset, dataoff, count) \
|