Linux MIPS Architecture development
 help / color / mirror / Atom feed
* [PATCH 00/16] MIPS: KVM: Misc trivial cleanups
@ 2015-12-16 23:49 James Hogan
  2015-12-16 23:49 ` James Hogan
                   ` (17 more replies)
  0 siblings, 18 replies; 37+ messages in thread
From: James Hogan @ 2015-12-16 23:49 UTC (permalink / raw)
  To: Ralf Baechle, Paolo Bonzini; +Cc: Gleb Natapov, linux-mips, kvm, James Hogan

This patchset contains a bunch of miscellaneous cleanups (which are
mostly trivial) for MIPS KVM & MIPS headers, such as:
- Style/whitespace fixes
- General cleanup and removal of dead code.
- Moving/refactoring of general MIPS definitions out of arch/mips/kvm/
  and into arch/mips/include/asm/ so they can be shared with the rest of
  arch/mips. Specifically COP0 register bits, exception codes, cache
  ops, & instruction opcodes.
- Add MAINTAINERS entry for MIPS KVM.

Due to the interaction with other arch/mips/ code, I think it makes
sense for these to go via the MIPS tree.

James Hogan (16):
  MIPS: KVM: Trivial whitespace and style fixes
  MIPS: KVM: Drop some unused definitions from kvm_host.h
  MIPS: Move definition of DC bit to mipsregs.h
  MIPS: KVM: Drop unused kvm_mips_host_tlb_inv_index()
  MIPS: KVM: Convert EXPORT_SYMBOL to _GPL
  MIPS: KVM: Refactor added offsetof()s
  MIPS: KVM: Make kvm_mips_{init,exit}() static
  MIPS: Move Cause.ExcCode trap codes to mipsregs.h
  MIPS: Update trap codes
  MIPS: Use EXCCODE_ constants with set_except_vector()
  MIPS: Break down cacheops.h definitions
  MIPS: KVM: Use cacheops.h definitions
  MIPS: Move KVM specific opcodes into asm/inst.h
  MIPS: KVM: Add missing newline to kvm_err()
  MIPS: KVM: Consistent use of uint*_t in MMIO handling
  MAINTAINERS: Add KVM for MIPS entry

 MAINTAINERS                       |   8 +++
 arch/mips/Kconfig                 |   3 +-
 arch/mips/include/asm/cacheops.h  | 106 ++++++++++++++++++++--------------
 arch/mips/include/asm/kvm_host.h  |  39 +------------
 arch/mips/include/asm/mipsregs.h  |  34 +++++++++++
 arch/mips/include/uapi/asm/inst.h |   3 +-
 arch/mips/kernel/cpu-bugs64.c     |   8 +--
 arch/mips/kernel/traps.c          |  52 ++++++++---------
 arch/mips/kvm/callback.c          |   2 +-
 arch/mips/kvm/dyntrans.c          |  10 +---
 arch/mips/kvm/emulate.c           | 118 ++++++++++++++++----------------------
 arch/mips/kvm/interrupt.c         |   8 +--
 arch/mips/kvm/locore.S            |  12 ++--
 arch/mips/kvm/mips.c              |  38 ++++++------
 arch/mips/kvm/opcode.h            |  22 -------
 arch/mips/kvm/tlb.c               |  77 +++++++------------------
 arch/mips/kvm/trap_emul.c         |   1 -
 17 files changed, 245 insertions(+), 296 deletions(-)
 delete mode 100644 arch/mips/kvm/opcode.h

Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Gleb Natapov <gleb@kernel.org>
Cc: linux-mips@linux-mips.org
Cc: kvm@vger.kernel.org
-- 
2.4.10

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

end of thread, other threads:[~2015-12-17 10:49 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-16 23:49 [PATCH 00/16] MIPS: KVM: Misc trivial cleanups James Hogan
2015-12-16 23:49 ` James Hogan
2015-12-16 23:49 ` [PATCH 01/16] MIPS: KVM: Trivial whitespace and style fixes James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 02/16] MIPS: KVM: Drop some unused definitions from kvm_host.h James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 03/16] MIPS: Move definition of DC bit to mipsregs.h James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 04/16] MIPS: KVM: Drop unused kvm_mips_host_tlb_inv_index() James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 05/16] MIPS: KVM: Convert EXPORT_SYMBOL to _GPL James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 06/16] MIPS: KVM: Refactor added offsetof()s James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 07/16] MIPS: KVM: Make kvm_mips_{init,exit}() static James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 08/16] MIPS: Move Cause.ExcCode trap codes to mipsregs.h James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 09/16] MIPS: Update trap codes James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 10/16] MIPS: Use EXCCODE_ constants with set_except_vector() James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 11/16] MIPS: Break down cacheops.h definitions James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 12/16] MIPS: KVM: Use " James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 13/16] MIPS: Move KVM specific opcodes into asm/inst.h James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 14/16] MIPS: KVM: Add missing newline to kvm_err() James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 15/16] MIPS: KVM: Consistent use of uint*_t in MMIO handling James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-16 23:49 ` [PATCH 16/16] MAINTAINERS: Add KVM for MIPS entry James Hogan
2015-12-16 23:49   ` James Hogan
2015-12-17 10:39 ` [PATCH 00/16] MIPS: KVM: Misc trivial cleanups Paolo Bonzini
2015-12-17 10:49   ` James Hogan
2015-12-17 10:49     ` James Hogan

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