We can't unlock the netdev's mutex after close the netdev, because closing the netdev might destroy the mutex.
VMware-BZ: #1275187 Signed-off-by: Ben Pfaff <[email protected]> --- lib/netdev-vport.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/netdev-vport.c b/lib/netdev-vport.c index 9fa15f5..17adf94 100644 --- a/lib/netdev-vport.c +++ b/lib/netdev-vport.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2011, 2012, 2013 Nicira, Inc. + * Copyright (c) 2010, 2011, 2012, 2013, 2014 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -203,8 +203,9 @@ netdev_vport_route_changed(void) netdev_change_seq_changed(netdev_); } } - netdev_close(netdev_); ovs_mutex_unlock(&netdev->mutex); + + netdev_close(netdev_); } free(vports); -- 1.7.10.4 _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
