Skip to content

Commit 78f281e

Browse files
jwrdegoedesre
authored andcommitted
power: supply: Drop use_cnt check from power_supply_property_is_writeable()
power_supply_property_is_writeable() gets called from the is_visible() callback for the sysfs attributes of power_supply class devices and for the sysfs attributes of power_supply core instantiated hwmon class devices. These sysfs attributes get registered by the device_add() respectively power_supply_add_hwmon_sysfs() calls in power_supply_register(). use_cnt gets initialized to 0 and is incremented only after these calls. So when power_supply_property_is_writeable() gets called it always return -ENODEV because of use_cnt == 0. This causes all the attributes to have permissions of 444 even those which should be writable. This used to be a problem only for hwmon sysfs attributes but since commit be6299c ("power: supply: sysfs: use power_supply_property_is_writeable()") this now also impacts power_supply class sysfs attributes. Fixes: be6299c ("power: supply: sysfs: use power_supply_property_is_writeable()") Fixes: e67d4df ("power: supply: Add HWMON compatibility layer") Cc: [email protected] Cc: Thomas Weißschuh <[email protected]> Cc: Andrey Smirnov <[email protected]> Signed-off-by: Hans de Goede <[email protected]> Link: https://lore.kernel.org/stable/20240908185337.103696-1-hdegoede%40redhat.com Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Sebastian Reichel <[email protected]>
1 parent eb1ea13 commit 78f281e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

drivers/power/supply/power_supply_core.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1231,11 +1231,7 @@ EXPORT_SYMBOL_GPL(power_supply_set_property);
12311231
int power_supply_property_is_writeable(struct power_supply *psy,
12321232
enum power_supply_property psp)
12331233
{
1234-
if (atomic_read(&psy->use_cnt) <= 0 ||
1235-
!psy->desc->property_is_writeable)
1236-
return -ENODEV;
1237-
1238-
return psy->desc->property_is_writeable(psy, psp);
1234+
return psy->desc->property_is_writeable && psy->desc->property_is_writeable(psy, psp);
12391235
}
12401236
EXPORT_SYMBOL_GPL(power_supply_property_is_writeable);
12411237

0 commit comments

Comments
 (0)