* [PATCH V3 1/1] Drivers: hv: vmbus: Fix a bug in vmbus_establish_gpadl()
@ 2014-12-11 1:13 K. Y. Srinivasan
2014-12-11 2:10 ` Jeremiah Mahler
0 siblings, 1 reply; 6+ messages in thread
From: K. Y. Srinivasan @ 2014-12-11 1:13 UTC (permalink / raw)
To: gregkh, linux-kernel, devel, olaf, apw, jasowang, mcb30; +Cc: K. Y. Srinivasan
Correctly compute the local (gpadl) handle.
I would like to thank Michael Brown <mcb30@ipxe.org> for seeing this bug.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Reported-by: Michael Brown <mcb30@ipxe.org>
---
Changes in V2: Added the Reported-by tag.
Changes in V3: Cleaned up the commit log.
drivers/hv/channel.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c
index 433f72a..c76ffbe 100644
--- a/drivers/hv/channel.c
+++ b/drivers/hv/channel.c
@@ -366,8 +366,8 @@ int vmbus_establish_gpadl(struct vmbus_channel *channel, void *kbuffer,
unsigned long flags;
int ret = 0;
- next_gpadl_handle = atomic_read(&vmbus_connection.next_gpadl_handle);
- atomic_inc(&vmbus_connection.next_gpadl_handle);
+ next_gpadl_handle =
+ (atomic_inc_return(&vmbus_connection.next_gpadl_handle) - 1);
ret = create_gpadl_header(kbuffer, size, &msginfo, &msgcount);
if (ret)
--
1.7.4.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH V3 1/1] Drivers: hv: vmbus: Fix a bug in vmbus_establish_gpadl()
2014-12-11 1:13 [PATCH V3 1/1] Drivers: hv: vmbus: Fix a bug in vmbus_establish_gpadl() K. Y. Srinivasan
@ 2014-12-11 2:10 ` Jeremiah Mahler
2014-12-15 7:00 ` KY Srinivasan
0 siblings, 1 reply; 6+ messages in thread
From: Jeremiah Mahler @ 2014-12-11 2:10 UTC (permalink / raw)
To: K. Y. Srinivasan; +Cc: gregkh, linux-kernel, devel, olaf, apw, jasowang, mcb30
K. Y. Srinivasan,
On Wed, Dec 10, 2014 at 05:13:00PM -0800, K. Y. Srinivasan wrote:
> Correctly compute the local (gpadl) handle.
This description is still too sparse for me. How was it computed before
and why was this incorrect? Pretend like you are trying to explain your
patch to someone who has no idea what you did.
> I would like to thank Michael Brown <mcb30@ipxe.org> for seeing this bug.
>
> Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
> Reported-by: Michael Brown <mcb30@ipxe.org>
> ---
> Changes in V2: Added the Reported-by tag.
> Changes in V3: Cleaned up the commit log.
>
> drivers/hv/channel.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c
> index 433f72a..c76ffbe 100644
> --- a/drivers/hv/channel.c
> +++ b/drivers/hv/channel.c
> @@ -366,8 +366,8 @@ int vmbus_establish_gpadl(struct vmbus_channel *channel, void *kbuffer,
> unsigned long flags;
> int ret = 0;
>
> - next_gpadl_handle = atomic_read(&vmbus_connection.next_gpadl_handle);
> - atomic_inc(&vmbus_connection.next_gpadl_handle);
> + next_gpadl_handle =
> + (atomic_inc_return(&vmbus_connection.next_gpadl_handle) - 1);
>
Tell me if I understand this correctly.
Before it read the handle and incremented it.
y = x + 1
Now it reads the handle, increments it, then decrements it.
y = (x + 1) - 1 = x
> ret = create_gpadl_header(kbuffer, size, &msginfo, &msgcount);
> if (ret)
> --
> 1.7.4.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
- Jeremiah Mahler
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH V3 1/1] Drivers: hv: vmbus: Fix a bug in vmbus_establish_gpadl()
2014-12-11 2:10 ` Jeremiah Mahler
@ 2014-12-15 7:00 ` KY Srinivasan
2014-12-15 7:59 ` Jeremiah Mahler
0 siblings, 1 reply; 6+ messages in thread
From: KY Srinivasan @ 2014-12-15 7:00 UTC (permalink / raw)
To: Jeremiah Mahler
Cc: gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org,
devel@linuxdriverproject.org, olaf@aepfle.de, apw@canonical.com,
jasowang@redhat.com, mcb30@ipxe.org
> -----Original Message-----
> From: Jeremiah Mahler [mailto:jmmahler@gmail.com]
> Sent: Wednesday, December 10, 2014 6:10 PM
> To: KY Srinivasan
> Cc: gregkh@linuxfoundation.org; linux-kernel@vger.kernel.org;
> devel@linuxdriverproject.org; olaf@aepfle.de; apw@canonical.com;
> jasowang@redhat.com; mcb30@ipxe.org
> Subject: Re: [PATCH V3 1/1] Drivers: hv: vmbus: Fix a bug in
> vmbus_establish_gpadl()
>
> K. Y. Srinivasan,
>
> On Wed, Dec 10, 2014 at 05:13:00PM -0800, K. Y. Srinivasan wrote:
> > Correctly compute the local (gpadl) handle.
>
> This description is still too sparse for me. How was it computed before and
> why was this incorrect? Pretend like you are trying to explain your patch to
> someone who has no idea what you did.
>
> > I would like to thank Michael Brown <mcb30@ipxe.org> for seeing this bug.
> >
> > Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
> > Reported-by: Michael Brown <mcb30@ipxe.org>
> > ---
> > Changes in V2: Added the Reported-by tag.
> > Changes in V3: Cleaned up the commit log.
> >
> > drivers/hv/channel.c | 4 ++--
> > 1 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c index
> > 433f72a..c76ffbe 100644
> > --- a/drivers/hv/channel.c
> > +++ b/drivers/hv/channel.c
> > @@ -366,8 +366,8 @@ int vmbus_establish_gpadl(struct vmbus_channel
> *channel, void *kbuffer,
> > unsigned long flags;
> > int ret = 0;
> >
> > - next_gpadl_handle =
> atomic_read(&vmbus_connection.next_gpadl_handle);
> > - atomic_inc(&vmbus_connection.next_gpadl_handle);
> > + next_gpadl_handle =
> > +
> (atomic_inc_return(&vmbus_connection.next_gpadl_handle) - 1);
> >
> Tell me if I understand this correctly.
>
> Before it read the handle and incremented it.
>
> y = x + 1
>
> Now it reads the handle, increments it, then decrements it.
>
> y = (x + 1) - 1 = x
This code can be executed concurrently on multiple CPUs. We want to ensure that each call to
establish gpadl gets a unique local handle. The earlier code was buggy in that we would read the
handle and then atomically increment it. Thus, multiple CPUs could read the identical current
value which would be their local handle. What we want is the ability to atomically read and increment
the value - this would ensure that each caller got a unique value even if they executed the code
concurrently on multiple CPUs. The API atomic_inc_return(), atomically increments and returns the
incremented value. We locally decrement this value to emulate the logic of "read the current value and
atomically increment the value.
Hope this helps,
K. Y
>
> > ret = create_gpadl_header(kbuffer, size, &msginfo, &msgcount);
> > if (ret)
> > --
> > 1.7.4.1
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe
> > linux-kernel" in the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
> > Please read the FAQ at http://www.tux.org/lkml/
>
> --
> - Jeremiah Mahler
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH V3 1/1] Drivers: hv: vmbus: Fix a bug in vmbus_establish_gpadl()
2014-12-15 7:00 ` KY Srinivasan
@ 2014-12-15 7:59 ` Jeremiah Mahler
2014-12-15 15:47 ` Andy Whitcroft
0 siblings, 1 reply; 6+ messages in thread
From: Jeremiah Mahler @ 2014-12-15 7:59 UTC (permalink / raw)
To: KY Srinivasan
Cc: gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org,
devel@linuxdriverproject.org, olaf@aepfle.de, apw@canonical.com,
jasowang@redhat.com, mcb30@ipxe.org
KY Srinivasan,
On Mon, Dec 15, 2014 at 07:00:45AM +0000, KY Srinivasan wrote:
>
>
> > -----Original Message-----
> > From: Jeremiah Mahler [mailto:jmmahler@gmail.com]
> > Sent: Wednesday, December 10, 2014 6:10 PM
> > To: KY Srinivasan
> > Cc: gregkh@linuxfoundation.org; linux-kernel@vger.kernel.org;
> > devel@linuxdriverproject.org; olaf@aepfle.de; apw@canonical.com;
> > jasowang@redhat.com; mcb30@ipxe.org
> > Subject: Re: [PATCH V3 1/1] Drivers: hv: vmbus: Fix a bug in
> > vmbus_establish_gpadl()
> >
> > K. Y. Srinivasan,
> >
> > On Wed, Dec 10, 2014 at 05:13:00PM -0800, K. Y. Srinivasan wrote:
> > > Correctly compute the local (gpadl) handle.
> >
> > This description is still too sparse for me. How was it computed before and
> > why was this incorrect? Pretend like you are trying to explain your patch to
> > someone who has no idea what you did.
> >
> > > I would like to thank Michael Brown <mcb30@ipxe.org> for seeing this bug.
> > >
> > > Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
> > > Reported-by: Michael Brown <mcb30@ipxe.org>
> > > ---
> > > Changes in V2: Added the Reported-by tag.
> > > Changes in V3: Cleaned up the commit log.
> > >
> > > drivers/hv/channel.c | 4 ++--
> > > 1 files changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c index
> > > 433f72a..c76ffbe 100644
> > > --- a/drivers/hv/channel.c
> > > +++ b/drivers/hv/channel.c
> > > @@ -366,8 +366,8 @@ int vmbus_establish_gpadl(struct vmbus_channel
> > *channel, void *kbuffer,
> > > unsigned long flags;
> > > int ret = 0;
> > >
> > > - next_gpadl_handle =
> > atomic_read(&vmbus_connection.next_gpadl_handle);
> > > - atomic_inc(&vmbus_connection.next_gpadl_handle);
> > > + next_gpadl_handle =
> > > +
> > (atomic_inc_return(&vmbus_connection.next_gpadl_handle) - 1);
> > >
> > Tell me if I understand this correctly.
> >
> > Before it read the handle and incremented it.
> >
> > y = x + 1
> >
> > Now it reads the handle, increments it, then decrements it.
> >
> > y = (x + 1) - 1 = x
>
> This code can be executed concurrently on multiple CPUs. We want to ensure that each call to
> establish gpadl gets a unique local handle. The earlier code was buggy in that we would read the
> handle and then atomically increment it. Thus, multiple CPUs could read the identical current
> value which would be their local handle. What we want is the ability to atomically read and increment
> the value - this would ensure that each caller got a unique value even if they executed the code
> concurrently on multiple CPUs. The API atomic_inc_return(), atomically increments and returns the
> incremented value. We locally decrement this value to emulate the logic of "read the current value and
> atomically increment the value.
>
> Hope this helps,
>
> K. Y
> >
[...]
So to avoid concurrency issues you used a single atomic operation
instead of two separate operations. That make sense. But it still
doesn't explain why you changed the calculation by subtracting 1.
--
- Jeremiah Mahler
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH V3 1/1] Drivers: hv: vmbus: Fix a bug in vmbus_establish_gpadl()
2014-12-15 7:59 ` Jeremiah Mahler
@ 2014-12-15 15:47 ` Andy Whitcroft
2014-12-15 18:51 ` Jeremiah Mahler
0 siblings, 1 reply; 6+ messages in thread
From: Andy Whitcroft @ 2014-12-15 15:47 UTC (permalink / raw)
To: Jeremiah Mahler, KY Srinivasan, gregkh@linuxfoundation.org,
linux-kernel@vger.kernel.org, devel@linuxdriverproject.org,
olaf@aepfle.de, jasowang@redhat.com, mcb30@ipxe.org
On Sun, Dec 14, 2014 at 11:59:19PM -0800, Jeremiah Mahler wrote:
> KY Srinivasan,
>
> On Mon, Dec 15, 2014 at 07:00:45AM +0000, KY Srinivasan wrote:
> >
> >
> > > -----Original Message-----
> > > From: Jeremiah Mahler [mailto:jmmahler@gmail.com]
> > > Sent: Wednesday, December 10, 2014 6:10 PM
> > > To: KY Srinivasan
> > > Cc: gregkh@linuxfoundation.org; linux-kernel@vger.kernel.org;
> > > devel@linuxdriverproject.org; olaf@aepfle.de; apw@canonical.com;
> > > jasowang@redhat.com; mcb30@ipxe.org
> > > Subject: Re: [PATCH V3 1/1] Drivers: hv: vmbus: Fix a bug in
> > > vmbus_establish_gpadl()
> > >
> > > K. Y. Srinivasan,
> > >
> > > On Wed, Dec 10, 2014 at 05:13:00PM -0800, K. Y. Srinivasan wrote:
> > > > Correctly compute the local (gpadl) handle.
> > >
> > > This description is still too sparse for me. How was it computed before and
> > > why was this incorrect? Pretend like you are trying to explain your patch to
> > > someone who has no idea what you did.
> > >
> > > > I would like to thank Michael Brown <mcb30@ipxe.org> for seeing this bug.
> > > >
> > > > Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
> > > > Reported-by: Michael Brown <mcb30@ipxe.org>
> > > > ---
> > > > Changes in V2: Added the Reported-by tag.
> > > > Changes in V3: Cleaned up the commit log.
> > > >
> > > > drivers/hv/channel.c | 4 ++--
> > > > 1 files changed, 2 insertions(+), 2 deletions(-)
> > > >
> > > > diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c index
> > > > 433f72a..c76ffbe 100644
> > > > --- a/drivers/hv/channel.c
> > > > +++ b/drivers/hv/channel.c
> > > > @@ -366,8 +366,8 @@ int vmbus_establish_gpadl(struct vmbus_channel
> > > *channel, void *kbuffer,
> > > > unsigned long flags;
> > > > int ret = 0;
> > > >
> > > > - next_gpadl_handle =
> > > atomic_read(&vmbus_connection.next_gpadl_handle);
> > > > - atomic_inc(&vmbus_connection.next_gpadl_handle);
> > > > + next_gpadl_handle =
> > > > +
> > > (atomic_inc_return(&vmbus_connection.next_gpadl_handle) - 1);
> > > >
> > > Tell me if I understand this correctly.
> > >
> > > Before it read the handle and incremented it.
> > >
> > > y = x + 1
> > >
> > > Now it reads the handle, increments it, then decrements it.
> > >
> > > y = (x + 1) - 1 = x
> >
> > This code can be executed concurrently on multiple CPUs. We want to ensure that each call to
> > establish gpadl gets a unique local handle. The earlier code was buggy in that we would read the
> > handle and then atomically increment it. Thus, multiple CPUs could read the identical current
> > value which would be their local handle. What we want is the ability to atomically read and increment
> > the value - this would ensure that each caller got a unique value even if they executed the code
> > concurrently on multiple CPUs. The API atomic_inc_return(), atomically increments and returns the
> > incremented value. We locally decrement this value to emulate the logic of "read the current value and
> > atomically increment the value.
> >
> > Hope this helps,
> >
> > K. Y
> > >
> [...]
>
> So to avoid concurrency issues you used a single atomic operation
> instead of two separate operations. That make sense. But it still
> doesn't explain why you changed the calculation by subtracting 1.
The calculation appears identical to my reading, the original form was:
next_gpadl_handle = atomic_read(&vmbus_connection.next_gpadl_handle);
atomic_inc(&vmbus_connection.next_gpadl_handle);
or:
y = x;
x++;
so y == x' (x before incrementing)
the new code is:
next_gpadl_handle = (atomic_inc_return(&vmbus_connection.next_gpadl_handle) - 1);
or:
y = ++x - 1;
Also making y = x' (x before incrementing)
-apw
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH V3 1/1] Drivers: hv: vmbus: Fix a bug in vmbus_establish_gpadl()
2014-12-15 15:47 ` Andy Whitcroft
@ 2014-12-15 18:51 ` Jeremiah Mahler
0 siblings, 0 replies; 6+ messages in thread
From: Jeremiah Mahler @ 2014-12-15 18:51 UTC (permalink / raw)
To: Andy Whitcroft
Cc: KY Srinivasan, gregkh@linuxfoundation.org,
linux-kernel@vger.kernel.org, devel@linuxdriverproject.org,
olaf@aepfle.de, jasowang@redhat.com, mcb30@ipxe.org
Andy,
On Mon, Dec 15, 2014 at 03:47:04PM +0000, Andy Whitcroft wrote:
> On Sun, Dec 14, 2014 at 11:59:19PM -0800, Jeremiah Mahler wrote:
[...]
>
> The calculation appears identical to my reading, the original form was:
>
> next_gpadl_handle = atomic_read(&vmbus_connection.next_gpadl_handle);
> atomic_inc(&vmbus_connection.next_gpadl_handle);
>
> or:
>
> y = x;
> x++;
>
> so y == x' (x before incrementing)
>
> the new code is:
>
> next_gpadl_handle = (atomic_inc_return(&vmbus_connection.next_gpadl_handle) - 1);
>
> or:
>
> y = ++x - 1;
>
> Also making y = x' (x before incrementing)
>
> -apw
Ah, you are right. The increment before/after messed me up.
Thanks for clearing that up for me :-)
--
- Jeremiah Mahler
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-12-15 18:51 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-11 1:13 [PATCH V3 1/1] Drivers: hv: vmbus: Fix a bug in vmbus_establish_gpadl() K. Y. Srinivasan
2014-12-11 2:10 ` Jeremiah Mahler
2014-12-15 7:00 ` KY Srinivasan
2014-12-15 7:59 ` Jeremiah Mahler
2014-12-15 15:47 ` Andy Whitcroft
2014-12-15 18:51 ` Jeremiah Mahler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox