All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/4] xen-blk: bug fixes
@ 2014-02-04 10:26 Roger Pau Monne
  2014-02-04 10:26 ` [PATCH v2 1/4] xen-blkback: fix memory leak when persistent grants are used Roger Pau Monne
                   ` (9 more replies)
  0 siblings, 10 replies; 32+ messages in thread
From: Roger Pau Monne @ 2014-02-04 10:26 UTC (permalink / raw)
  To: xen-devel, linux-kernel

This series contain blkback bug fixes for memory leaks (patches 1 and 
2) and a race (patch 3). Patch 4 removes blkif_request_segment_aligned 
since its memory layout is exactly the same as blkif_request_segment 
and should introduce no functional change.

All patches should be backported to stable branches, although the last 
one is not a functional change it will still be nice to have it for 
code correctness.

^ permalink raw reply	[flat|nested] 32+ messages in thread
* [PATCH v2 3/4] xen-blkback: fix shutdown race
@ 2014-02-07  3:23 Matthew Rushton
  2014-02-12 13:42 ` Egger, Christoph
  0 siblings, 1 reply; 32+ messages in thread
From: Matthew Rushton @ 2014-02-07  3:23 UTC (permalink / raw)
  To: roger.pau@citrix.com
  Cc: Ian.Campbell@citrix.com, linux-kernel@vger.kernel.org,
	mrushton@amazon.com, david.vrabel@citrix.com, msw@amazon.com,
	xen-devel@lists.xenproject.org, boris.ostrovsky@oracle.com,
	aliguori@amazon.com


[-- Attachment #1.1: Type: text/plain, Size: 384 bytes --]

On 04/02/14 10:26, Roger Pau Monne wrote:
> Introduce a new variable to keep track of the number of in-flight
> requests. We need to make sure that when xen_blkif_put is called the
> request has already been freed and we can safely free xen_blkif, which
> was not the case before.

Tested-by: Matt Rushton <mrushton@amazon.com>

Reviewed-by: Matt Rushton <mrushton@amazon.com>

-Matt

[-- Attachment #1.2: Type: text/html, Size: 1898 bytes --]

[-- Attachment #2: Type: text/plain, Size: 126 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 32+ messages in thread
* [PATCH v2 3/4] xen-blkback: fix shutdown race
@ 2014-02-07  3:31 Matthew Rushton
  0 siblings, 0 replies; 32+ messages in thread
From: Matthew Rushton @ 2014-02-07  3:31 UTC (permalink / raw)
  To: roger.pau@citrix.com
  Cc: aliguori@amazon.com, linux-kernel@vger.kernel.org,
	mrushton@amazon.com, david.vrabel@citrix.com, msw@amazon.com,
	xen-devel@lists.xenproject.org, boris.ostrovsky@oracle.com,
	Ian.Campbell@citrix.com


[-- Attachment #1.1: Type: text/plain, Size: 433 bytes --]

On 04/02/14 10:26, Roger Pau Monne wrote:
> This was wrongly introduced in commit 402b27f9, the only difference
> between blkif_request_segment_aligned and blkif_request_segment is
> that the former has a named padding, while both share the same
> memory layout.
>
> Also correct a few minor glitches in the description, including for it
> to no longer assume PAGE_SIZE == 4096.

Tested-by: Matt Rushton <mrushton@amazon.com>

-Matt

[-- Attachment #1.2: Type: text/html, Size: 2017 bytes --]

[-- Attachment #2: Type: text/plain, Size: 126 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2014-02-12 13:43 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-04 10:26 [PATCH v2 0/4] xen-blk: bug fixes Roger Pau Monne
2014-02-04 10:26 ` [PATCH v2 1/4] xen-blkback: fix memory leak when persistent grants are used Roger Pau Monne
2014-02-04 10:26 ` Roger Pau Monne
2014-02-04 10:26 ` Roger Pau Monne
2014-02-04 10:30   ` David Vrabel
2014-02-04 10:30   ` David Vrabel
2014-02-04 10:30   ` David Vrabel
2014-02-04 10:26 ` [PATCH v2 2/4] xen-blkback: fix memory leaks Roger Pau Monne
2014-02-04 10:26   ` Roger Pau Monne
2014-02-04 10:32   ` David Vrabel
2014-02-04 10:32   ` David Vrabel
2014-02-04 10:26 ` [PATCH v2 3/4] xen-blkback: fix shutdown race Roger Pau Monne
2014-02-04 10:34   ` David Vrabel
2014-02-04 10:34   ` David Vrabel
2014-02-04 10:26 ` Roger Pau Monne
2014-02-04 10:26 ` [PATCH v2 4/4] xen-blkif: drop struct blkif_request_segment_aligned Roger Pau Monne
2014-02-04 10:35   ` David Vrabel
2014-02-04 10:35   ` David Vrabel
2014-02-04 10:26 ` Roger Pau Monne
2014-02-04 15:15 ` [Xen-devel] [PATCH v2 0/4] xen-blk: bug fixes Konrad Rzeszutek Wilk
2014-02-06  4:57   ` Matt Wilson
2014-02-06 16:20     ` Konrad Rzeszutek Wilk
2014-02-07  4:24       ` Matt Wilson
2014-02-07  8:08         ` Roger Pau Monné
2014-02-07  8:08         ` [Xen-devel] " Roger Pau Monné
2014-02-07  4:24       ` Matt Wilson
2014-02-06 16:20     ` Konrad Rzeszutek Wilk
2014-02-06  4:57   ` Matt Wilson
2014-02-04 15:15 ` Konrad Rzeszutek Wilk
  -- strict thread matches above, loose matches on Subject: below --
2014-02-07  3:23 [PATCH v2 3/4] xen-blkback: fix shutdown race Matthew Rushton
2014-02-12 13:42 ` Egger, Christoph
2014-02-07  3:31 Matthew Rushton

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.