diff options
author | James Chapman <jchapman@katalix.com> | 2024-07-29 16:38:01 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2024-07-31 09:25:12 +0100 |
commit | 4ff8863419cdc40f2c6e1ad99436e375b9b86b68 (patch) | |
tree | 53190fec0cfc5c4f65a6ee0d9fe74acb8fff0faa | |
parent | 2e7a280692bf43940728b7f6ca6a52ebf641a6f5 (diff) | |
download | lwn-4ff8863419cdc40f2c6e1ad99436e375b9b86b68.tar.gz lwn-4ff8863419cdc40f2c6e1ad99436e375b9b86b68.zip |
ipv4: export ip_flush_pending_frames
To avoid protocol modules implementing their own, export
ip_flush_pending_frames.
Signed-off-by: James Chapman <jchapman@katalix.com>
Signed-off-by: Tom Parkin <tparkin@katalix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv4/ip_output.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c index b90d0f78ac80..8a10a7c67834 100644 --- a/net/ipv4/ip_output.c +++ b/net/ipv4/ip_output.c @@ -1534,6 +1534,7 @@ void ip_flush_pending_frames(struct sock *sk) { __ip_flush_pending_frames(sk, &sk->sk_write_queue, &inet_sk(sk)->cork.base); } +EXPORT_SYMBOL_GPL(ip_flush_pending_frames); struct sk_buff *ip_make_skb(struct sock *sk, struct flowi4 *fl4, |