public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] (xen) stable/for-jens-3.9
@ 2013-02-20  2:57 Konrad Rzeszutek Wilk
  2013-02-20  7:28 ` Jens Axboe
  0 siblings, 1 reply; 5+ messages in thread
From: Konrad Rzeszutek Wilk @ 2013-02-20  2:57 UTC (permalink / raw)
  To: axboe, linux-kernel

Hey Jens,

Please git pull the following branch:

 git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen.git stable/for-jens-3.9

which has bug-fixes that did not make it in v3.8. They all are marked as
material for the stable tree as well. There are two bug-fixes for
the code that has been in there for some time (that is the Jan's fix
and one of mine). And there are two bug-fixes for the persistent grant
feature that debuted in v3.8 for xen blk[back|front]end.

Please pull!

 drivers/block/xen-blkback/blkback.c |  7 +++---
 drivers/block/xen-blkback/xenbus.c  | 49 ++++++++++++++++++-------------------
 drivers/block/xen-blkfront.c        | 13 +++++++---
 include/linux/llist.h               | 25 -------------------
 4 files changed, 38 insertions(+), 56 deletions(-)

Jan Beulich (1):
      xen-blkback: do not leak mode property

Konrad Rzeszutek Wilk (2):
      xen/blkback: Don't trust the handle from the frontend.
      xen-blkfront: drop the use of llist_for_each_entry_safe

Roger Pau Monne (1):
      xen-blkback: use balloon pages for persistent grants

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

* Re: [GIT PULL] (xen) stable/for-jens-3.9
  2013-02-20  2:57 [GIT PULL] (xen) stable/for-jens-3.9 Konrad Rzeszutek Wilk
@ 2013-02-20  7:28 ` Jens Axboe
  2013-02-20 13:25   ` Konrad Rzeszutek Wilk
  0 siblings, 1 reply; 5+ messages in thread
From: Jens Axboe @ 2013-02-20  7:28 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk; +Cc: linux-kernel

On Tue, Feb 19 2013, Konrad Rzeszutek Wilk wrote:
> Hey Jens,
> 
> Please git pull the following branch:
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen.git stable/for-jens-3.9
> 
> which has bug-fixes that did not make it in v3.8. They all are marked as
> material for the stable tree as well. There are two bug-fixes for
> the code that has been in there for some time (that is the Jan's fix
> and one of mine). And there are two bug-fixes for the persistent grant
> feature that debuted in v3.8 for xen blk[back|front]end.

Konrad, the tree is against 3.8, so I'm pulling it into my for-linus
branch which will be pushed a bit after the initial for-3.9/drivers goes
out. I can't pull it into the latter without getting a whole lot of
extra changes too.

-- 
Jens Axboe


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

* Re: [GIT PULL] (xen) stable/for-jens-3.9
  2013-02-20  7:28 ` Jens Axboe
@ 2013-02-20 13:25   ` Konrad Rzeszutek Wilk
  0 siblings, 0 replies; 5+ messages in thread
From: Konrad Rzeszutek Wilk @ 2013-02-20 13:25 UTC (permalink / raw)
  To: Jens Axboe; +Cc: linux-kernel

On Wed, Feb 20, 2013 at 08:28:35AM +0100, Jens Axboe wrote:
> On Tue, Feb 19 2013, Konrad Rzeszutek Wilk wrote:
> > Hey Jens,
> > 
> > Please git pull the following branch:
> > 
> >  git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen.git stable/for-jens-3.9
> > 
> > which has bug-fixes that did not make it in v3.8. They all are marked as
> > material for the stable tree as well. There are two bug-fixes for
> > the code that has been in there for some time (that is the Jan's fix
> > and one of mine). And there are two bug-fixes for the persistent grant
> > feature that debuted in v3.8 for xen blk[back|front]end.
> 
> Konrad, the tree is against 3.8, so I'm pulling it into my for-linus
> branch which will be pushed a bit after the initial for-3.9/drivers goes
> out. I can't pull it into the latter without getting a whole lot of
> extra changes too.

Right. I ought to have rebased on it something much older <sigh> (say
stable/for-jens-3.8 minus the four patches). Will do it next time.

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

* [GIT PULL] (xen) stable/for-jens-3.9
@ 2013-03-20 21:27 Konrad Rzeszutek Wilk
  2013-03-22 14:57 ` Jens Axboe
  0 siblings, 1 reply; 5+ messages in thread
From: Konrad Rzeszutek Wilk @ 2013-03-20 21:27 UTC (permalink / raw)
  To: axboe, linux-kernel, xen-devel

Hey Jens,

Please git pull the following branch:

 git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen.git stable/for-jens-3.9

which has a bunch of fixes. They vary from being able to deal with unknown
requests, overflow in statistics, compile warnings, bug in the error path,
removal of unnecessary logic. There is also one performance fix - which is
to allocate pages for requests when the driver loads - instead of doing it
per request.

That is it. Please pull!

 drivers/block/xen-blkback/blkback.c |  68 +++++++++-------
 drivers/block/xen-blkback/common.h  |  40 ++++++++--
 drivers/block/xen-blkback/xenbus.c  |  14 ++--
 drivers/block/xen-blkfront.c        | 154 +++++++++++++++++++++---------------
 include/xen/interface/io/blkif.h    |  10 +++
 5 files changed, 179 insertions(+), 107 deletions(-)

Chen Gang (1):
      xen/xen-blkback: preq.dev is used without initialized

David Vrabel (1):
      xen/blkback: correctly respond to unknown, non-native requests

Jan Beulich (1):
      xen-blkback: fix dispatch_rw_block_io() error path

Mihnea Dobrescu-Balaur (1):
      xen-blkfront: replace kmalloc and then memcpy with kmemdup

Roger Pau Monne (5):
      xen-blkback: fix foreach_grant_safe to handle empty lists
      xen-blkfront: switch from llist to list
      xen-blkback: don't store dev_bus_addr
      xen-blkfront: pre-allocate pages for requests
      xen-blkfront: remove frame list from blk_shadow

Zoltan Kiss (1):
      xen/blkback: Change statistics counter types to unsigned


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

* Re: [GIT PULL] (xen) stable/for-jens-3.9
  2013-03-20 21:27 Konrad Rzeszutek Wilk
@ 2013-03-22 14:57 ` Jens Axboe
  0 siblings, 0 replies; 5+ messages in thread
From: Jens Axboe @ 2013-03-22 14:57 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk; +Cc: linux-kernel, xen-devel

On Wed, Mar 20 2013, Konrad Rzeszutek Wilk wrote:
> Hey Jens,
> 
> Please git pull the following branch:
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen.git stable/for-jens-3.9
> 
> which has a bunch of fixes. They vary from being able to deal with unknown
> requests, overflow in statistics, compile warnings, bug in the error path,
> removal of unnecessary logic. There is also one performance fix - which is
> to allocate pages for requests when the driver loads - instead of doing it
> per request.

Pulled, thanks Konrad.

-- 
Jens Axboe


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

end of thread, other threads:[~2013-03-22 14:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-20  2:57 [GIT PULL] (xen) stable/for-jens-3.9 Konrad Rzeszutek Wilk
2013-02-20  7:28 ` Jens Axboe
2013-02-20 13:25   ` Konrad Rzeszutek Wilk
  -- strict thread matches above, loose matches on Subject: below --
2013-03-20 21:27 Konrad Rzeszutek Wilk
2013-03-22 14:57 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox