aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/net/ipv4/inet_fragment.c
diff options
context:
space:
mode:
authorYu Zhe <yuzhe@nfschina.com>2022-04-28 19:14:04 -0700
committerDavid S. Miller <davem@davemloft.net>2022-04-30 15:12:58 +0100
commit2e47eece158a7e5d2205be42e9c44b87302de1a7 (patch)
tree085d31da7d418c0ad743006562d3af304876130b /net/ipv4/inet_fragment.c
parenteth: remove remaining copies of the NAPI_POLL_WEIGHT define (diff)
downloadwireguard-linux-2e47eece158a7e5d2205be42e9c44b87302de1a7.tar.xz
wireguard-linux-2e47eece158a7e5d2205be42e9c44b87302de1a7.zip
ipv4: remove unnecessary type castings
remove unnecessary void* type castings. Signed-off-by: Yu Zhe <yuzhe@nfschina.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_fragment.c')
-rw-r--r--net/ipv4/inet_fragment.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/inet_fragment.c b/net/ipv4/inet_fragment.c
index 63948f6aeca0..c9f9ac5013a7 100644
--- a/net/ipv4/inet_fragment.c
+++ b/net/ipv4/inet_fragment.c
@@ -510,7 +510,7 @@ EXPORT_SYMBOL(inet_frag_reasm_prepare);
void inet_frag_reasm_finish(struct inet_frag_queue *q, struct sk_buff *head,
void *reasm_data, bool try_coalesce)
{
- struct sk_buff **nextp = (struct sk_buff **)reasm_data;
+ struct sk_buff **nextp = reasm_data;
struct rb_node *rbn;
struct sk_buff *fp;
int sum_truesize;