diff options
| author | Li RongQing <[email protected]> | 2018-11-08 12:40:20 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2018-11-09 01:14:59 +0000 |
| commit | 04087d9a89bef97998c71c21e3ecfca0cc7c52f3 (patch) | |
| tree | 4f03817172a8888238e20f18b62ba82774ad22c2 | |
| parent | Merge branch 'ICMP-error-handling-for-UDP-tunnels' (diff) | |
| download | kernel-04087d9a89bef97998c71c21e3ecfca0cc7c52f3.tar.gz kernel-04087d9a89bef97998c71c21e3ecfca0cc7c52f3.zip | |
openvswitch: remove BUG_ON from get_dpdev
if local is NULL pointer, and the following access of local's
dev will trigger panic, which is same as BUG_ON
Signed-off-by: Li RongQing <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
| -rw-r--r-- | net/openvswitch/vport-netdev.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/openvswitch/vport-netdev.c b/net/openvswitch/vport-netdev.c index 2e5e7a41d8ef..9bec22e3e9e8 100644 --- a/net/openvswitch/vport-netdev.c +++ b/net/openvswitch/vport-netdev.c @@ -84,7 +84,6 @@ static struct net_device *get_dpdev(const struct datapath *dp) struct vport *local; local = ovs_vport_ovsl(dp, OVSP_LOCAL); - BUG_ON(!local); return local->dev; } |
