mirror of
https://github.com/torvalds/linux.git
synced 2026-05-21 13:27:57 +02:00
gve: fix unmatched u64_stats_update_end()
The u64_stats_update_end() call is supposed to be inside the curly
braces so it pairs with the u64_stats_update_begin().
Fixes: 37149e9374 ("gve: Implement packet continuation for RX.")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
68eabc3481
commit
721111b1b2
|
|
@ -500,7 +500,8 @@ static struct sk_buff *gve_rx_skb(struct gve_priv *priv, struct gve_rx_ring *rx,
|
|||
rx->rx_copied_pkt++;
|
||||
rx->rx_frag_copy_cnt++;
|
||||
rx->rx_copybreak_pkt++;
|
||||
} u64_stats_update_end(&rx->statss);
|
||||
u64_stats_update_end(&rx->statss);
|
||||
}
|
||||
} else {
|
||||
if (rx->data.raw_addressing) {
|
||||
int recycle = gve_rx_can_recycle_buffer(page_info);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user