{"id":806992,"url":"http://patchwork.ozlabs.org/api/1.0/covers/806992/?format=json","project":{"id":2,"url":"http://patchwork.ozlabs.org/api/1.0/projects/2/?format=json","name":"Linux PPC development","link_name":"linuxppc-dev","list_id":"linuxppc-dev.lists.ozlabs.org","list_email":"linuxppc-dev@lists.ozlabs.org","web_url":"https://github.com/linuxppc/wiki/wiki","scm_url":"https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git","webscm_url":"https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git/"},"msgid":"<20170829073404.8885-1-aik@ozlabs.ru>","date":"2017-08-29T07:33:58","name":"[kernel,v2,0/6] powerpc/eeh: Some cleanups","submitter":{"id":7621,"url":"http://patchwork.ozlabs.org/api/1.0/people/7621/?format=json","name":"Alexey Kardashevskiy","email":"aik@ozlabs.ru"},"series":[{"id":322,"url":"http://patchwork.ozlabs.org/api/1.0/series/322/?format=json","date":"2017-08-29T07:34:01","name":"powerpc/eeh: Some cleanups","version":2,"mbox":"http://patchwork.ozlabs.org/series/322/mbox/"}],"headers":{"Return-Path":"<linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org>","X-Original-To":["patchwork-incoming@ozlabs.org","linuxppc-dev@lists.ozlabs.org"],"Delivered-To":["patchwork-incoming@ozlabs.org","linuxppc-dev@lists.ozlabs.org"],"Received":["from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3])\n\t(using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits))\n\t(No client certificate requested)\n\tby ozlabs.org (Postfix) with ESMTPS id 3xhLB84hDNz9t33\n\tfor <patchwork-incoming@ozlabs.org>;\n\tTue, 29 Aug 2017 17:39:28 +1000 (AEST)","from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3])\n\tby lists.ozlabs.org (Postfix) with ESMTP id 3xhLB83c71zDrSB\n\tfor <patchwork-incoming@ozlabs.org>;\n\tTue, 29 Aug 2017 17:39:28 +1000 (AEST)","from ozlabs.ru (ozlabs.ru [107.173.13.209])\n\tby lists.ozlabs.org (Postfix) with ESMTP id 3xhL4b5Vb2zDqYY\n\tfor <linuxppc-dev@lists.ozlabs.org>;\n\tTue, 29 Aug 2017 17:34:39 +1000 (AEST)","from vpl1.ozlabs.ibm.com (localhost [IPv6:::1])\n\tby ozlabs.ru (Postfix) with ESMTP id 654723A60017;\n\tTue, 29 Aug 2017 03:35:15 -0400 (EDT)"],"From":"Alexey Kardashevskiy <aik@ozlabs.ru>","To":"linuxppc-dev@lists.ozlabs.org","Subject":"[PATCH kernel v2 0/6] powerpc/eeh: Some cleanups","Date":"Tue, 29 Aug 2017 17:33:58 +1000","Message-Id":"<20170829073404.8885-1-aik@ozlabs.ru>","X-Mailer":"git-send-email 2.11.0","X-BeenThere":"linuxppc-dev@lists.ozlabs.org","X-Mailman-Version":"2.1.23","Precedence":"list","List-Id":"Linux on PowerPC Developers Mail List\n\t<linuxppc-dev.lists.ozlabs.org>","List-Unsubscribe":"<https://lists.ozlabs.org/options/linuxppc-dev>,\n\t<mailto:linuxppc-dev-request@lists.ozlabs.org?subject=unsubscribe>","List-Archive":"<http://lists.ozlabs.org/pipermail/linuxppc-dev/>","List-Post":"<mailto:linuxppc-dev@lists.ozlabs.org>","List-Help":"<mailto:linuxppc-dev-request@lists.ozlabs.org?subject=help>","List-Subscribe":"<https://lists.ozlabs.org/listinfo/linuxppc-dev>,\n\t<mailto:linuxppc-dev-request@lists.ozlabs.org?subject=subscribe>","Cc":"Alexey Kardashevskiy <aik@ozlabs.ru>,\n\tAndrew Donnellan <andrew.donnellan@au1.ibm.com>","Errors-To":"linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org","Sender":"\"Linuxppc-dev\"\n\t<linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org>"},"content":"Here are few patches to get rid of some cached pointers across EEH and\npowernv code as I was struggling to figure out about lifetime of\nstructures and so on.\n\n\nThis is based on sha1\n98b9f8a45499 Linus Torvalds Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4\n\n\nPlease comment. Thanks.\n\nChangelog:\nv2:\n* added sof/ab to 1/6, 2/6\n* fixed compile issue with pseries platform in the rest of v1\n* split 5/5 from v1 to 2 separate patches (for easier bisect if/when needed)\n\n\n\nAlexey Kardashevskiy (6):\n  powerpc/pci: Remove unused parameter from add_one_dev_pci_data()\n  powerpc/eeh: Reduce to one the number of places where edev is\n    allocated\n  powerpc/eeh: Remove unnecessary pointer to phb from eeh_dev\n  powerpc/eeh: Remove unnecessary config_addr from eeh_dev\n  powerpc/eeh: Reduce use of pci_dn::node\n  powerpc/pci: Remove OF node back pointer from pci_dn\n\n arch/powerpc/include/asm/eeh.h               |  5 +-\n arch/powerpc/include/asm/pci-bridge.h        |  1 -\n arch/powerpc/kernel/eeh.c                    | 16 ++---\n arch/powerpc/kernel/eeh_dev.c                |  2 -\n arch/powerpc/kernel/eeh_driver.c             |  2 +-\n arch/powerpc/kernel/eeh_pe.c                 | 90 ++++++++++++++++------------\n arch/powerpc/kernel/eeh_sysfs.c              |  3 -\n arch/powerpc/kernel/pci_dn.c                 | 22 +++----\n arch/powerpc/platforms/powernv/eeh-powernv.c | 29 +++------\n arch/powerpc/platforms/pseries/eeh_pseries.c |  4 +-\n arch/powerpc/platforms/pseries/msi.c         | 11 +---\n 11 files changed, 81 insertions(+), 104 deletions(-)"}