lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 17 Apr 2013 00:51:59 +0800
From:	Axel Lin <axel.lin@...ics.com>
To:	Mark Brown <broonie@...nsource.wolfsonmicro.com>
Cc:	Bengt Jonsson <bengt.g.jonsson@...ricsson.com>,
	Lee Jones <lee.jones@...aro.org>,
	Yvan FILLION <yvan.fillion@...ricsson.com>,
	Liam Girdwood <lgirdwood@...il.com>,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH 1/2] regulator: ab8500: Don't update info->update_val if
 write to register fails

Hi Bengt,

This serial also needs your review.

Thanks,
Axel

2013/4/9 Axel Lin <axel.lin@...ics.com>:
> This patch ensures info->update_val is consistent with current register value.
>
> Signed-off-by: Axel Lin <axel.lin@...ics.com>
> ---
>  drivers/regulator/ab8500.c |   20 +++++++++++---------
>  1 file changed, 11 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/regulator/ab8500.c b/drivers/regulator/ab8500.c
> index acdffc5..1866dbf 100644
> --- a/drivers/regulator/ab8500.c
> +++ b/drivers/regulator/ab8500.c
> @@ -392,9 +392,8 @@ static int ab8500_regulator_set_mode(struct regulator_dev *rdev,
>                         val = info->mode_val_idle;
>                         break;
>                 default:
> -                       if (info->shared_mode)
> -                               mutex_unlock(&shared_mode_mutex);
> -                       return -EINVAL;
> +                       ret = -EINVAL;
> +                       goto out_unlock;
>                 }
>
>                 bank = info->mode_bank;
> @@ -405,17 +404,14 @@ static int ab8500_regulator_set_mode(struct regulator_dev *rdev,
>
>                 switch (mode) {
>                 case REGULATOR_MODE_NORMAL:
> -                       info->update_val = info->update_val_normal;
>                         val = info->update_val_normal;
>                         break;
>                 case REGULATOR_MODE_IDLE:
> -                       info->update_val = info->update_val_idle;
>                         val = info->update_val_idle;
>                         break;
>                 default:
> -                       if (info->shared_mode)
> -                               mutex_unlock(&shared_mode_mutex);
> -                       return -EINVAL;
> +                       ret = -EINVAL;
> +                       goto out_unlock;
>                 }
>
>                 bank = info->update_bank;
> @@ -426,9 +422,11 @@ static int ab8500_regulator_set_mode(struct regulator_dev *rdev,
>         if (dmr || ab8500_regulator_is_enabled(rdev)) {
>                 ret = abx500_mask_and_set_register_interruptible(info->dev,
>                         bank, reg, mask, val);
> -               if (ret < 0)
> +               if (ret < 0) {
>                         dev_err(rdev_get_dev(rdev),
>                                 "couldn't set regulator mode\n");
> +                       goto out_unlock;
> +               }
>
>                 dev_vdbg(rdev_get_dev(rdev),
>                         "%s-set_mode (bank, reg, mask, value): "
> @@ -437,6 +435,10 @@ static int ab8500_regulator_set_mode(struct regulator_dev *rdev,
>                         mask, val);
>         }
>
> +       if (!dmr)
> +               info->update_val = val;
> +
> +out_unlock:
>         if (info->shared_mode)
>                 mutex_unlock(&shared_mode_mutex);
>
> --
> 1.7.10.4
>
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ