All of lore.kernel.org
 help / color / mirror / Atom feed
From: Oliver <oohall@gmail.com>
To: Logan Gunthorpe <logang@deltatee.com>
Cc: "Jens Axboe" <axboe@kernel.dk>,
	linux-block@vger.kernel.org,
	"linux-nvdimm@lists.01.org" <linux-nvdimm@lists.01.org>,
	linux-rdma@vger.kernel.org, linux-pci@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-nvme@lists.infradead.org,
	"Keith Busch" <keith.busch@intel.com>,
	"Alex Williamson" <alex.williamson@redhat.com>,
	"Jason Gunthorpe" <jgg@mellanox.com>,
	"Jérôme Glisse" <jglisse@redhat.com>,
	"Benjamin Herrenschmidt" <benh@kernel.crashing.org>,
	"Bjorn Helgaas" <bhelgaas@google.com>,
	"Max Gurtovoy" <maxg@mellanox.com>,
	"Christoph Hellwig" <hch@lst.de>
Subject: Re: [PATCH v2 07/10] nvme-pci: Use PCI p2pmem subsystem to manage the CMB
Date: Tue, 6 Mar 2018 21:40:51 +1100	[thread overview]
Message-ID: <CAOSf1CG3jdx9RdhCgq+d0fdYLLByhknsXfkUYwigzQzZM0xfGw@mail.gmail.com> (raw)
In-Reply-To: <416d8d27-200f-befb-1c30-14544fffcba0@deltatee.com>

On Tue, Mar 6, 2018 at 12:14 PM, Logan Gunthorpe <logang@deltatee.com> wrote:
>
> On 05/03/18 05:49 PM, Oliver wrote:
>>
>> It's in arch/powerpc/kernel/io.c as _memcpy_toio() and it has two full
>> barriers!
>>
>> Awesome!
>>
>> Our io.h indicates that our iomem accessors are designed to provide x86ish
>> strong ordering of accesses to MMIO space. The git log indicates
>> arch/powerpc/kernel/io.c has barely been touched in the last decade so
>> odds are most of that code was written in the elder days when people
>> were less aware of ordering issues. It might just be overly conservative
>> by today's standards, but maybe not (see below).
>
>
> Yes, that seems overly conservative.
>
>> (I'm not going to suggest ditching the lwsync trick. mpe is not going
>> to take that patch
>> without a really good reason)
>
>
> Well, that's pretty gross. Is this not exactly the situation mmiowb() is
> meant to solve? See [1].

Yep, mmiowb() is supposed to be used in this situation. According to BenH,
author of that io_sync hack, we implement the stronger semantics
so that we don't break existing drivers that assume spin_unlock() does
order i/o even though it's not supposed to. At a guess the x86 version of
spin_unlock() happens to do that so the rest of us need to either live
with it or fix all the bugs :)

> Though, you're right in principle. Even if power was similar to other
> systems in this way, it's still a risk that if these pages get passed
> somewhere in the kernel that uses a spin lock like that without an mmiowb()
> call, then it's going to have a bug. For now, the risk is pretty low as we
> know exactly where all the p2pmem pages will be used but if it gets into
> other places, all bets are off.

Yeah this was my main concern with the whole approach. For ioremap()ed
memory we have the __iomem annotation to help with tracking when we
need to be careful, but we'd lose that entirely here.

> I did do some work trying to make a safe
> version of io-pages and also trying to change from pages to pfn_t in large
> areas but neither approach seemed likely to get any traction in the
> community, at least not in the near term.

It's a tricky problem. HMM with DEVICE_PRIVATE might be more
palatable than the pfn_t conversion since there would still be struct pages
backing the device memory. That said, there are probably other issues with
device private memory not being part of the linear mapping, but HMM
provides some assistance there.

Oliver
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

WARNING: multiple messages have this Message-ID (diff)
From: Oliver <oohall@gmail.com>
To: Logan Gunthorpe <logang@deltatee.com>
Cc: "Keith Busch" <keith.busch@intel.com>,
	linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org,
	linux-nvme@lists.infradead.org, linux-rdma@vger.kernel.org,
	"linux-nvdimm@lists.01.org" <linux-nvdimm@lists.01.org>,
	linux-block@vger.kernel.org, "Jens Axboe" <axboe@kernel.dk>,
	"Benjamin Herrenschmidt" <benh@kernel.crashing.org>,
	"Alex Williamson" <alex.williamson@redhat.com>,
	"Jérôme Glisse" <jglisse@redhat.com>,
	"Jason Gunthorpe" <jgg@mellanox.com>,
	"Bjorn Helgaas" <bhelgaas@google.com>,
	"Max Gurtovoy" <maxg@mellanox.com>,
	"Christoph Hellwig" <hch@lst.de>
Subject: Re: [PATCH v2 07/10] nvme-pci: Use PCI p2pmem subsystem to manage the CMB
Date: Tue, 6 Mar 2018 21:40:51 +1100	[thread overview]
Message-ID: <CAOSf1CG3jdx9RdhCgq+d0fdYLLByhknsXfkUYwigzQzZM0xfGw@mail.gmail.com> (raw)
In-Reply-To: <416d8d27-200f-befb-1c30-14544fffcba0@deltatee.com>

On Tue, Mar 6, 2018 at 12:14 PM, Logan Gunthorpe <logang@deltatee.com> wrote:
>
> On 05/03/18 05:49 PM, Oliver wrote:
>>
>> It's in arch/powerpc/kernel/io.c as _memcpy_toio() and it has two full
>> barriers!
>>
>> Awesome!
>>
>> Our io.h indicates that our iomem accessors are designed to provide x86ish
>> strong ordering of accesses to MMIO space. The git log indicates
>> arch/powerpc/kernel/io.c has barely been touched in the last decade so
>> odds are most of that code was written in the elder days when people
>> were less aware of ordering issues. It might just be overly conservative
>> by today's standards, but maybe not (see below).
>
>
> Yes, that seems overly conservative.
>
>> (I'm not going to suggest ditching the lwsync trick. mpe is not going
>> to take that patch
>> without a really good reason)
>
>
> Well, that's pretty gross. Is this not exactly the situation mmiowb() is
> meant to solve? See [1].

Yep, mmiowb() is supposed to be used in this situation. According to BenH,
author of that io_sync hack, we implement the stronger semantics
so that we don't break existing drivers that assume spin_unlock() does
order i/o even though it's not supposed to. At a guess the x86 version of
spin_unlock() happens to do that so the rest of us need to either live
with it or fix all the bugs :)

> Though, you're right in principle. Even if power was similar to other
> systems in this way, it's still a risk that if these pages get passed
> somewhere in the kernel that uses a spin lock like that without an mmiowb()
> call, then it's going to have a bug. For now, the risk is pretty low as we
> know exactly where all the p2pmem pages will be used but if it gets into
> other places, all bets are off.

Yeah this was my main concern with the whole approach. For ioremap()ed
memory we have the __iomem annotation to help with tracking when we
need to be careful, but we'd lose that entirely here.

> I did do some work trying to make a safe
> version of io-pages and also trying to change from pages to pfn_t in large
> areas but neither approach seemed likely to get any traction in the
> community, at least not in the near term.

It's a tricky problem. HMM with DEVICE_PRIVATE might be more
palatable than the pfn_t conversion since there would still be struct pages
backing the device memory. That said, there are probably other issues with
device private memory not being part of the linear mapping, but HMM
provides some assistance there.

Oliver

WARNING: multiple messages have this Message-ID (diff)
From: Oliver <oohall-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Logan Gunthorpe <logang-OTvnGxWRz7hWk0Htik3J/w@public.gmane.org>
Cc: "Jens Axboe" <axboe-tSWWG44O7X1aa/9Udqfwiw@public.gmane.org>,
	linux-block-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	"linux-nvdimm-hn68Rpc1hR1g9hUCZPvPmw@public.gmane.org"
	<linux-nvdimm-hn68Rpc1hR1g9hUCZPvPmw@public.gmane.org>,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-pci-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-nvme-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	"Keith Busch"
	<keith.busch-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
	"Alex Williamson"
	<alex.williamson-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
	"Jason Gunthorpe" <jgg-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
	"Jérôme Glisse" <jglisse-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
	"Benjamin Herrenschmidt"
	<benh-XVmvHMARGAS8U2dJNN8I7kB+6BGkLq7r@public.gmane.org>,
	"Bjorn Helgaas"
	<bhelgaas-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>,
	"Max Gurtovoy" <maxg-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
	"Christoph Hellwig" <hch-jcswGhMUV9g@public.gmane.org>
Subject: Re: [PATCH v2 07/10] nvme-pci: Use PCI p2pmem subsystem to manage the CMB
Date: Tue, 6 Mar 2018 21:40:51 +1100	[thread overview]
Message-ID: <CAOSf1CG3jdx9RdhCgq+d0fdYLLByhknsXfkUYwigzQzZM0xfGw@mail.gmail.com> (raw)
In-Reply-To: <416d8d27-200f-befb-1c30-14544fffcba0-OTvnGxWRz7hWk0Htik3J/w@public.gmane.org>

On Tue, Mar 6, 2018 at 12:14 PM, Logan Gunthorpe <logang-OTvnGxWRz7hWk0Htik3J/w@public.gmane.org> wrote:
>
> On 05/03/18 05:49 PM, Oliver wrote:
>>
>> It's in arch/powerpc/kernel/io.c as _memcpy_toio() and it has two full
>> barriers!
>>
>> Awesome!
>>
>> Our io.h indicates that our iomem accessors are designed to provide x86ish
>> strong ordering of accesses to MMIO space. The git log indicates
>> arch/powerpc/kernel/io.c has barely been touched in the last decade so
>> odds are most of that code was written in the elder days when people
>> were less aware of ordering issues. It might just be overly conservative
>> by today's standards, but maybe not (see below).
>
>
> Yes, that seems overly conservative.
>
>> (I'm not going to suggest ditching the lwsync trick. mpe is not going
>> to take that patch
>> without a really good reason)
>
>
> Well, that's pretty gross. Is this not exactly the situation mmiowb() is
> meant to solve? See [1].

Yep, mmiowb() is supposed to be used in this situation. According to BenH,
author of that io_sync hack, we implement the stronger semantics
so that we don't break existing drivers that assume spin_unlock() does
order i/o even though it's not supposed to. At a guess the x86 version of
spin_unlock() happens to do that so the rest of us need to either live
with it or fix all the bugs :)

> Though, you're right in principle. Even if power was similar to other
> systems in this way, it's still a risk that if these pages get passed
> somewhere in the kernel that uses a spin lock like that without an mmiowb()
> call, then it's going to have a bug. For now, the risk is pretty low as we
> know exactly where all the p2pmem pages will be used but if it gets into
> other places, all bets are off.

Yeah this was my main concern with the whole approach. For ioremap()ed
memory we have the __iomem annotation to help with tracking when we
need to be careful, but we'd lose that entirely here.

> I did do some work trying to make a safe
> version of io-pages and also trying to change from pages to pfn_t in large
> areas but neither approach seemed likely to get any traction in the
> community, at least not in the near term.

It's a tricky problem. HMM with DEVICE_PRIVATE might be more
palatable than the pfn_t conversion since there would still be struct pages
backing the device memory. That said, there are probably other issues with
device private memory not being part of the linear mapping, but HMM
provides some assistance there.

Oliver

WARNING: multiple messages have this Message-ID (diff)
From: oohall@gmail.com (Oliver)
Subject: [PATCH v2 07/10] nvme-pci: Use PCI p2pmem subsystem to manage the CMB
Date: Tue, 6 Mar 2018 21:40:51 +1100	[thread overview]
Message-ID: <CAOSf1CG3jdx9RdhCgq+d0fdYLLByhknsXfkUYwigzQzZM0xfGw@mail.gmail.com> (raw)
In-Reply-To: <416d8d27-200f-befb-1c30-14544fffcba0@deltatee.com>

On Tue, Mar 6, 2018@12:14 PM, Logan Gunthorpe <logang@deltatee.com> wrote:
>
> On 05/03/18 05:49 PM, Oliver wrote:
>>
>> It's in arch/powerpc/kernel/io.c as _memcpy_toio() and it has two full
>> barriers!
>>
>> Awesome!
>>
>> Our io.h indicates that our iomem accessors are designed to provide x86ish
>> strong ordering of accesses to MMIO space. The git log indicates
>> arch/powerpc/kernel/io.c has barely been touched in the last decade so
>> odds are most of that code was written in the elder days when people
>> were less aware of ordering issues. It might just be overly conservative
>> by today's standards, but maybe not (see below).
>
>
> Yes, that seems overly conservative.
>
>> (I'm not going to suggest ditching the lwsync trick. mpe is not going
>> to take that patch
>> without a really good reason)
>
>
> Well, that's pretty gross. Is this not exactly the situation mmiowb() is
> meant to solve? See [1].

Yep, mmiowb() is supposed to be used in this situation. According to BenH,
author of that io_sync hack, we implement the stronger semantics
so that we don't break existing drivers that assume spin_unlock() does
order i/o even though it's not supposed to. At a guess the x86 version of
spin_unlock() happens to do that so the rest of us need to either live
with it or fix all the bugs :)

> Though, you're right in principle. Even if power was similar to other
> systems in this way, it's still a risk that if these pages get passed
> somewhere in the kernel that uses a spin lock like that without an mmiowb()
> call, then it's going to have a bug. For now, the risk is pretty low as we
> know exactly where all the p2pmem pages will be used but if it gets into
> other places, all bets are off.

Yeah this was my main concern with the whole approach. For ioremap()ed
memory we have the __iomem annotation to help with tracking when we
need to be careful, but we'd lose that entirely here.

> I did do some work trying to make a safe
> version of io-pages and also trying to change from pages to pfn_t in large
> areas but neither approach seemed likely to get any traction in the
> community, at least not in the near term.

It's a tricky problem. HMM with DEVICE_PRIVATE might be more
palatable than the pfn_t conversion since there would still be struct pages
backing the device memory. That said, there are probably other issues with
device private memory not being part of the linear mapping, but HMM
provides some assistance there.

Oliver

  reply	other threads:[~2018-03-06 10:34 UTC|newest]

Thread overview: 504+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-28 23:39 [PATCH v2 00/10] Copy Offload in NVMe Fabrics with P2P PCI Memory Logan Gunthorpe
2018-02-28 23:39 ` Logan Gunthorpe
2018-02-28 23:39 ` Logan Gunthorpe
2018-02-28 23:39 ` Logan Gunthorpe
     [not found] ` <20180228234006.21093-1-logang-OTvnGxWRz7hWk0Htik3J/w@public.gmane.org>
2018-02-28 23:39   ` [PATCH v2 01/10] PCI/P2PDMA: Support peer to peer memory Logan Gunthorpe
2018-02-28 23:39     ` Logan Gunthorpe
2018-02-28 23:39     ` Logan Gunthorpe
2018-03-01 17:37     ` Bjorn Helgaas
2018-03-01 17:37       ` Bjorn Helgaas
2018-03-01 17:37       ` Bjorn Helgaas
2018-03-01 17:37       ` Bjorn Helgaas
2018-03-01 18:55       ` Logan Gunthorpe
2018-03-01 18:55         ` Logan Gunthorpe
2018-03-01 18:55         ` Logan Gunthorpe
2018-03-01 18:55         ` Logan Gunthorpe
2018-03-01 23:00         ` Bjorn Helgaas
2018-03-01 23:00           ` Bjorn Helgaas
2018-03-01 23:00           ` Bjorn Helgaas
2018-03-01 23:00           ` Bjorn Helgaas
2018-03-01 23:06           ` Logan Gunthorpe
2018-03-01 23:06             ` Logan Gunthorpe
2018-03-01 23:06             ` Logan Gunthorpe
2018-03-01 23:06             ` Logan Gunthorpe
2018-03-01 23:14             ` Stephen  Bates
2018-03-01 23:14               ` Stephen  Bates
2018-03-01 23:14               ` Stephen  Bates
2018-03-01 23:14               ` Stephen  Bates
2018-03-01 23:14               ` Stephen  Bates
2018-03-01 23:45               ` Bjorn Helgaas
2018-03-01 23:45                 ` Bjorn Helgaas
2018-03-01 23:45                 ` Bjorn Helgaas
2018-03-01 23:45                 ` Bjorn Helgaas
2018-02-28 23:39   ` [PATCH v2 03/10] PCI/P2PDMA: Add PCI p2pmem dma mappings to adjust the bus offset Logan Gunthorpe
2018-02-28 23:39     ` Logan Gunthorpe
2018-02-28 23:39     ` Logan Gunthorpe
2018-03-01 17:49     ` Bjorn Helgaas
2018-03-01 17:49       ` Bjorn Helgaas
2018-03-01 17:49       ` Bjorn Helgaas
2018-03-01 17:49       ` Bjorn Helgaas
2018-03-01 19:36       ` Logan Gunthorpe
2018-03-01 19:36         ` Logan Gunthorpe
2018-03-01 19:36         ` Logan Gunthorpe
2018-03-01 19:36         ` Logan Gunthorpe
2018-02-28 23:39 ` [PATCH v2 02/10] PCI/P2PDMA: Add sysfs group to display p2pmem stats Logan Gunthorpe
2018-02-28 23:39   ` Logan Gunthorpe
2018-02-28 23:39   ` Logan Gunthorpe
2018-02-28 23:39   ` Logan Gunthorpe
2018-03-01 17:44   ` Bjorn Helgaas
2018-03-01 17:44     ` Bjorn Helgaas
2018-03-01 17:44     ` Bjorn Helgaas
2018-03-01 17:44     ` Bjorn Helgaas
2018-03-02  0:15     ` Logan Gunthorpe
2018-03-02  0:15       ` Logan Gunthorpe
2018-03-02  0:15       ` Logan Gunthorpe
2018-03-02  0:15       ` Logan Gunthorpe
2018-03-02  0:36       ` Dan Williams
2018-03-02  0:36         ` Dan Williams
2018-03-02  0:36         ` Dan Williams
2018-03-02  0:36         ` Dan Williams
2018-03-02  0:37         ` Logan Gunthorpe
2018-03-02  0:37           ` Logan Gunthorpe
2018-03-02  0:37           ` Logan Gunthorpe
2018-03-02  0:37           ` Logan Gunthorpe
2018-02-28 23:40 ` [PATCH v2 04/10] PCI/P2PDMA: Clear ACS P2P flags for all devices behind switches Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-03-01 18:02   ` Bjorn Helgaas
2018-03-01 18:02     ` Bjorn Helgaas
2018-03-01 18:02     ` Bjorn Helgaas
2018-03-01 18:02     ` Bjorn Helgaas
2018-03-01 18:54     ` Stephen  Bates
2018-03-01 18:54       ` Stephen  Bates
2018-03-01 18:54       ` Stephen  Bates
2018-03-01 18:54       ` Stephen  Bates
2018-03-01 18:54       ` Stephen  Bates
2018-03-01 21:21       ` Alex Williamson
2018-03-01 21:21         ` Alex Williamson
2018-03-01 21:21         ` Alex Williamson
2018-03-01 21:21         ` Alex Williamson
2018-03-01 21:26         ` Logan Gunthorpe
2018-03-01 21:26           ` Logan Gunthorpe
2018-03-01 21:26           ` Logan Gunthorpe
2018-03-01 21:26           ` Logan Gunthorpe
2018-03-01 21:32         ` Stephen  Bates
2018-03-01 21:32           ` Stephen  Bates
2018-03-01 21:32           ` Stephen  Bates
2018-03-01 21:32           ` Stephen  Bates
2018-03-01 21:32           ` Stephen  Bates
2018-03-01 21:35           ` Jerome Glisse
2018-03-01 21:35             ` Jerome Glisse
2018-03-01 21:35             ` Jerome Glisse
2018-03-01 21:35             ` Jerome Glisse
2018-03-01 21:35             ` Jerome Glisse
2018-03-01 21:37             ` Logan Gunthorpe
2018-03-01 21:37               ` Logan Gunthorpe
2018-03-01 21:37               ` Logan Gunthorpe
2018-03-01 21:37               ` Logan Gunthorpe
2018-03-01 23:15       ` Bjorn Helgaas
2018-03-01 23:15         ` Bjorn Helgaas
2018-03-01 23:15         ` Bjorn Helgaas
2018-03-01 23:15         ` Bjorn Helgaas
2018-03-01 23:59         ` Logan Gunthorpe
2018-03-01 23:59           ` Logan Gunthorpe
2018-03-01 23:59           ` Logan Gunthorpe
2018-03-01 23:59           ` Logan Gunthorpe
2018-03-01 19:13     ` Logan Gunthorpe
2018-03-01 19:13       ` Logan Gunthorpe
2018-03-01 19:13       ` Logan Gunthorpe
2018-03-01 19:13       ` Logan Gunthorpe
2018-03-05 22:28       ` Bjorn Helgaas
2018-03-05 22:28         ` Bjorn Helgaas
2018-03-05 22:28         ` Bjorn Helgaas
2018-03-05 22:28         ` Bjorn Helgaas
2018-03-05 23:01         ` Logan Gunthorpe
2018-03-05 23:01           ` Logan Gunthorpe
2018-03-05 23:01           ` Logan Gunthorpe
2018-03-05 23:01           ` Logan Gunthorpe
2018-02-28 23:40 ` [PATCH v2 05/10] block: Introduce PCI P2P flags for request and request queue Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-03-01 11:08   ` Sagi Grimberg
2018-03-01 11:08     ` Sagi Grimberg
2018-03-01 11:08     ` Sagi Grimberg
2018-03-01 11:08     ` Sagi Grimberg
2018-02-28 23:40 ` [PATCH v2 06/10] IB/core: Add optional PCI P2P flag to rdma_rw_ctx_[init|destroy]() Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-03-01 10:32   ` Sagi Grimberg
2018-03-01 10:32     ` Sagi Grimberg
2018-03-01 10:32     ` Sagi Grimberg
2018-03-01 10:32     ` Sagi Grimberg
2018-03-01 17:16     ` Logan Gunthorpe
2018-03-01 17:16       ` Logan Gunthorpe
2018-03-01 17:16       ` Logan Gunthorpe
2018-03-01 17:16       ` Logan Gunthorpe
2018-02-28 23:40 ` [PATCH v2 07/10] nvme-pci: Use PCI p2pmem subsystem to manage the CMB Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-03-05  1:33   ` Oliver
2018-03-05  1:33     ` Oliver
2018-03-05  1:33     ` Oliver
2018-03-05  1:33     ` Oliver
2018-03-05 16:00     ` Keith Busch
2018-03-05 16:00       ` Keith Busch
2018-03-05 16:00       ` Keith Busch
2018-03-05 16:00       ` Keith Busch
2018-03-05 17:10       ` Logan Gunthorpe
2018-03-05 17:10         ` Logan Gunthorpe
2018-03-05 17:10         ` Logan Gunthorpe
2018-03-05 17:10         ` Logan Gunthorpe
2018-03-05 18:02         ` Sinan Kaya
2018-03-05 18:02           ` Sinan Kaya
2018-03-05 18:02           ` Sinan Kaya
2018-03-05 18:09           ` Logan Gunthorpe
2018-03-05 18:09             ` Logan Gunthorpe
2018-03-05 18:09             ` Logan Gunthorpe
2018-03-06  0:49         ` Oliver
2018-03-06  0:49           ` Oliver
2018-03-06  0:49           ` Oliver
2018-03-06  0:49           ` Oliver
2018-03-06  1:14           ` Logan Gunthorpe
2018-03-06  1:14             ` Logan Gunthorpe
2018-03-06  1:14             ` Logan Gunthorpe
2018-03-06  1:14             ` Logan Gunthorpe
2018-03-06 10:40             ` Oliver [this message]
2018-03-06 10:40               ` Oliver
2018-03-06 10:40               ` Oliver
2018-03-06 10:40               ` Oliver
2018-03-05 19:57       ` Sagi Grimberg
2018-03-05 19:57         ` Sagi Grimberg
2018-03-05 19:57         ` Sagi Grimberg
2018-03-05 19:57         ` Sagi Grimberg
2018-03-05 20:10         ` Jason Gunthorpe
2018-03-05 20:10           ` Jason Gunthorpe
2018-03-05 20:10           ` Jason Gunthorpe
2018-03-05 20:10           ` Jason Gunthorpe
2018-03-05 20:16           ` Logan Gunthorpe
2018-03-05 20:16             ` Logan Gunthorpe
2018-03-05 20:16             ` Logan Gunthorpe
2018-03-05 20:42           ` Keith Busch
2018-03-05 20:42             ` Keith Busch
2018-03-05 20:42             ` Keith Busch
2018-03-05 20:42             ` Keith Busch
2018-03-05 20:50             ` Jason Gunthorpe
2018-03-05 20:50               ` Jason Gunthorpe
2018-03-05 20:50               ` Jason Gunthorpe
2018-03-05 20:13         ` Logan Gunthorpe
2018-03-05 20:13           ` Logan Gunthorpe
2018-03-05 20:13           ` Logan Gunthorpe
2018-03-05 20:13           ` Logan Gunthorpe
2018-02-28 23:40 ` [PATCH v2 08/10] nvme-pci: Add support for P2P memory in requests Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-03-01 11:07   ` Sagi Grimberg
2018-03-01 11:07     ` Sagi Grimberg
2018-03-01 11:07     ` Sagi Grimberg
2018-03-01 11:07     ` Sagi Grimberg
2018-03-01 15:58     ` Stephen  Bates
2018-03-01 15:58       ` Stephen  Bates
2018-03-01 15:58       ` Stephen  Bates
2018-03-01 15:58       ` Stephen  Bates
2018-03-01 15:58       ` Stephen  Bates
2018-03-09  5:08       ` Bart Van Assche
2018-03-09  5:08         ` Bart Van Assche
2018-03-09  5:08         ` Bart Van Assche
2018-03-09  5:08         ` Bart Van Assche
2018-03-09  5:08         ` Bart Van Assche
2018-02-28 23:40 ` [PATCH v2 09/10] nvme-pci: Add a quirk for a pseudo CMB Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-03-01 11:03   ` Sagi Grimberg
2018-03-01 11:03     ` Sagi Grimberg
2018-03-01 11:03     ` Sagi Grimberg
2018-03-01 11:03     ` Sagi Grimberg
2018-02-28 23:40 ` [PATCH v2 10/10] nvmet: Optionally use PCI P2P memory Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-02-28 23:40   ` Logan Gunthorpe
2018-03-01 11:03   ` Sagi Grimberg
2018-03-01 11:03     ` Sagi Grimberg
2018-03-01 11:03     ` Sagi Grimberg
2018-03-01 11:03     ` Sagi Grimberg
2018-03-01 16:15     ` Stephen  Bates
2018-03-01 16:15       ` Stephen  Bates
2018-03-01 16:15       ` Stephen  Bates
2018-03-01 16:15       ` Stephen  Bates
2018-03-01 16:15       ` Stephen  Bates
2018-03-01 17:40     ` Logan Gunthorpe
2018-03-01 17:40       ` Logan Gunthorpe
2018-03-01 17:40       ` Logan Gunthorpe
2018-03-01 17:40       ` Logan Gunthorpe
2018-03-01 18:35       ` Sagi Grimberg
2018-03-01 18:35         ` Sagi Grimberg
2018-03-01 18:35         ` Sagi Grimberg
2018-03-01 18:35         ` Sagi Grimberg
2018-03-01 18:42         ` Jason Gunthorpe
2018-03-01 18:42           ` Jason Gunthorpe
2018-03-01 19:01           ` Stephen  Bates
2018-03-01 19:01             ` Stephen  Bates
2018-03-01 19:01             ` Stephen  Bates
2018-03-01 19:01             ` Stephen  Bates
2018-03-01 19:01             ` Stephen  Bates
2018-03-01 19:27           ` Logan Gunthorpe
2018-03-01 19:27             ` Logan Gunthorpe
2018-03-01 19:27             ` Logan Gunthorpe
2018-03-01 19:27             ` Logan Gunthorpe
2018-03-01 22:45             ` Jason Gunthorpe
2018-03-01 22:45               ` Jason Gunthorpe
2018-03-01 22:56               ` Logan Gunthorpe
2018-03-01 22:56                 ` Logan Gunthorpe
2018-03-01 22:56                 ` Logan Gunthorpe
2018-03-01 22:56                 ` Logan Gunthorpe
2018-03-01 23:00               ` Stephen  Bates
2018-03-01 23:00                 ` Stephen  Bates
2018-03-01 23:00                 ` Stephen  Bates
2018-03-01 23:00                 ` Stephen  Bates
2018-03-01 23:00                 ` Stephen  Bates
2018-03-01 23:20                 ` Jason Gunthorpe
2018-03-01 23:20                   ` Jason Gunthorpe
2018-03-01 23:20                   ` Jason Gunthorpe
2018-03-01 23:29                   ` Logan Gunthorpe
2018-03-01 23:29                     ` Logan Gunthorpe
2018-03-01 23:29                     ` Logan Gunthorpe
2018-03-01 23:29                     ` Logan Gunthorpe
2018-03-01 23:32                   ` Stephen  Bates
2018-03-01 23:32                     ` Stephen  Bates
2018-03-01 23:32                     ` Stephen  Bates
2018-03-01 23:32                     ` Stephen  Bates
2018-03-01 23:32                     ` Stephen  Bates
2018-03-01 23:49                 ` Keith Busch
2018-03-01 23:49                   ` Keith Busch
2018-03-01 23:49                   ` Keith Busch
2018-03-01 23:49                   ` Keith Busch
2018-03-01 23:52                   ` Logan Gunthorpe
2018-03-01 23:52                     ` Logan Gunthorpe
2018-03-01 23:52                     ` Logan Gunthorpe
2018-03-01 23:52                     ` Logan Gunthorpe
2018-03-01 23:53                   ` Stephen  Bates
2018-03-01 23:53                     ` Stephen  Bates
2018-03-01 23:53                     ` Stephen  Bates
2018-03-01 23:53                     ` Stephen  Bates
2018-03-01 23:53                     ` Stephen  Bates
2018-03-02 15:53                     ` Christoph Hellwig
2018-03-02 15:53                       ` Christoph Hellwig
2018-03-02 15:53                       ` Christoph Hellwig
2018-03-02 15:53                       ` Christoph Hellwig
2018-03-02 20:51                       ` Stephen  Bates
2018-03-02 20:51                         ` Stephen  Bates
2018-03-02 20:51                         ` Stephen  Bates
2018-03-02 20:51                         ` Stephen  Bates
2018-03-01 23:57                   ` Stephen  Bates
2018-03-01 23:57                     ` Stephen  Bates
2018-03-01 23:57                     ` Stephen  Bates
2018-03-01 23:57                     ` Stephen  Bates
2018-03-01 23:57                     ` Stephen  Bates
2018-03-02  0:03                     ` Logan Gunthorpe
2018-03-02  0:03                       ` Logan Gunthorpe
2018-03-02  0:03                       ` Logan Gunthorpe
2018-03-02  0:03                       ` Logan Gunthorpe
2018-03-02 16:18                     ` Jason Gunthorpe
2018-03-02 16:18                       ` Jason Gunthorpe
2018-03-02 16:18                       ` Jason Gunthorpe
2018-03-02 17:10                       ` Logan Gunthorpe
2018-03-02 17:10                         ` Logan Gunthorpe
2018-03-02 17:10                         ` Logan Gunthorpe
2018-03-02 17:10                         ` Logan Gunthorpe
2018-03-01 19:10         ` Logan Gunthorpe
2018-03-01 19:10           ` Logan Gunthorpe
2018-03-01 19:10           ` Logan Gunthorpe
2018-03-01 19:10           ` Logan Gunthorpe
2018-03-01  3:54 ` [PATCH v2 00/10] Copy Offload in NVMe Fabrics with P2P PCI Memory Benjamin Herrenschmidt
2018-03-01  3:54   ` Benjamin Herrenschmidt
2018-03-01  3:54   ` Benjamin Herrenschmidt
2018-03-01  3:54   ` Benjamin Herrenschmidt
2018-03-01  3:56   ` Benjamin Herrenschmidt
2018-03-01  3:56     ` Benjamin Herrenschmidt
2018-03-01  3:56     ` Benjamin Herrenschmidt
2018-03-01  3:56     ` Benjamin Herrenschmidt
2018-03-01 18:04     ` Logan Gunthorpe
2018-03-01 18:04       ` Logan Gunthorpe
2018-03-01 18:04       ` Logan Gunthorpe
2018-03-01 18:04       ` Logan Gunthorpe
2018-03-01 20:29       ` Benjamin Herrenschmidt
2018-03-01 20:29         ` Benjamin Herrenschmidt
2018-03-01 20:29         ` Benjamin Herrenschmidt
2018-03-01 20:29         ` Benjamin Herrenschmidt
2018-03-01 20:55         ` Jerome Glisse
2018-03-01 20:55           ` Jerome Glisse
2018-03-01 20:55           ` Jerome Glisse
2018-03-01 20:55           ` Jerome Glisse
2018-03-01 20:55           ` Jerome Glisse
2018-03-01 21:03           ` Logan Gunthorpe
2018-03-01 21:03             ` Logan Gunthorpe
2018-03-01 21:03             ` Logan Gunthorpe
2018-03-01 21:03             ` Logan Gunthorpe
2018-03-01 21:10             ` Jerome Glisse
2018-03-01 21:10               ` Jerome Glisse
2018-03-01 21:10               ` Jerome Glisse
2018-03-01 21:10               ` Jerome Glisse
2018-03-01 21:10               ` Jerome Glisse
2018-03-01 21:15               ` Logan Gunthorpe
2018-03-01 21:15                 ` Logan Gunthorpe
2018-03-01 21:15                 ` Logan Gunthorpe
2018-03-01 21:15                 ` Logan Gunthorpe
2018-03-01 21:25                 ` Jerome Glisse
2018-03-01 21:25                   ` Jerome Glisse
2018-03-01 21:25                   ` Jerome Glisse
2018-03-01 21:25                   ` Jerome Glisse
2018-03-01 21:25                   ` Jerome Glisse
2018-03-01 21:37               ` Stephen  Bates
2018-03-01 21:37                 ` Stephen  Bates
2018-03-01 21:37                 ` Stephen  Bates
2018-03-01 21:37                 ` Stephen  Bates
2018-03-01 21:37                 ` Stephen  Bates
2018-03-02 21:38               ` Stephen  Bates
2018-03-02 21:38                 ` Stephen  Bates
2018-03-02 21:38                 ` Stephen  Bates
2018-03-02 21:38                 ` Stephen  Bates
2018-03-02 21:38                 ` Stephen  Bates
2018-03-02 22:09                 ` Jerome Glisse
2018-03-02 22:09                   ` Jerome Glisse
2018-03-02 22:09                   ` Jerome Glisse
2018-03-02 22:09                   ` Jerome Glisse
2018-03-02 22:09                   ` Jerome Glisse
2018-03-05 20:36                   ` Stephen  Bates
2018-03-05 20:36                     ` Stephen  Bates
2018-03-05 20:36                     ` Stephen  Bates
2018-03-05 20:36                     ` Stephen  Bates
2018-03-05 20:36                     ` Stephen  Bates
2018-03-01 20:55         ` Logan Gunthorpe
2018-03-01 20:55           ` Logan Gunthorpe
2018-03-01 20:55           ` Logan Gunthorpe
2018-03-01 20:55           ` Logan Gunthorpe
2018-03-01 18:09     ` Stephen  Bates
2018-03-01 18:09       ` Stephen  Bates
2018-03-01 18:09       ` Stephen  Bates
2018-03-01 18:09       ` Stephen  Bates
2018-03-01 18:09       ` Stephen  Bates
2018-03-01 20:32       ` Benjamin Herrenschmidt
2018-03-01 20:32         ` Benjamin Herrenschmidt
2018-03-01 20:32         ` Benjamin Herrenschmidt
2018-03-01 20:32         ` Benjamin Herrenschmidt
2018-03-01 19:21     ` Dan Williams
2018-03-01 19:21       ` Dan Williams
2018-03-01 19:21       ` Dan Williams
2018-03-01 19:21       ` Dan Williams
2018-03-01 19:30       ` Logan Gunthorpe
2018-03-01 19:30         ` Logan Gunthorpe
2018-03-01 19:30         ` Logan Gunthorpe
2018-03-01 19:30         ` Logan Gunthorpe
2018-03-01 20:34       ` Benjamin Herrenschmidt
2018-03-01 20:34         ` Benjamin Herrenschmidt
2018-03-01 20:34         ` Benjamin Herrenschmidt
2018-03-01 20:34         ` Benjamin Herrenschmidt
2018-03-01 20:40         ` Benjamin Herrenschmidt
2018-03-01 20:40           ` Benjamin Herrenschmidt
2018-03-01 20:40           ` Benjamin Herrenschmidt
2018-03-01 20:40           ` Benjamin Herrenschmidt
2018-03-01 20:53           ` Jason Gunthorpe
2018-03-01 20:53             ` Jason Gunthorpe
2018-03-01 20:57             ` Logan Gunthorpe
2018-03-01 20:57               ` Logan Gunthorpe
2018-03-01 20:57               ` Logan Gunthorpe
2018-03-01 20:57               ` Logan Gunthorpe
2018-03-01 22:06             ` Benjamin Herrenschmidt
2018-03-01 22:06               ` Benjamin Herrenschmidt
2018-03-01 22:06               ` Benjamin Herrenschmidt
2018-03-01 22:06               ` Benjamin Herrenschmidt
2018-03-01 22:31               ` Linus Torvalds
2018-03-01 22:31                 ` Linus Torvalds
2018-03-01 22:31                 ` Linus Torvalds
2018-03-01 22:31                 ` Linus Torvalds
2018-03-01 22:34                 ` Benjamin Herrenschmidt
2018-03-01 22:34                   ` Benjamin Herrenschmidt
2018-03-01 22:34                   ` Benjamin Herrenschmidt
2018-03-01 22:34                   ` Benjamin Herrenschmidt
2018-03-02 16:22                   ` Kani, Toshi
2018-03-02 16:22                     ` Kani, Toshi
2018-03-02 16:22                     ` Kani, Toshi
2018-03-02 16:22                     ` Kani, Toshi
2018-03-02 16:22                     ` Kani, Toshi
2018-03-02 16:57                     ` Linus Torvalds
2018-03-02 16:57                       ` Linus Torvalds
2018-03-02 16:57                       ` Linus Torvalds
2018-03-02 16:57                       ` Linus Torvalds
2018-03-02 17:34                       ` Linus Torvalds
2018-03-02 17:34                         ` Linus Torvalds
2018-03-02 17:34                         ` Linus Torvalds
2018-03-02 17:34                         ` Linus Torvalds
2018-03-02 17:38                       ` Kani, Toshi
2018-03-02 17:38                         ` Kani, Toshi
2018-03-02 17:38                         ` Kani, Toshi
2018-03-02 17:38                         ` Kani, Toshi
2018-03-02 17:38                         ` Kani, Toshi
2018-03-01 21:37         ` Dan Williams
2018-03-01 21:37           ` Dan Williams
2018-03-01 21:37           ` Dan Williams
2018-03-01 21:37           ` Dan Williams
2018-03-01 21:45           ` Logan Gunthorpe
2018-03-01 21:45             ` Logan Gunthorpe
2018-03-01 21:45             ` Logan Gunthorpe
2018-03-01 21:57             ` Logan Gunthorpe
2018-03-01 21:57               ` Logan Gunthorpe
2018-03-01 21:57               ` Logan Gunthorpe
2018-03-01 21:57               ` Logan Gunthorpe
2018-03-01 23:00               ` Benjamin Herrenschmidt
2018-03-01 23:00                 ` Benjamin Herrenschmidt
2018-03-01 23:00                 ` Benjamin Herrenschmidt
2018-03-01 23:00                 ` Benjamin Herrenschmidt
2018-03-01 23:19                 ` Logan Gunthorpe
2018-03-01 23:19                   ` Logan Gunthorpe
2018-03-01 23:19                   ` Logan Gunthorpe
2018-03-01 23:19                   ` Logan Gunthorpe
2018-03-01 23:25                   ` Benjamin Herrenschmidt
2018-03-01 23:25                     ` Benjamin Herrenschmidt
2018-03-01 23:25                     ` Benjamin Herrenschmidt
2018-03-01 23:25                     ` Benjamin Herrenschmidt
2018-03-02 21:44                     ` Benjamin Herrenschmidt
2018-03-02 21:44                       ` Benjamin Herrenschmidt
2018-03-02 21:44                       ` Benjamin Herrenschmidt
2018-03-02 21:44                       ` Benjamin Herrenschmidt
2018-03-02 22:24                       ` Logan Gunthorpe
2018-03-02 22:24                         ` Logan Gunthorpe
2018-03-02 22:24                         ` Logan Gunthorpe
2018-03-02 22:24                         ` Logan Gunthorpe
2018-03-01 23:26                   ` Benjamin Herrenschmidt
2018-03-01 23:26                     ` Benjamin Herrenschmidt
2018-03-01 23:26                     ` Benjamin Herrenschmidt
2018-03-01 23:26                     ` Benjamin Herrenschmidt
2018-03-01 23:54                     ` Logan Gunthorpe
2018-03-01 23:54                       ` Logan Gunthorpe
2018-03-01 23:54                       ` Logan Gunthorpe
2018-03-01 23:54                       ` Logan Gunthorpe
2018-03-01 21:03       ` Benjamin Herrenschmidt
2018-03-01 21:03         ` Benjamin Herrenschmidt
2018-03-01 21:03         ` Benjamin Herrenschmidt
2018-03-01 21:03         ` Benjamin Herrenschmidt
2018-03-01 21:11         ` Logan Gunthorpe
2018-03-01 21:11           ` Logan Gunthorpe
2018-03-01 21:11           ` Logan Gunthorpe
2018-03-01 21:11           ` Logan Gunthorpe
2018-03-01 21:18           ` Jerome Glisse
2018-03-01 21:18             ` Jerome Glisse
2018-03-01 21:18             ` Jerome Glisse
2018-03-01 21:18             ` Jerome Glisse
2018-03-01 21:18             ` Jerome Glisse
2018-03-01 21:22             ` Logan Gunthorpe
2018-03-01 21:22               ` Logan Gunthorpe
2018-03-01 21:22               ` Logan Gunthorpe
2018-03-01 21:22               ` Logan Gunthorpe
2018-03-01 10:31 ` Sagi Grimberg
2018-03-01 10:31   ` Sagi Grimberg
2018-03-01 10:31   ` Sagi Grimberg
2018-03-01 10:31   ` Sagi Grimberg
2018-03-01 19:33   ` Logan Gunthorpe
2018-03-01 19:33     ` Logan Gunthorpe
2018-03-01 19:33     ` Logan Gunthorpe
2018-03-01 19:33     ` Logan Gunthorpe

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=CAOSf1CG3jdx9RdhCgq+d0fdYLLByhknsXfkUYwigzQzZM0xfGw@mail.gmail.com \
    --to=oohall@gmail.com \
    --cc=alex.williamson@redhat.com \
    --cc=axboe@kernel.dk \
    --cc=benh@kernel.crashing.org \
    --cc=bhelgaas@google.com \
    --cc=hch@lst.de \
    --cc=jgg@mellanox.com \
    --cc=jglisse@redhat.com \
    --cc=keith.busch@intel.com \
    --cc=linux-block@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-nvdimm@lists.01.org \
    --cc=linux-nvme@lists.infradead.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=linux-rdma@vger.kernel.org \
    --cc=logang@deltatee.com \
    --cc=maxg@mellanox.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.