Re: [Outreachy kernel] [PATCH] staging: iio: adc: Replace mlock with driver private lock

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




On Mon, 13 Mar 2017, Gargi Sharma wrote:

> On Mon, Mar 13, 2017 at 3:57 AM, Julia Lawall <julia.lawall@xxxxxxx> wrote:
> >> Please insert the new lock above the __cacheline_aligned struct
> >> member.
> >
> > Regrettably, at the moment, Coccinelle can't help you find this.  It could
> > help if there is something particular about the type.
> >
> >
> >> I like the automated editing because it certainly cuts down on typos,
> >> and even with this one, you can just move the new lock field upon
> >> inspection.  Sadly, I don't think the script will apply too widely
> >> because the use of "_state" for driver global data isn't a standard,
> >> nor availability of that struct in the functions needing the locking.
> >
> > The _state is part of a metavariable name.  It doesn't have any impact on
> > what is matched.
> >
> >> That sadness expressed ;) we do have a boatload of drivers upstream
> >> that will eventually make this migration, so the value of the cocci
> >> script would go beyond these 15 staging drivers. That's valuable.
> >>
> >> Let's make sure anything done with any automated tools is walked
> >> through thoroughly.  Per the task description: this is not intended
> >> as a search&replace exercise.
> >
> > Automation is great, modulo the need to manually check the result.
> > However, it could be better not to include in the commit log semantic
> > patches that are too far off from what updates the driver in a safe way.
> > It doesn't have to update all drivers safely, but it should work for the
> > modified one.  The goal should be to complement the log message text, not
> > to make the reader confused :)
>
> Will it be better if I remove the script from the commit log here? That way the
> confusion can be prevented :)

Perhaps a good idea.

julia

>
> Thanks!
> Gargi
> >
> > julia
> >
> >> alisons
> >>
> >>
> >> > > >>
> >> > > >> Signed-off-by: Gargi Sharma <gs051095@xxxxxxxxx>
> >> > > >> ---
> >> > > >>  drivers/staging/iio/adc/ad7280a.c | 21 +++++++++++----------
> >> > > >>  1 file changed, 11 insertions(+), 10 deletions(-)
> >> > > >>
> >> > > >> diff --git a/drivers/staging/iio/adc/ad7280a.c b/drivers/staging/iio/adc/ad7280a.c
> >> > > >> index ee679ac..27a3ce3 100644
> >> > > >> --- a/drivers/staging/iio/adc/ad7280a.c
> >> > > >> +++ b/drivers/staging/iio/adc/ad7280a.c
> >> > > >> @@ -136,6 +136,7 @@ struct ad7280_state {
> >> > > >>       unsigned char                   cb_mask[AD7280A_MAX_CHAIN];
> >> > > >>
> >> > > >>       __be32                          buf[2] ____cacheline_aligned;
> >> > > >> +     struct mutex                    lock;  /* protect sensor state */
> >> > > >>  };
> >> > > >>
> >> > > >>  static void ad7280_crc8_build_table(unsigned char *crc_tab)
> >> > > >> @@ -410,7 +411,7 @@ static ssize_t ad7280_store_balance_sw(struct device *dev,
> >> > > >>       devaddr = this_attr->address >> 8;
> >> > > >>       ch = this_attr->address & 0xFF;
> >> > > >>
> >> > > >> -     mutex_lock(&indio_dev->mlock);
> >> > > >> +     mutex_lock(&st->lock);
> >> > > >>       if (readin)
> >> > > >>               st->cb_mask[devaddr] |= 1 << (ch + 2);
> >> > > >>       else
> >> > > >> @@ -418,7 +419,7 @@ static ssize_t ad7280_store_balance_sw(struct device *dev,
> >> > > >>
> >> > > >>       ret = ad7280_write(st, devaddr, AD7280A_CELL_BALANCE,
> >> > > >>                          0, st->cb_mask[devaddr]);
> >> > > >> -     mutex_unlock(&indio_dev->mlock);
> >> > > >> +     mutex_unlock(&st->lock);
> >> > > >>
> >> > > >>       return ret ? ret : len;
> >> > > >>  }
> >> > > >> @@ -433,10 +434,10 @@ static ssize_t ad7280_show_balance_timer(struct device *dev,
> >> > > >>       int ret;
> >> > > >>       unsigned int msecs;
> >> > > >>
> >> > > >> -     mutex_lock(&indio_dev->mlock);
> >> > > >> +     mutex_lock(&st->lock);
> >> > > >>       ret = ad7280_read(st, this_attr->address >> 8,
> >> > > >>                         this_attr->address & 0xFF);
> >> > > >> -     mutex_unlock(&indio_dev->mlock);
> >> > > >> +     mutex_unlock(&st->lock);
> >> > > >>
> >> > > >>       if (ret < 0)
> >> > > >>               return ret;
> >> > > >> @@ -466,11 +467,11 @@ static ssize_t ad7280_store_balance_timer(struct device *dev,
> >> > > >>       if (val > 31)
> >> > > >>               return -EINVAL;
> >> > > >>
> >> > > >> -     mutex_lock(&indio_dev->mlock);
> >> > > >> +     mutex_lock(&st->lock);
> >> > > >>       ret = ad7280_write(st, this_attr->address >> 8,
> >> > > >>                          this_attr->address & 0xFF,
> >> > > >>                          0, (val & 0x1F) << 3);
> >> > > >> -     mutex_unlock(&indio_dev->mlock);
> >> > > >> +     mutex_unlock(&st->lock);
> >> > > >>
> >> > > >>       return ret ? ret : len;
> >> > > >>  }
> >> > > >> @@ -655,7 +656,7 @@ static ssize_t ad7280_write_channel_config(struct device *dev,
> >> > > >>
> >> > > >>       val = clamp(val, 0L, 0xFFL);
> >> > > >>
> >> > > >> -     mutex_lock(&indio_dev->mlock);
> >> > > >> +     mutex_lock(&st->lock);
> >> > > >>       switch ((u32)this_attr->address) {
> >> > > >>       case AD7280A_CELL_OVERVOLTAGE:
> >> > > >>               st->cell_threshhigh = val;
> >> > > >> @@ -674,7 +675,7 @@ static ssize_t ad7280_write_channel_config(struct device *dev,
> >> > > >>       ret = ad7280_write(st, AD7280A_DEVADDR_MASTER,
> >> > > >>                          this_attr->address, 1, val);
> >> > > >>
> >> > > >> -     mutex_unlock(&indio_dev->mlock);
> >> > > >> +     mutex_unlock(&st->lock);
> >> > > >>
> >> > > >>       return ret ? ret : len;
> >> > > >>  }
> >> > > >> @@ -792,13 +793,13 @@ static int ad7280_read_raw(struct iio_dev *indio_dev,
> >> > > >>
> >> > > >>       switch (m) {
> >> > > >>       case IIO_CHAN_INFO_RAW:
> >> > > >> -             mutex_lock(&indio_dev->mlock);
> >> > > >> +             mutex_lock(&st->lock);
> >> > > >>               if (chan->address == AD7280A_ALL_CELLS)
> >> > > >>                       ret = ad7280_read_all_channels(st, st->scan_cnt, NULL);
> >> > > >>               else
> >> > > >>                       ret = ad7280_read_channel(st, chan->address >> 8,
> >> > > >>                                                 chan->address & 0xFF);
> >> > > >> -             mutex_unlock(&indio_dev->mlock);
> >> > > >> +             mutex_unlock(&st->lock);
> >> > > >>
> >> > > >>               if (ret < 0)
> >> > > >>                       return ret;
> >> > > >> --
> >> > > >> 2.7.4
> >> > > >>
> >> > > >> --
> >> > >
> >> >
> >> > --
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@xxxxxxxxxxxxxxxx.
> To post to this group, send email to outreachy-kernel@xxxxxxxxxxxxxxxx.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/CAOCi2DGcpoN791cH82nKWYdYdS82MmfJeUpcTcUSG9cbEw3Q4g%40mail.gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>
--
To unsubscribe from this list: send the line "unsubscribe linux-iio" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Input]     [Linux Kernel]     [Linux SCSI]     [X.org]

  Powered by Linux