All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lukas Wunner <lukas@wunner.de>
To: Bjorn Helgaas <helgaas@kernel.org>, linux-pci@vger.kernel.org
Cc: Sinan Kaya <okaya@kernel.org>,
	Mika Westerberg <mika.westerberg@linux.intel.com>,
	Keith Busch <keith.busch@intel.com>,
	David Yang <mmyangfl@gmail.com>
Subject: [PATCH v2 0/8] PCI hotplug diet
Date: Sat, 8 Sep 2018 09:59:01 +0200	[thread overview]
Message-ID: <cover.1536341821.git.lukas@wunner.de> (raw)

Rebase of my PCI hotplug material for the next merge window on current
pci/hotplug branch:

* Patch [1/8] makes pciehp work with broken hardware which hardwires
  Presence Detect to zero.  Originally submitted August 24 in response
  to a user report:
  https://patchwork.ozlabs.org/patch/961860/

* Patches [2/8] to [8/8] contain cleanups and code reduction.
  Originally submitted August 19:
  https://patchwork.ozlabs.org/project/linux-pci/list/?series=61434&state=*


Changes since v1:

* Separate struct unification from renaming of struct members in
  patches [2/8] and [3/8]. (Sinan Kaya)

* Do not change unsigned int to bool in patch [4/8] per commit
  d729593e492e ("checkpatch: add a --strict test for structs with
  bool member definitions").  For the same reason use unsigned int
  instead of bool in patch [6/8] for newly added latch_status and
  adapter_status members in cpci_hotplug.h.

* Add all collected Acked-by and Reviewed-by tags.


Lukas Wunner (8):
  PCI: pciehp: Tolerate Presence Detect hardwired to zero
  PCI: pciehp: Unify controller and slot structs
  PCI: pciehp: Rename controller struct members for clarity
  PCI: pciehp: Reshuffle controller struct for clarity
  PCI: hotplug: Constify hotplug_slot_ops
  PCI: hotplug: Drop hotplug_slot_info
  PCI: hotplug: Embed hotplug_slot
  PCI: hotplug: Document TODOs

 arch/powerpc/include/asm/pnv-pci.h      |   2 +-
 drivers/pci/hotplug/TODO                |  74 +++++++
 drivers/pci/hotplug/acpiphp.h           |  10 +-
 drivers/pci/hotplug/acpiphp_core.c      |  36 +---
 drivers/pci/hotplug/acpiphp_ibm.c       |   2 +-
 drivers/pci/hotplug/cpci_hotplug.h      |  11 +-
 drivers/pci/hotplug/cpci_hotplug_core.c | 105 +++-------
 drivers/pci/hotplug/cpci_hotplug_pci.c  |   6 +-
 drivers/pci/hotplug/cpqphp.h            |   9 +-
 drivers/pci/hotplug/cpqphp_core.c       |  59 ++----
 drivers/pci/hotplug/cpqphp_ctrl.c       |  31 +--
 drivers/pci/hotplug/ibmphp.h            |   9 +-
 drivers/pci/hotplug/ibmphp_core.c       | 121 ++++-------
 drivers/pci/hotplug/ibmphp_ebda.c       |  70 +------
 drivers/pci/hotplug/pci_hotplug_core.c  |  53 ++---
 drivers/pci/hotplug/pciehp.h            | 128 ++++++------
 drivers/pci/hotplug/pciehp_core.c       |  84 +++-----
 drivers/pci/hotplug/pciehp_ctrl.c       | 254 +++++++++++-------------
 drivers/pci/hotplug/pciehp_hpc.c        | 139 +++++--------
 drivers/pci/hotplug/pciehp_pci.c        |  14 +-
 drivers/pci/hotplug/pnv_php.c           |  35 ++--
 drivers/pci/hotplug/rpaphp.h            |  10 +-
 drivers/pci/hotplug/rpaphp_core.c       |  20 +-
 drivers/pci/hotplug/rpaphp_pci.c        |  11 +-
 drivers/pci/hotplug/rpaphp_slot.c       |  22 +-
 drivers/pci/hotplug/s390_pci_hpc.c      |  44 ++--
 drivers/pci/hotplug/sgi_hotplug.c       |  63 +++---
 drivers/pci/hotplug/shpchp.h            |   8 +-
 drivers/pci/hotplug/shpchp_core.c       |  48 ++---
 drivers/pci/hotplug/shpchp_ctrl.c       |  21 +-
 drivers/pci/pci.c                       |   4 +-
 drivers/pci/slot.c                      |   2 +-
 drivers/platform/x86/asus-wmi.c         |  39 +---
 drivers/platform/x86/eeepc-laptop.c     |  43 ++--
 include/linux/pci_hotplug.h             |  43 +---
 35 files changed, 635 insertions(+), 995 deletions(-)
 create mode 100644 drivers/pci/hotplug/TODO

-- 
2.18.0

             reply	other threads:[~2018-09-08  7:59 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-08  7:59 Lukas Wunner [this message]
2018-09-08  7:59 ` [PATCH v2 1/8] PCI: pciehp: Tolerate Presence Detect hardwired to zero Lukas Wunner
2018-09-08  7:59 ` [PATCH v2 5/8] PCI: hotplug: Constify hotplug_slot_ops Lukas Wunner
2018-09-08  7:59 ` [PATCH v2 6/8] PCI: hotplug: Drop hotplug_slot_info Lukas Wunner
2018-09-08  7:59 ` [PATCH v2 8/8] PCI: hotplug: Document TODOs Lukas Wunner
2018-09-08  7:59 ` [PATCH v2 4/8] PCI: pciehp: Reshuffle controller struct for clarity Lukas Wunner
2018-09-08  7:59 ` [PATCH v2 7/8] PCI: hotplug: Embed hotplug_slot Lukas Wunner
2018-09-08  7:59 ` [PATCH v2 2/8] PCI: pciehp: Unify controller and slot structs Lukas Wunner
2018-09-08  7:59 ` [PATCH v2 3/8] PCI: pciehp: Rename controller struct members for clarity Lukas Wunner
2018-09-18 22:55 ` [PATCH v2 0/8] PCI hotplug diet Bjorn Helgaas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1536341821.git.lukas@wunner.de \
    --to=lukas@wunner.de \
    --cc=helgaas@kernel.org \
    --cc=keith.busch@intel.com \
    --cc=linux-pci@vger.kernel.org \
    --cc=mika.westerberg@linux.intel.com \
    --cc=mmyangfl@gmail.com \
    --cc=okaya@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.