linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] (xen) stable/for-linus-3.14-rc0-tag
@ 2014-01-22 19:36 Konrad Rzeszutek Wilk
  2014-01-23  6:08 ` Linus Torvalds
  0 siblings, 1 reply; 2+ messages in thread
From: Konrad Rzeszutek Wilk @ 2014-01-22 19:36 UTC (permalink / raw)
  To: Linus Torvalds, linux-kernel, xen-devel; +Cc: boris.ostrovsky, david.vrabel

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

Hey Linus,

Please git pull the following tag:

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

which has two major features that Xen community is excited about:
<blurb  - please include it in the merge commit>

The first is event channel scalability by David Vrabel - we switch over from an
two-level per-cpu bitmap of events (IRQs) - to an FIFO queue with priorities.
This lets us be able to handle more events, have lower latency, and better
scalability. Good stuff.

The other is PVH by Mukesh Rathor. In short, PV is a mode where the kernel lets
the hypervisor program page-tables, segments, etc. With EPT/NPT capabilities in
current processors, the overhead of doing this in an HVM (Hardware Virtual
Machine) container is much lower than the hypervisor doing it for us. In short
we let a PV guest run without doing page-table, segment, syscall, etc updates
through the hypervisor - instead it is all done within the guest container.
It is a "hybrid" PV - hence the 'PVH' name - a PV guest within an HVM container.

The major benefits are less code to deal with - for example we only
use one function from the the pv_mmu_ops (which has 39 function calls);
faster performance for syscall (no context switches into the hypervisor);
less traps on various operations; etc.

It is still being baked - the ABI is not yet set in stone. But it is
pretty awesome and we are excited about it.

Lastly, there are some changes to ARM code - you should get a simple conflict
which has been resolved in #linux-next.

In short, this pull has awesome features.

</blurb  - please include it in the merge commit>

Please pull!

 MAINTAINERS                                |    1 +
 arch/arm/include/asm/xen/page.h            |    3 +-
 arch/arm/xen/enlighten.c                   |    9 +-
 arch/x86/include/asm/xen/page.h            |    8 +-
 arch/x86/xen/Kconfig                       |    4 +
 arch/x86/xen/enlighten.c                   |  126 +-
 arch/x86/xen/grant-table.c                 |   63 +
 arch/x86/xen/irq.c                         |    5 +-
 arch/x86/xen/mmu.c                         |  166 ++-
 arch/x86/xen/p2m.c                         |   15 +-
 arch/x86/xen/platform-pci-unplug.c         |   79 +-
 arch/x86/xen/setup.c                       |   40 +-
 arch/x86/xen/smp.c                         |   49 +-
 arch/x86/xen/time.c                        |    1 +
 arch/x86/xen/xen-head.S                    |   25 +-
 arch/x86/xen/xen-ops.h                     |    1 +
 drivers/block/xen-blkfront.c               |    4 +-
 drivers/char/tpm/xen-tpmfront.c            |    4 +
 drivers/input/misc/xen-kbdfront.c          |    4 +
 drivers/net/xen-netfront.c                 |    2 +-
 drivers/pci/xen-pcifront.c                 |    4 +
 drivers/video/xen-fbfront.c                |    6 +-
 drivers/xen/Kconfig                        |    1 -
 drivers/xen/Makefile                       |    3 +-
 drivers/xen/balloon.c                      |    9 +-
 drivers/xen/dbgp.c                         |    2 +-
 drivers/xen/events.c                       | 1935 ----------------------------
 drivers/xen/events/Makefile                |    5 +
 drivers/xen/events/events_2l.c             |  372 ++++++
 drivers/xen/events/events_base.c           | 1716 ++++++++++++++++++++++++
 drivers/xen/events/events_fifo.c           |  428 ++++++
 drivers/xen/events/events_internal.h       |  150 +++
 drivers/xen/evtchn.c                       |    2 +-
 drivers/xen/gntdev.c                       |    2 +-
 drivers/xen/grant-table.c                  |   90 +-
 drivers/xen/pci.c                          |    2 +
 drivers/xen/platform-pci.c                 |   11 +-
 drivers/xen/xenbus/xenbus_client.c         |    3 +-
 drivers/xen/xenbus/xenbus_probe_frontend.c |    2 +-
 include/xen/events.h                       |    9 +
 include/xen/grant_table.h                  |    9 +-
 include/xen/interface/elfnote.h            |   13 +
 include/xen/interface/event_channel.h      |   68 +
 include/xen/interface/xen.h                |    6 -
 include/xen/platform_pci.h                 |   25 +-
 include/xen/xen.h                          |   14 +
 46 files changed, 3379 insertions(+), 2117 deletions(-)


Ben Hutchings (1):
      xen/pci: Fix build on non-x86

David Vrabel (15):
      xen/events: refactor retrigger_dynirq() and resend_irq_on_evtchn()
      xen/events: remove unnecessary init_evtchn_cpu_bindings()
      xen/events: move drivers/xen/events.c into drivers/xen/events/
      xen/events: move 2-level specific code into its own file
      xen/events: add struct evtchn_ops for the low-level port operations
      xen/events: allow setup of irq_info to fail
      xen/events: add a evtchn_op for port setup
      xen/events: Refactor evtchn_to_irq array to be dynamically allocated
      xen/events: add xen_evtchn_mask_all()
      xen/evtchn: support more than 4096 ports
      xen/events: Add the hypervisor interface for the FIFO-based event channels
      xen/events: allow event channel priority to be set
      xen/x86: set VIRQ_TIMER priority to maximum
      xen/events: use the FIFO-based ABI if available
      MAINTAINERS: add git repository for Xen

Ian Campbell (1):
      xen: balloon: enable for ARM

Jie Liu (1):
      xen: simplify balloon_first_page() with list_first_entry_or_null()

Konrad Rzeszutek Wilk (12):
      xen/pvhvm: If xen_platform_pci=0 is set don't blow up (v4).
      xen/pvhvm: Remove the xen_platform_pci int.
      xen/pvh: Don't setup P2M tree.
      xen/mmu/p2m: Refactor the xen_pagetable_init code (v2).
      xen/mmu: Cleanup xen_pagetable_p2m_copy a bit.
      xen/grants: Remove gnttab_max_grant_frames dependency on gnttab_init.
      xen/grant-table: Refactor gnttab_init
      xen/grant: Implement an grant frame array struct (v3).
      xen/pvh: Piggyback on PVHVM for grant driver (v4)
      xen/grant-table: Force to use v1 of grants.
      xen/pvh: Fix compile issues with xen_pvh_domain()
      xen/pvh: Use 'depend' instead of 'select'.

Mukesh Rathor (12):
      xen/p2m: Check for auto-xlat when doing mfn_to_local_pfn.
      xen/pvh/x86: Define what an PVH guest is (v3).
      xen/pvh: Early bootup changes in PV code (v4).
      xen/pvh: MMU changes for PVH (v2)
      xen/pvh/mmu: Use PV TLB instead of native.
      xen/pvh: Setup up shared_info.
      xen/pvh: Load GDT/GS in early PV bootup code for BSP.
      xen/pvh: Secondary VCPU bringup (non-bootup CPUs)
      xen/pvh: Update E820 to work with PVH (v2)
      xen/pvh: Piggyback on PVHVM for event channels (v2)
      xen/pvh: Piggyback on PVHVM XenBus.
      xen/pvh: Support ParaVirtualized Hardware extensions (v3).

Paul Gortmaker (1):
      xen: delete new instances of __cpuinit usage

Roger Pau Monne (1):
      xen/pvh: Set X86_CR0_WP and others in CR0 (v2)

Stefano Stabellini (1):
      xen/fb: allow xenfb initialization for hvm guests

Wei Liu (3):
      asm/xen/page.h: remove redundant semicolon
      xen/events: introduce test_and_set_mask()
      xen/events: replace raw bit ops with functions

Wei Yongjun (3):
      xen/pvh: remove duplicated include from enlighten.c
      xen-platform: fix error return code in platform_pci_init()
      xen/evtchn_fifo: fix error return code in evtchn_fifo_setup()

Yijing Wang (1):
      xen: Use dev_is_pci() to check whether it is pci device


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

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

* Re: [GIT PULL] (xen) stable/for-linus-3.14-rc0-tag
  2014-01-22 19:36 [GIT PULL] (xen) stable/for-linus-3.14-rc0-tag Konrad Rzeszutek Wilk
@ 2014-01-23  6:08 ` Linus Torvalds
  0 siblings, 0 replies; 2+ messages in thread
From: Linus Torvalds @ 2014-01-23  6:08 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk
  Cc: Linux Kernel Mailing List, Xen-devel@lists.xensource.com,
	Boris Ostrovsky, David Vrabel

On Wed, Jan 22, 2014 at 11:36 AM, Konrad Rzeszutek Wilk
<konrad.wilk@oracle.com> wrote:
>
>  46 files changed, 3379 insertions(+), 2117 deletions(-)

Please fix your script to detect renames - add '-M' to your "git diff
--stat" line (and '--summary' too, for that matter)

The correct statistics are actually

 45 files changed, 1952 insertions(+), 690 deletions(-)
 rename drivers/xen/{events.c => events/events_base.c} (70%)

as rename detection would have shown.

(Rename detection isn't the default for git, because the resulting
diffs aren't applicable by old broken versions of patch. Some day I
might ask Junio to consider making it the default, but in the name of
interoperability that day is years from now.. GNU patch actually does
understand rename diffs, but other tools like diffstat etc still
don't)

            Linus

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

end of thread, other threads:[~2014-01-23  6:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-22 19:36 [GIT PULL] (xen) stable/for-linus-3.14-rc0-tag Konrad Rzeszutek Wilk
2014-01-23  6:08 ` Linus Torvalds

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).