|
@@ -127,8 +127,10 @@ struct vport *ovs_vport_alloc(int priv_size, const struct vport_ops *ops,
|
|
vport->ops = ops;
|
|
vport->ops = ops;
|
|
|
|
|
|
vport->percpu_stats = alloc_percpu(struct vport_percpu_stats);
|
|
vport->percpu_stats = alloc_percpu(struct vport_percpu_stats);
|
|
- if (!vport->percpu_stats)
|
|
|
|
|
|
+ if (!vport->percpu_stats) {
|
|
|
|
+ kfree(vport);
|
|
return ERR_PTR(-ENOMEM);
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
+ }
|
|
|
|
|
|
spin_lock_init(&vport->stats_lock);
|
|
spin_lock_init(&vport->stats_lock);
|
|
|
|
|