All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v11 0/9] misc safety certification fixes
@ 2019-03-05 22:38 Stefano Stabellini
  2019-03-05 22:38 ` [PATCH v11 1/9] xen: use __UINTPTR_TYPE__ for uintptr_t Stefano Stabellini
                   ` (9 more replies)
  0 siblings, 10 replies; 54+ messages in thread
From: Stefano Stabellini @ 2019-03-05 22:38 UTC (permalink / raw)
  To: xen-devel
  Cc: sstabellini, andrew.cooper3, George.Dunlap, julien.grall,
	JBeulich, ian.jackson

Hi all,

This version of the series makes use of the macro suggested by Jan with
few modifications. See each patch for a description of the changes.

The following changes since commit 808cff4c2af66afd61973451aeb7e708732abf90:

  sched/credit2: remove stale comment (2019-01-09 15:46:05 +0100)

are available in the git repository at:

  http://xenbits.xenproject.org/git-http/people/sstabellini/xen-unstable.git certifications-11

for you to fetch changes up to 26fb02b5ae59b48b51ca788be91510d8df48ab0a:

  xen: explicit casts when DECLARE_BOUNDS cannot be used (2019-03-05 14:29:51 -0800)

----------------------------------------------------------------
Stefano Stabellini (9):
      xen: use __UINTPTR_TYPE__ for uintptr_t
      xen: introduce ptrdiff_t
      xen: introduce DECLARE_BOUNDS
      xen/arm: use DECLARE_BOUNDS as required
      xen/x86: use DECLARE_BOUNDS as required
      xen/common: use DECLARE_BOUNDS as required
      xen: use DECLARE_BOUNDS as required
      xen: use DECLARE_BOUNDS in alternative.c
      xen: explicit casts when DECLARE_BOUNDS cannot be used

 xen/arch/arm/alternative.c        | 16 +++----
 xen/arch/arm/arm32/livepatch.c    |  2 +-
 xen/arch/arm/arm64/livepatch.c    |  2 +-
 xen/arch/arm/device.c             | 14 ++++---
 xen/arch/arm/livepatch.c          |  4 +-
 xen/arch/arm/mm.c                 | 14 ++++---
 xen/arch/arm/percpu.c             | 11 ++---
 xen/arch/arm/platform.c           |  9 ++--
 xen/arch/arm/setup.c              |  5 ++-
 xen/arch/arm/xen.lds.S            |  3 +-
 xen/arch/x86/alternative.c        | 10 ++---
 xen/arch/x86/efi/efi-boot.h       | 10 +++--
 xen/arch/x86/percpu.c             | 11 ++---
 xen/arch/x86/setup.c              | 14 +++++--
 xen/arch/x86/smpboot.c            |  6 ++-
 xen/arch/x86/xen.lds.S            |  3 +-
 xen/common/kernel.c               | 13 ++++--
 xen/common/lib.c                  |  7 +++-
 xen/common/livepatch.c            |  5 ++-
 xen/common/schedule.c             | 11 ++++-
 xen/common/spinlock.c             |  8 ++--
 xen/common/version.c              |  9 ++--
 xen/common/virtual_region.c       |  4 +-
 xen/drivers/vpci/vpci.c           |  6 +--
 xen/include/asm-arm/alternative.h |  6 ++-
 xen/include/asm-arm/grant_table.h |  3 +-
 xen/include/asm-arm/percpu.h      |  4 +-
 xen/include/asm-x86/alternative.h |  7 +++-
 xen/include/asm-x86/percpu.h      |  6 ++-
 xen/include/xen/kernel.h          | 42 ++++++++++++-------
 xen/include/xen/lib.h             | 88 +++++++++++++++++++++++++++++++++++++++
 xen/include/xen/types.h           |  3 +-
 32 files changed, 259 insertions(+), 97 deletions(-)

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

end of thread, other threads:[~2019-03-08 20:14 UTC | newest]

Thread overview: 54+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-05 22:38 [PATCH v11 0/9] misc safety certification fixes Stefano Stabellini
2019-03-05 22:38 ` [PATCH v11 1/9] xen: use __UINTPTR_TYPE__ for uintptr_t Stefano Stabellini
2019-03-06  7:47   ` Jan Beulich
2019-03-06 21:16     ` Stefano Stabellini
2019-03-07  8:29       ` Jan Beulich
2019-03-07 15:43         ` Ian Jackson
2019-03-08  7:23           ` Jan Beulich
2019-03-08 14:18   ` Andrew Cooper
2019-03-08 15:19     ` Ian Jackson
2019-03-05 22:38 ` [PATCH v11 2/9] xen: introduce ptrdiff_t Stefano Stabellini
2019-03-05 22:38 ` [PATCH v11 3/9] xen: introduce DECLARE_BOUNDS Stefano Stabellini
2019-03-06 15:24   ` Jan Beulich
2019-03-06 20:55     ` Stefano Stabellini
2019-03-07  8:39       ` Jan Beulich
2019-03-07 14:16         ` Ian Jackson
2019-03-08  8:15           ` Jan Beulich
2019-03-08 15:31             ` Ian Jackson
2019-03-05 22:38 ` [PATCH v11 4/9] xen/arm: use DECLARE_BOUNDS as required Stefano Stabellini
2019-03-05 22:38 ` [PATCH v11 5/9] xen/x86: " Stefano Stabellini
2019-03-06 15:33   ` Jan Beulich
2019-03-06 21:05     ` Stefano Stabellini
2019-03-07  8:40       ` Jan Beulich
2019-03-07 14:02       ` Ian Jackson
2019-03-07 14:42         ` George Dunlap
2019-03-08  8:46         ` Jan Beulich
2019-03-08  8:55           ` Juergen Gross
2019-03-08 15:33           ` Ian Jackson
2019-03-06 15:48   ` Jan Beulich
2019-03-06 21:38     ` Stefano Stabellini
2019-03-07  8:50       ` Jan Beulich
2019-03-07 14:43         ` Ian Jackson
2019-03-08  8:22           ` Jan Beulich
2019-03-08 15:36             ` Ian Jackson
2019-03-08 15:57               ` Jan Beulich
2019-03-07 14:00       ` Ian Jackson
2019-03-08 15:43   ` Ian Jackson
2019-03-08 15:49     ` Jan Beulich
2019-03-05 22:38 ` [PATCH v11 6/9] xen/common: " Stefano Stabellini
2019-03-06 15:37   ` Jan Beulich
2019-03-06 21:08     ` Stefano Stabellini
2019-03-05 22:38 ` [PATCH v11 7/9] xen: " Stefano Stabellini
2019-03-05 22:38 ` [PATCH v11 8/9] xen: use DECLARE_BOUNDS in alternative.c Stefano Stabellini
2019-03-06 16:35   ` Jan Beulich
2019-03-06 21:38     ` Stefano Stabellini
2019-03-05 22:38 ` [PATCH v11 9/9] xen: explicit casts when DECLARE_BOUNDS cannot be used Stefano Stabellini
2019-03-07 11:40   ` Jan Beulich
2019-03-07 15:25     ` [PATCH v11 9/9] xen: explicit casts when DECLARE_BOUNDS cannot be used [and 1 more messages] Ian Jackson
2019-03-07 22:55       ` Stefano Stabellini
2019-03-08 15:39         ` [PATCH v11 9/9] xen: explicit casts when DECLARE_BOUNDS cannot be used [and 1 more messages] " Ian Jackson
2019-03-08  8:28       ` [PATCH v11 9/9] xen: explicit casts when DECLARE_BOUNDS cannot be used " Jan Beulich
2019-03-08 15:26 ` SRSL People... [PATCH v11 0/9] misc safety certification fixes Andrew Cooper
2019-03-08 15:44   ` Ian Jackson
2019-03-08 15:46   ` Jan Beulich
2019-03-08 20:14     ` Stefano Stabellini

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.