mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-22 23:04:43 +00:00
netpoll: take rcu_read_lock_bh() in netpoll_rx()
In __netpoll_rx(), it dereferences ->npinfo without rcu_dereference_bh(), this patch fixes it by using the 'npinfo' passed from netpoll_rx() where it is already dereferenced with rcu_dereference_bh(). Cc: "David S. Miller" <davem@davemloft.net> Signed-off-by: Cong Wang <amwang@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3335f0ca13
commit
57c5d46191
2 changed files with 3 additions and 4 deletions
|
@ -52,7 +52,7 @@ void netpoll_set_trap(int trap);
|
|||
void __netpoll_cleanup(struct netpoll *np);
|
||||
void __netpoll_free_rcu(struct netpoll *np);
|
||||
void netpoll_cleanup(struct netpoll *np);
|
||||
int __netpoll_rx(struct sk_buff *skb);
|
||||
int __netpoll_rx(struct sk_buff *skb, struct netpoll_info *npinfo);
|
||||
void netpoll_send_skb_on_dev(struct netpoll *np, struct sk_buff *skb,
|
||||
struct net_device *dev);
|
||||
static inline void netpoll_send_skb(struct netpoll *np, struct sk_buff *skb)
|
||||
|
@ -77,7 +77,7 @@ static inline bool netpoll_rx(struct sk_buff *skb)
|
|||
|
||||
spin_lock(&npinfo->rx_lock);
|
||||
/* check rx_flags again with the lock held */
|
||||
if (npinfo->rx_flags && __netpoll_rx(skb))
|
||||
if (npinfo->rx_flags && __netpoll_rx(skb, npinfo))
|
||||
ret = true;
|
||||
spin_unlock(&npinfo->rx_lock);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue