Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 04087d9a authored by Li RongQing's avatar Li RongQing Committed by David S. Miller
Browse files

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: default avatarLi RongQing <lirongqing@baidu.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 20da4ef9
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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;
}