diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-09-04 15:00:25 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-09-04 15:00:25 +0200 |
commit | 4e335f640fadda81aff9dd2dc06703961bea2826 (patch) | |
tree | bc9618ea20fdd6328f534488413dadd5530146ce /vlan.c | |
parent | dca8c7133b1db463f6ae71ccc6d34cd12735daef (diff) |
make device_claim/device_release operate on the device_user instead of the device to avoid refcount bugs
Diffstat (limited to 'vlan.c')
-rw-r--r-- | vlan.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -32,18 +32,18 @@ static int vlan_set_device_state(struct device *dev, bool up) if (!up) { vldev->set_state(dev, false); system_vlan_del(dev); - device_release(vldev->dep.dev); + device_release(&vldev->dep); return 0; } - ret = device_claim(vldev->dep.dev); + ret = device_claim(&vldev->dep); if (ret) return ret; system_vlan_add(vldev->dep.dev, vldev->id); ret = vldev->set_state(dev, true); if (ret) - device_release(vldev->dep.dev); + device_release(&vldev->dep); return ret; } |