All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@jic23.retrosnub.co.uk>
To: Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
Cc: Martin Kelly <mkelly@xevo.com>, linux-iio@vger.kernel.org
Subject: Re: [PATCH 2/2] iio: imu: inv_mpu6050: make loop a do-while
Date: Mon, 14 May 2018 19:38:23 +0100	[thread overview]
Message-ID: <602E11C5-9416-4BE0-890D-5581F28E6400@jic23.retrosnub.co.uk> (raw)
In-Reply-To: <437614c0-a3a8-304b-7dfb-dc90b290f0ea@invensense.com>



On 14 May 2018 08:36:58 BST, Jean-Baptiste Maneyrol <jmaneyrol@invensense.com> wrote:
>
>
>On 12/05/2018 11:04, Jonathan Cameron wrote:
>> CAUTION: This email originated from outside of the organization.
>Please make sure the sender is who they say they are and do not click
>links or open attachments unless you recognize the sender and know the
>content is safe.
>> 
>> 
>> On Tue, 8 May 2018 16:34:30 +0200
>> Jean-Baptiste Maneyrol <jmaneyrol@invensense.com> wrote:
>> 
>>> On 06/05/2018 19:08, Jonathan Cameron wrote:
>>>> On Tue,  1 May 2018 10:56:42 -0700
>>>> Martin Kelly <mkelly@xevo.com> wrote:
>>>>
>>>>> Prior to this loop, we check if fifo_count < bytes_per_datum and
>bail if
>>>>> so. This means that when we hit the loop, we know that fifo_count
>>=
>>>>> bytes_per_datum, so the check is unneeded and we can turn the loop
>into
>>>>> a do-while for a slight performance improvement.
>>>>>
>>>>> Signed-off-by: Martin Kelly <mkelly@xevo.com>
>>>> Seems logical to me, but I'd like to give Jean-Baptiste a chance
>>>> to comment on this one.
>>>>
>>>> If it looks like we have forgotten about it in a week or so do
>>>> give me a poke!
>>>>
>>>> Thanks,
>>>>
>>>> Jonathan
>>> Hello,
>>>
>>> no problem for me, looks good. Anyway, I'm planning additionnal
>changes
>>> that are going to change completely this loop.
>> Ah well, Applied anyway in the meantime.
>> 
>> Applied to the togreg branch of iio.git and pushed out as testing for
>the
>> autobuilders to play with it.
>> 
>> Thanks,
>> 
>> Jonathan
>Hello Jonathan,
>
>it's strange, I can't find this patch in the testing branch. Is it
>expected?
>
>Thanks.
>JB
That's usually a sure sign I have been a Muppet and forgotten to push.

Thanks, should be there now.



>
>> 
>>>
>>> JB
>>>>
>>>>> ---
>>>>>    drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c | 4 ++--
>>>>>    1 file changed, 2 insertions(+), 2 deletions(-)
>>>>>
>>>>> diff --git a/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c
>b/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c
>>>>> index 0cb7c20100ca..11593deaaebd 100644
>>>>> --- a/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c
>>>>> +++ b/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c
>>>>> @@ -174,7 +174,7 @@ irqreturn_t inv_mpu6050_read_fifo(int irq,
>void *p)
>>>>>     if (kfifo_len(&st->timestamps) >
>>>>>         fifo_count / bytes_per_datum + INV_MPU6050_TIME_STAMP_TOR)
>>>>>             goto flush_fifo;
>>>>> -  while (fifo_count >= bytes_per_datum) {
>>>>> +  do {
>>>>>             result = regmap_bulk_read(st->map, st->reg->fifo_r_w,
>>>>>                                       data, bytes_per_datum);
>>>>>             if (result)
>>>>> @@ -188,7 +188,7 @@ irqreturn_t inv_mpu6050_read_fifo(int irq,
>void *p)
>>>>>             iio_push_to_buffers_with_timestamp(indio_dev, data,
>timestamp);
>>>>>
>>>>>             fifo_count -= bytes_per_datum;
>>>>> -  }
>>>>> +  } while (fifo_count >= bytes_per_datum);
>>>>>
>>>>>    end_session:
>>>>>     mutex_unlock(&st->lock);
>>>>
>>>> --
>>>> To unsubscribe from this list: send the line "unsubscribe
>linux-iio" in
>>>> the body of a message to majordomo@vger.kernel.org
>>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>>>
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe linux-iio"
>in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>> 
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-iio"
>in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>> 
>--
>To unsubscribe from this list: send the line "unsubscribe linux-iio" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

      reply	other threads:[~2018-05-14 18:38 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-01 17:56 [PATCH 0/2] inv_mpu6050 minor cleanup Martin Kelly
2018-05-01 17:56 ` [PATCH 1/2] iio: imu: inv_mpu6050: minor wording fixes Martin Kelly
2018-05-06 17:06   ` Jonathan Cameron
2018-05-01 17:56 ` [PATCH 2/2] iio: imu: inv_mpu6050: make loop a do-while Martin Kelly
2018-05-06 17:08   ` Jonathan Cameron
2018-05-08 14:34     ` Jean-Baptiste Maneyrol
2018-05-12  9:04       ` Jonathan Cameron
2018-05-14  7:36         ` Jean-Baptiste Maneyrol
2018-05-14 18:38           ` Jonathan Cameron [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=602E11C5-9416-4BE0-890D-5581F28E6400@jic23.retrosnub.co.uk \
    --to=jic23@jic23.retrosnub.co.uk \
    --cc=jmaneyrol@invensense.com \
    --cc=linux-iio@vger.kernel.org \
    --cc=mkelly@xevo.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.