linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL) xen (stable/for-linus-3.10-rc0-tag) for v3.10 merge window.
@ 2013-04-19 15:32 Konrad Rzeszutek Wilk
  2013-04-21  0:53 ` Linus Torvalds
  2013-04-29 13:32 ` Konrad Rzeszutek Wilk
  0 siblings, 2 replies; 3+ messages in thread
From: Konrad Rzeszutek Wilk @ 2013-04-19 15:32 UTC (permalink / raw)
  To: linux-kernel, Linus Torvalds, xen-devel

[-- Attachment #1: Type: text/plain, Size: 2240 bytes --]

Hey Linus,

I am heading out for a week of vacation but would hate to have missed
the merge window. Hence sending it out early in anticipation that you
will release v3.9 on Sunday.

With that said, please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen.git stable/for-linus-3.10-rc0-tag

which has just a couple of features and mostly bug-fixes. Here is the blurb
copied from the signed tag:
<tag>
Features:
 - Populate the boot_params with EDD data.
 - Cleanups in the IRQ code.
Bug-fixes:
 - CPU hotplug offline/online in PVHVM mode.
 - Re-upload processor PM data after ACPI S3 suspend/resume cycle.
</tag>

Please pull!

 arch/x86/pci/xen.c               |  6 +--
 arch/x86/xen/enlighten.c         | 57 +++++++++++++++++++++++++++-
 arch/x86/xen/smp.c               | 21 ++++++----
 arch/x86/xen/spinlock.c          | 25 ++++++++++++
 arch/x86/xen/time.c              | 13 +++++--
 drivers/video/Kconfig            |  2 +-
 drivers/xen/events.c             | 33 +++++++++++-----
 drivers/xen/xen-acpi-processor.c | 82 +++++++++++++++++++++++++++-------------
 include/xen/events.h             |  3 +-
 9 files changed, 188 insertions(+), 54 deletions(-)

Andrew Jones (1):
      xen kconfig: fix select INPUT_XEN_KBDDEV_FRONTEND

Ben Guthro (2):
      xen: Re-upload processor PM data to hypervisor after S3 resume (v2)
      xen: resolve section mismatch warnings in xen-acpi-processor

David Vrabel (1):
      x86/xen: populate boot_params with EDD data

Jan Beulich (1):
      xen: drop tracking of IRQ vector

Konrad Rzeszutek Wilk (9):
      xen/smp: Fix leakage of timer interrupt line for every CPU online/offline.
      xen/smp/spinlock: Fix leakage of the spinlock interrupt line for every CPU online/offline
      xen/time: Fix kasprintf splat when allocating timer%d IRQ line.
      xen/events: Check that IRQ value passed in is valid.
      xen/time: Add default value of -1 for IRQ and check for that.
      xen/spinlock:  Check against default value of -1 for IRQ line.
      xen/spinlock: Disable IRQ spinlock (PV) allocation on PVHVM
      xen/smp/pvhvm: Don't initialize IRQ_WORKER as we are using the native one.
      xen/smp: Unifiy some of the PVs and PVHVM offline CPU path


[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]

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

* Re: [GIT PULL) xen (stable/for-linus-3.10-rc0-tag) for v3.10 merge window.
  2013-04-19 15:32 [GIT PULL) xen (stable/for-linus-3.10-rc0-tag) for v3.10 merge window Konrad Rzeszutek Wilk
@ 2013-04-21  0:53 ` Linus Torvalds
  2013-04-29 13:32 ` Konrad Rzeszutek Wilk
  1 sibling, 0 replies; 3+ messages in thread
From: Linus Torvalds @ 2013-04-21  0:53 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk
  Cc: Linux Kernel Mailing List, Xen-devel@lists.xensource.com

On Fri, Apr 19, 2013 at 8:32 AM, Konrad Rzeszutek Wilk
<konrad.wilk@oracle.com> wrote:
>
> I am heading out for a week of vacation but would hate to have missed
> the merge window. Hence sending it out early in anticipation that you
> will release v3.9 on Sunday.

Thanks, this should be a shining example for others...

Of course, right now it looks like I'll be making an rc8 tomorrow, not
a final 3.9, so it may all end up moot, and you'll be back by the time
the merge window opens. But hey, this is how things should work,

                 Linus

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

* Re: [GIT PULL) xen (stable/for-linus-3.10-rc0-tag) for v3.10 merge window.
  2013-04-19 15:32 [GIT PULL) xen (stable/for-linus-3.10-rc0-tag) for v3.10 merge window Konrad Rzeszutek Wilk
  2013-04-21  0:53 ` Linus Torvalds
@ 2013-04-29 13:32 ` Konrad Rzeszutek Wilk
  1 sibling, 0 replies; 3+ messages in thread
From: Konrad Rzeszutek Wilk @ 2013-04-29 13:32 UTC (permalink / raw)
  To: linux-kernel, Linus Torvalds, xen-devel

On Fri, Apr 19, 2013 at 11:32:41AM -0400, Konrad Rzeszutek Wilk wrote:
> Hey Linus,
> 
> I am heading out for a week of vacation but would hate to have missed
> the merge window. Hence sending it out early in anticipation that you
> will release v3.9 on Sunday.

Got the week wrong :-) Back from the vacation using this occasion to re-ping
in case this git pull email got lost in your email folder.

The tag is still the same:
  git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen.git stable/for-linus-3.10-rc0-tag

Please pull!

> 
> With that said, please git pull the following tag:
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen.git stable/for-linus-3.10-rc0-tag
> 
> which has just a couple of features and mostly bug-fixes. Here is the blurb
> copied from the signed tag:
> <tag>
> Features:
>  - Populate the boot_params with EDD data.
>  - Cleanups in the IRQ code.
> Bug-fixes:
>  - CPU hotplug offline/online in PVHVM mode.
>  - Re-upload processor PM data after ACPI S3 suspend/resume cycle.
> </tag>
> 
> Please pull!
> 
>  arch/x86/pci/xen.c               |  6 +--
>  arch/x86/xen/enlighten.c         | 57 +++++++++++++++++++++++++++-
>  arch/x86/xen/smp.c               | 21 ++++++----
>  arch/x86/xen/spinlock.c          | 25 ++++++++++++
>  arch/x86/xen/time.c              | 13 +++++--
>  drivers/video/Kconfig            |  2 +-
>  drivers/xen/events.c             | 33 +++++++++++-----
>  drivers/xen/xen-acpi-processor.c | 82 +++++++++++++++++++++++++++-------------
>  include/xen/events.h             |  3 +-
>  9 files changed, 188 insertions(+), 54 deletions(-)
> 
> Andrew Jones (1):
>       xen kconfig: fix select INPUT_XEN_KBDDEV_FRONTEND
> 
> Ben Guthro (2):
>       xen: Re-upload processor PM data to hypervisor after S3 resume (v2)
>       xen: resolve section mismatch warnings in xen-acpi-processor
> 
> David Vrabel (1):
>       x86/xen: populate boot_params with EDD data
> 
> Jan Beulich (1):
>       xen: drop tracking of IRQ vector
> 
> Konrad Rzeszutek Wilk (9):
>       xen/smp: Fix leakage of timer interrupt line for every CPU online/offline.
>       xen/smp/spinlock: Fix leakage of the spinlock interrupt line for every CPU online/offline
>       xen/time: Fix kasprintf splat when allocating timer%d IRQ line.
>       xen/events: Check that IRQ value passed in is valid.
>       xen/time: Add default value of -1 for IRQ and check for that.
>       xen/spinlock:  Check against default value of -1 for IRQ line.
>       xen/spinlock: Disable IRQ spinlock (PV) allocation on PVHVM
>       xen/smp/pvhvm: Don't initialize IRQ_WORKER as we are using the native one.
>       xen/smp: Unifiy some of the PVs and PVHVM offline CPU path
> 



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

end of thread, other threads:[~2013-04-29 13:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-19 15:32 [GIT PULL) xen (stable/for-linus-3.10-rc0-tag) for v3.10 merge window Konrad Rzeszutek Wilk
2013-04-21  0:53 ` Linus Torvalds
2013-04-29 13:32 ` Konrad Rzeszutek Wilk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).