Skip to content

Commit 75e8d74

Browse files
committed
DLPX-96594 fix linux-kernel updates to 6.17: export tcp symbols needed by connstat
PR URL: https://www.github.com/delphix/linux-kernel-aws/pull/70
1 parent fb5e82b commit 75e8d74

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

net/ipv4/tcp_ipv4.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2831,7 +2831,7 @@ void *tcp_seq_start(struct seq_file *seq, loff_t *pos)
28312831
st->last_pos = *pos;
28322832
return rc;
28332833
}
2834-
EXPORT_IPV6_MOD(tcp_seq_start);
2834+
EXPORT_SYMBOL(tcp_seq_start);
28352835

28362836
void *tcp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
28372837
{
@@ -2862,7 +2862,7 @@ void *tcp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
28622862
st->last_pos = *pos;
28632863
return rc;
28642864
}
2865-
EXPORT_IPV6_MOD(tcp_seq_next);
2865+
EXPORT_SYMBOL(tcp_seq_next);
28662866

28672867
void tcp_seq_stop(struct seq_file *seq, void *v)
28682868
{
@@ -2880,7 +2880,7 @@ void tcp_seq_stop(struct seq_file *seq, void *v)
28802880
break;
28812881
}
28822882
}
2883-
EXPORT_IPV6_MOD(tcp_seq_stop);
2883+
EXPORT_SYMBOL(tcp_seq_stop);
28842884

28852885
static void get_openreq4(const struct request_sock *req,
28862886
struct seq_file *f, int i)

0 commit comments

Comments
 (0)