All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ding Tianhong <dingtianhong@huawei.com>
To: Sinan Kaya <okaya@codeaurora.org>, <leedom@chelsio.com>,
	<ashok.raj@intel.com>, <bhelgaas@google.com>,
	<helgaas@kernel.org>, <werner@chelsio.com>,
	<ganeshgr@chelsio.com>, <asit.k.mallick@intel.com>,
	<patrick.j.cramer@intel.com>, <Suravee.Suthikulpanit@amd.com>,
	<Bob.Shaw@amd.com>, <l.stach@pengutronix.de>,
	<amira@mellanox.com>, <gabriele.paoloni@huawei.com>,
	<David.Laight@aculab.com>, <jeffrey.t.kirsher@intel.com>,
	<catalin.marinas@arm.com>, <will.deacon@arm.com>,
	<mark.rutland@arm.com>, <robin.murphy@arm.com>,
	<davem@davemloft.net>, <alexander.duyck@gmail.com>,
	<linux-arm-kernel@lists.infradead.org>, <netdev@vger.kernel.org>,
	<linux-pci@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	<linuxarm@huawei.com>
Subject: Re: [PATCH v7 2/3] PCI: Enable PCIe Relaxed Ordering if supported
Date: Fri, 14 Jul 2017 09:26:15 +0800	[thread overview]
Message-ID: <0260e398-bd8e-6615-6d5c-1f7c07b6fc09@huawei.com> (raw)
In-Reply-To: <e496ff1d-b836-ebef-fdf7-76273aaaaef6@codeaurora.org>



On 2017/7/14 5:09, Sinan Kaya wrote:
> On 7/13/2017 10:21 AM, Ding Tianhong wrote:
>> static void pci_configure_relaxed_ordering(struct pci_dev *dev)
>> +{
>> +	/* We should not alter the relaxed ordering bit for the VF */
>> +	if (dev->is_virtfn)
>> +		return;
>> +
>> +	/* If the releaxed ordering enable bit is not set, do nothing. */
>> +	if (!pcie_relaxed_ordering_supported(dev))
>> +		return;
>> +
>> +	if (pci_dev_should_disable_relaxed_ordering(dev)) {
>> +		pcie_clear_relaxed_ordering(dev);
>> +		dev_info(&dev->dev, "Disable Relaxed Ordering\n");
>> +	}
>> +}
> 
> I couldn't find anywhere where you actually enable the relaxed ordering
> like the subject suggests.
> 
There is no code to enable the PCIe Relaxed Ordering bit in the configuration space,
it is only be enable by default according to the PCIe Standard Specification, what we
do is to distinguish the RC problematic platform and clear the Relaxed Ordering bit
to tell the PCIe EP don't send any TLPs with Relaxed Ordering Attributes to the Root
Complex.

Thanks
Ding

WARNING: multiple messages have this Message-ID (diff)
From: dingtianhong@huawei.com (Ding Tianhong)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 2/3] PCI: Enable PCIe Relaxed Ordering if supported
Date: Fri, 14 Jul 2017 09:26:15 +0800	[thread overview]
Message-ID: <0260e398-bd8e-6615-6d5c-1f7c07b6fc09@huawei.com> (raw)
In-Reply-To: <e496ff1d-b836-ebef-fdf7-76273aaaaef6@codeaurora.org>



On 2017/7/14 5:09, Sinan Kaya wrote:
> On 7/13/2017 10:21 AM, Ding Tianhong wrote:
>> static void pci_configure_relaxed_ordering(struct pci_dev *dev)
>> +{
>> +	/* We should not alter the relaxed ordering bit for the VF */
>> +	if (dev->is_virtfn)
>> +		return;
>> +
>> +	/* If the releaxed ordering enable bit is not set, do nothing. */
>> +	if (!pcie_relaxed_ordering_supported(dev))
>> +		return;
>> +
>> +	if (pci_dev_should_disable_relaxed_ordering(dev)) {
>> +		pcie_clear_relaxed_ordering(dev);
>> +		dev_info(&dev->dev, "Disable Relaxed Ordering\n");
>> +	}
>> +}
> 
> I couldn't find anywhere where you actually enable the relaxed ordering
> like the subject suggests.
> 
There is no code to enable the PCIe Relaxed Ordering bit in the configuration space,
it is only be enable by default according to the PCIe Standard Specification, what we
do is to distinguish the RC problematic platform and clear the Relaxed Ordering bit
to tell the PCIe EP don't send any TLPs with Relaxed Ordering Attributes to the Root
Complex.

Thanks
Ding

  reply	other threads:[~2017-07-14  1:28 UTC|newest]

Thread overview: 114+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-13 14:21 [PATCH v7 0/3] Add new PCI_DEV_FLAGS_NO_RELAXED_ORDERING flag Ding Tianhong
2017-07-13 14:21 ` Ding Tianhong
2017-07-13 14:21 ` [PATCH v7 1/3] PCI: Add new PCIe Fabric End Node flag, PCI_DEV_FLAGS_NO_RELAXED_ORDERING Ding Tianhong
2017-07-13 14:21   ` Ding Tianhong
2017-08-03  8:55   ` Raj, Ashok
2017-08-03  8:55     ` Raj, Ashok
2017-08-03 10:20     ` Ding Tianhong
2017-08-03 10:20       ` Ding Tianhong
2017-07-13 14:21 ` [PATCH v7 2/3] PCI: Enable PCIe Relaxed Ordering if supported Ding Tianhong
2017-07-13 14:21   ` Ding Tianhong
2017-07-13 14:21   ` Ding Tianhong
2017-07-13 21:09   ` Sinan Kaya
2017-07-13 21:09     ` Sinan Kaya
2017-07-14  1:26     ` Ding Tianhong [this message]
2017-07-14  1:26       ` Ding Tianhong
2017-07-14 13:54       ` Sinan Kaya
2017-07-14 13:54         ` Sinan Kaya
2017-07-22  4:19         ` Ding Tianhong
2017-07-22  4:19           ` Ding Tianhong
2017-07-24 15:05           ` Alex Williamson
2017-07-24 15:05             ` Alex Williamson
2017-07-26 18:26             ` Casey Leedom
2017-07-26 18:26               ` Casey Leedom
2017-07-26 18:26               ` Casey Leedom
2017-07-26 18:26               ` Casey Leedom
     [not found]               ` <CAKgT0UeAad6WArvrE71MFJywDs1wOnCF-iJRnbNLrL+knqhXeA@mail.gmail.com>
     [not found]                 ` <CAKgT0Uf5hdXUXja_jUB6_kBg6pyX8zXuOMOGzCVNgeBFMUsWqQ@mail.gmail.com>
2017-07-26 18:44                   ` Alexander Duyck
2017-07-26 19:05                     ` Casey Leedom
2017-07-26 19:05                       ` Casey Leedom
2017-07-26 19:05                       ` Casey Leedom
2017-07-26 19:05                       ` Casey Leedom
2017-07-27  1:01                       ` Ding Tianhong
2017-07-27  1:01                         ` Ding Tianhong
2017-07-27  1:01                         ` Ding Tianhong
2017-07-27  1:01                         ` Ding Tianhong
2017-07-27 17:44                         ` Casey Leedom
2017-07-27 17:44                           ` Casey Leedom
2017-07-27 17:44                           ` Casey Leedom
2017-07-27 17:44                           ` Casey Leedom
2017-07-27 18:42                           ` Raj, Ashok
2017-07-27 18:42                             ` Raj, Ashok
2017-07-27 18:42                             ` Raj, Ashok
2017-07-27 18:42                             ` Raj, Ashok
2017-07-28  2:57                             ` Ding Tianhong
2017-07-28  2:57                               ` Ding Tianhong
2017-07-28  2:57                               ` Ding Tianhong
2017-07-28  2:57                               ` Ding Tianhong
2017-07-28  2:48                           ` Ding Tianhong
2017-07-28  2:48                             ` Ding Tianhong
2017-07-28  2:48                             ` Ding Tianhong
2017-07-28  2:48                             ` Ding Tianhong
2017-07-27  1:08               ` Ding Tianhong
2017-07-27  1:08                 ` Ding Tianhong
2017-07-27  1:08                 ` Ding Tianhong
2017-07-27  1:08                 ` Ding Tianhong
2017-07-27 17:49                 ` Alexander Duyck
2017-07-27 17:49                   ` Alexander Duyck
2017-07-27 17:49                   ` Alexander Duyck
2017-07-27 17:49                   ` Alexander Duyck
2017-07-28  3:00                   ` Ding Tianhong
2017-07-28  3:00                     ` Ding Tianhong
2017-07-28  3:00                     ` Ding Tianhong
2017-07-28  3:00                     ` Ding Tianhong
2017-08-02 17:53                     ` Casey Leedom
2017-08-02 17:53                       ` Casey Leedom
2017-08-02 17:53                       ` Casey Leedom
2017-08-02 17:53                       ` Casey Leedom
2017-08-03  8:31                       ` Raj, Ashok
2017-08-03  8:31                         ` Raj, Ashok
2017-08-03  8:31                         ` Raj, Ashok
2017-08-03  8:31                         ` Raj, Ashok
2017-08-04 20:20                         ` Casey Leedom
2017-08-04 20:20                           ` Casey Leedom
2017-08-04 20:20                           ` Casey Leedom
2017-08-04 20:20                           ` Casey Leedom
2017-08-04 20:21                           ` Raj, Ashok
2017-08-04 20:21                             ` Raj, Ashok
2017-08-04 20:21                             ` Raj, Ashok
2017-08-04 20:21                             ` Raj, Ashok
2017-08-04 20:48                             ` Casey Leedom
2017-08-04 20:48                               ` Casey Leedom
2017-08-04 20:48                               ` Casey Leedom
2017-08-04 20:48                               ` Casey Leedom
2017-08-07  9:04                               ` David Laight
2017-08-07  9:04                                 ` David Laight
2017-08-07  9:04                                 ` David Laight
2017-08-07  9:04                                 ` David Laight
2017-08-03  9:13   ` Raj, Ashok
2017-08-03  9:13     ` Raj, Ashok
2017-08-03 10:22     ` Ding Tianhong
2017-08-03 10:22       ` Ding Tianhong
2017-07-13 14:21 ` [PATCH v7 3/3] net/cxgb4: Use new PCI_DEV_FLAGS_NO_RELAXED_ORDERING flag Ding Tianhong
2017-07-13 14:21   ` Ding Tianhong
2017-07-13 14:21   ` Ding Tianhong
2017-07-13 18:14   ` Alexander Duyck
2017-07-13 18:14     ` Alexander Duyck
2017-07-13 18:14     ` Alexander Duyck
2017-07-13 18:14     ` Alexander Duyck
2017-07-13 18:17     ` Alexander Duyck
2017-07-13 18:17       ` Alexander Duyck
2017-07-13 18:17       ` Alexander Duyck
2017-07-13 18:17       ` Alexander Duyck
2017-07-13 18:44       ` Casey Leedom
2017-07-14 10:23         ` Ding Tianhong
2017-07-14 10:23           ` Ding Tianhong
2017-07-14 10:23           ` Ding Tianhong
2017-07-14 10:23           ` Ding Tianhong
2017-07-14 17:50           ` Casey Leedom
2017-07-14 17:50             ` Casey Leedom
2017-07-14 17:50             ` Casey Leedom
2017-07-14 17:50             ` Casey Leedom
2017-07-14  0:00       ` Casey Leedom
2017-07-14  0:00         ` Casey Leedom
2017-07-14  0:00         ` Casey Leedom
2017-07-14  0:00         ` Casey Leedom

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=0260e398-bd8e-6615-6d5c-1f7c07b6fc09@huawei.com \
    --to=dingtianhong@huawei.com \
    --cc=Bob.Shaw@amd.com \
    --cc=David.Laight@aculab.com \
    --cc=Suravee.Suthikulpanit@amd.com \
    --cc=alexander.duyck@gmail.com \
    --cc=amira@mellanox.com \
    --cc=ashok.raj@intel.com \
    --cc=asit.k.mallick@intel.com \
    --cc=bhelgaas@google.com \
    --cc=catalin.marinas@arm.com \
    --cc=davem@davemloft.net \
    --cc=gabriele.paoloni@huawei.com \
    --cc=ganeshgr@chelsio.com \
    --cc=helgaas@kernel.org \
    --cc=jeffrey.t.kirsher@intel.com \
    --cc=l.stach@pengutronix.de \
    --cc=leedom@chelsio.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=linuxarm@huawei.com \
    --cc=mark.rutland@arm.com \
    --cc=netdev@vger.kernel.org \
    --cc=okaya@codeaurora.org \
    --cc=patrick.j.cramer@intel.com \
    --cc=robin.murphy@arm.com \
    --cc=werner@chelsio.com \
    --cc=will.deacon@arm.com \
    /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.