Re: [PATCH v10 10/10] thermal: intel: intel_soc_dts_iosf: Utilize for_each_set_clump8 macro

From: Andy Shevchenko
Date: Sun Mar 24 2019 - 09:53:15 EST


On Sun, Mar 24, 2019 at 12:38:29PM +0900, William Breathitt Gray wrote:
> On Fri, Mar 22, 2019 at 09:02:43PM +0200, Andy Shevchenko wrote:
> > On Thu, Mar 14, 2019 at 09:32:57PM +0900, William Breathitt Gray wrote:
> > > Utilize for_each_set_clump8 macro, and the bitmap_set_value8 and
> > > bitmap_get_value8 functions, where appropriate. In addition, remove the
> > > now unnecessary temp_mask and temp_shift members of the
> > > intel_soc_dts_sensor_entry structure.
> >
> > One comment below, otherwise
> > Tested-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx>
> > Thanks!
>
> Thank you for testing out the patch. I'll fix the bug your pointed out
> and add the Tested-by line.
>
> I have a couple minor comments below.

> > > u32 store_ptps;

> > > - out = (store_ptps & ~(0xFF << (thres_index * 8)));
> > > - out |= (temp_out & 0xFF) << (thres_index * 8);
> > > + update_ptps = store_ptps;
> > > + bitmap_set_value8(&update_ptps, 32, temp_out & 0xFF, thres_index * 8);
>
> I chose to hardcode a bitmap width of 32 here because that is the width
> of the store_ptps variables, but I don't think we necessarily use all 32
> bits here. Would the actual width of store_ptps be the number of
> writable trip count bits (writable_trip_count * 8)?

I think 32 is okay, but sizeof(store_ptps) would be better. It's easy to read
since no need to check what is the actual size inside this variable is used.


Same for below.


--
With Best Regards,
Andy Shevchenko