From patchwork Mon Oct 5 08:40:02 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kenji Kaneshige X-Patchwork-Id: 51704 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n958flCg031730 for ; Mon, 5 Oct 2009 08:41:47 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758291AbZJEIlL (ORCPT ); Mon, 5 Oct 2009 04:41:11 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758586AbZJEIlL (ORCPT ); Mon, 5 Oct 2009 04:41:11 -0400 Received: from fgwmail5.fujitsu.co.jp ([192.51.44.35]:60485 "EHLO fgwmail5.fujitsu.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758291AbZJEIlK (ORCPT ); Mon, 5 Oct 2009 04:41:10 -0400 Received: from m5.gw.fujitsu.co.jp ([10.0.50.75]) by fgwmail5.fujitsu.co.jp (Fujitsu Gateway) with ESMTP id n958eWZh019454 for (envelope-from kaneshige.kenji@jp.fujitsu.com); Mon, 5 Oct 2009 17:40:32 +0900 Received: from smail (m5 [127.0.0.1]) by outgoing.m5.gw.fujitsu.co.jp (Postfix) with ESMTP id 1594045DE53 for ; Mon, 5 Oct 2009 17:40:32 +0900 (JST) Received: from s5.gw.fujitsu.co.jp (s5.gw.fujitsu.co.jp [10.0.50.95]) by m5.gw.fujitsu.co.jp (Postfix) with ESMTP id DD12F45DE4E for ; Mon, 5 Oct 2009 17:40:31 +0900 (JST) Received: from s5.gw.fujitsu.co.jp (localhost.localdomain [127.0.0.1]) by s5.gw.fujitsu.co.jp (Postfix) with ESMTP id 9808EE1800C for ; Mon, 5 Oct 2009 17:40:31 +0900 (JST) Received: from m105.s.css.fujitsu.com (m105.s.css.fujitsu.com [10.249.87.105]) by s5.gw.fujitsu.co.jp (Postfix) with ESMTP id 5168B1DB805B for ; Mon, 5 Oct 2009 17:40:31 +0900 (JST) Received: from m105.css.fujitsu.com (m105 [127.0.0.1]) by m105.s.css.fujitsu.com (Postfix) with ESMTP id 294BE5D8003; Mon, 5 Oct 2009 17:40:31 +0900 (JST) Received: from [127.0.0.1] (unknown [10.124.100.137]) by m105.s.css.fujitsu.com (Postfix) with ESMTP id B87945D8002; Mon, 5 Oct 2009 17:40:30 +0900 (JST) X-SecurityPolicyCheck-FJ: OK by FujitsuOutboundMailChecker v1.3.1 Received: from KANE-LIFEBOOK[10.124.100.137] by KANE-LIFEBOOK (FujitsuOutboundMailChecker v1.3.1/9992[10.124.100.137]); Mon, 05 Oct 2009 17:40:06 +0900 (JST) Message-ID: <4AC9B0E2.1090809@jp.fujitsu.com> Date: Mon, 05 Oct 2009 17:40:02 +0900 From: Kenji Kaneshige User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) MIME-Version: 1.0 To: jbarnes@virtuousgeek.org, linux-pci@vger.kernel.org Subject: [PATCH 1/6] pciehp: disable DLL state changed event notification References: <4AC9B0AE.3010908@jp.fujitsu.com> In-Reply-To: <4AC9B0AE.3010908@jp.fujitsu.com> Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org Index: 20090928/drivers/pci/hotplug/pciehp_hpc.c =================================================================== --- 20090928.orig/drivers/pci/hotplug/pciehp_hpc.c +++ 20090928/drivers/pci/hotplug/pciehp_hpc.c @@ -866,7 +866,8 @@ static void pcie_disable_notification(st u16 mask; mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE | PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE | - PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE); + PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE | + PCI_EXP_SLTCTL_DLLSCE); if (pcie_write_cmd(ctrl, 0, mask)) ctrl_warn(ctrl, "Cannot disable software notification\n"); }