All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christoph Hellwig <hch@lst.de>
Cc: linux-arch@vger.kernel.org, linux-xtensa@linux-xtensa.org,
	Michal Simek <monstr@monstr.eu>,
	Vincent Chen <deanbo422@gmail.com>,
	linux-c6x-dev@linux-c6x.org, linux-parisc@vger.kernel.org,
	linux-sh@vger.kernel.org, linux-hexagon@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-m68k@lists.linux-m68k.org,
	openrisc@lists.librecores.org, Greentime Hu <green.hu@gmail.com>,
	linux-alpha@vger.kernel.org, sparclinux@vger.kernel.org,
	nios2-dev@lists.rocketboards.org,
	linux-snps-arc@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org
Subject: (unknown)
Subject: 
Date: Fri, 20 Apr 2018 10:02:51 +0200	[thread overview]
Message-ID: <20180420080313.18796-1-hch@lst.de> (raw)

To: iommu@lists.linux-foundation.org
Cc: linux-arch@vger.kernel.org
Cc: Michal Simek <monstr@monstr.eu>
Cc: Greentime Hu <green.hu@gmail.com>
Cc: Vincent Chen <deanbo422@gmail.com>
Cc: linux-alpha@vger.kernel.org
Cc: linux-snps-arc@lists.infradead.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-c6x-dev@linux-c6x.org
Cc: linux-hexagon@vger.kernel.org
Cc: linux-m68k@lists.linux-m68k.org
Cc: nios2-dev@lists.rocketboards.org
Cc: openrisc@lists.librecores.org
Cc: linux-parisc@vger.kernel.org
Cc: linux-sh@vger.kernel.org
Cc: sparclinux@vger.kernel.org
Cc: linux-xtensa@linux-xtensa.org
Cc: linux-kernel@vger.kernel.org
Subject: [RFC] common non-cache coherent direct dma mapping ops

Hi all,

this series continues consolidating the dma-mapping code, with a focus
on architectures that do not (always) provide cache coherence for DMA.
Three architectures (arm, mips and powerpc) are still left to be
converted later due to complexity of their dma ops selection.

The dma-noncoherent ops calls the dma-direct ops for the actual
translation of streaming mappins and allow the architecture to provide
any cache flushing required for cpu to device and/or device to cpu
ownership transfers.  The dma coherent allocator is for now still left
entirely to architecture supplied implementations due the amount of
variations.  Hopefully we can do some consolidation for them later on
as well.

A lot of architectures are currently doing very questionable things
in their dma mapping routines, which are documented in the changelogs
for each patch.  Please review them very careful and correct me on
incorrect assumptions.

Because this series sits on top of two previously submitted series
a git tree might be useful to actually test it.  It is provided here:

    git://git.infradead.org/users/hch/misc.git generic-dma-noncoherent

Gitweb:

    http://git.infradead.org/users/hch/misc.git/shortlog/refs/heads/generic-dma-noncoherent

WARNING: multiple messages have this Message-ID (diff)
From: Christoph Hellwig <hch@lst.de>
Cc: linux-arch@vger.kernel.org, Michal Simek <monstr@monstr.eu>,
	Greentime Hu <green.hu@gmail.com>,
	Vincent Chen <deanbo422@gmail.com>,
	linux-alpha@vger.kernel.org, linux-snps-arc@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org,
	linux-c6x-dev@linux-c6x.org, linux-hexagon@vger.kernel.org,
	linux-m68k@lists.linux-m68k.org,
	nios2-dev@lists.rocketboards.org, openrisc@lists.librecores.org,
	linux-parisc@vger.kernel.org, linux-sh@vger.kernel.org,
	sparclinux@vger.kernel.org, linux-xtensa@linux-xtensa.org,
	linux-kernel@vger.kernel.org
Subject: 
Date: Fri, 20 Apr 2018 10:02:51 +0200	[thread overview]
Message-ID: <20180420080313.18796-1-hch@lst.de> (raw)
Message-ID: <20180420080251.fwGs8il40UnMjae5bZKU_64IGvo9dt3RVjgz_0EBTlA@z> (raw)

To: iommu@lists.linux-foundation.org
Cc: linux-arch@vger.kernel.org
Cc: Michal Simek <monstr@monstr.eu>
Cc: Greentime Hu <green.hu@gmail.com>
Cc: Vincent Chen <deanbo422@gmail.com>
Cc: linux-alpha@vger.kernel.org
Cc: linux-snps-arc@lists.infradead.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-c6x-dev@linux-c6x.org
Cc: linux-hexagon@vger.kernel.org
Cc: linux-m68k@lists.linux-m68k.org
Cc: nios2-dev@lists.rocketboards.org
Cc: openrisc@lists.librecores.org
Cc: linux-parisc@vger.kernel.org
Cc: linux-sh@vger.kernel.org
Cc: sparclinux@vger.kernel.org
Cc: linux-xtensa@linux-xtensa.org
Cc: linux-kernel@vger.kernel.org
Subject: [RFC] common non-cache coherent direct dma mapping ops

Hi all,

this series continues consolidating the dma-mapping code, with a focus
on architectures that do not (always) provide cache coherence for DMA.
Three architectures (arm, mips and powerpc) are still left to be
converted later due to complexity of their dma ops selection.

The dma-noncoherent ops calls the dma-direct ops for the actual
translation of streaming mappins and allow the architecture to provide
any cache flushing required for cpu to device and/or device to cpu
ownership transfers.  The dma coherent allocator is for now still left
entirely to architecture supplied implementations due the amount of
variations.  Hopefully we can do some consolidation for them later on
as well.

A lot of architectures are currently doing very questionable things
in their dma mapping routines, which are documented in the changelogs
for each patch.  Please review them very careful and correct me on
incorrect assumptions.

Because this series sits on top of two previously submitted series
a git tree might be useful to actually test it.  It is provided here:

    git://git.infradead.org/users/hch/misc.git generic-dma-noncoherent

Gitweb:

    http://git.infradead.org/users/hch/misc.git/shortlog/refs/heads/generic-dma-noncoherent

WARNING: multiple messages have this Message-ID (diff)
From: Christoph Hellwig <hch@lst.de>
Cc: linux-arch@vger.kernel.org, linux-xtensa@linux-xtensa.org,
	Michal Simek <monstr@monstr.eu>,
	Vincent Chen <deanbo422@gmail.com>,
	linux-c6x-dev@linux-c6x.org, linux-parisc@vger.kernel.org,
	linux-sh@vger.kernel.org, linux-hexagon@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-m68k@lists.linux-m68k.org,
	openrisc@lists.librecores.org, Greentime Hu <green.hu@gmail.com>,
	linux-alpha@vger.kernel.org, sparclinux@vger.kernel.org,
	nios2-dev@lists.rocketboards.org,
	linux-snps-arc@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org
Subject: (unknown)
Date: Fri, 20 Apr 2018 10:02:51 +0200	[thread overview]
Message-ID: <20180420080313.18796-1-hch@lst.de> (raw)

To: iommu@lists.linux-foundation.org
Cc: linux-arch@vger.kernel.org
Cc: Michal Simek <monstr@monstr.eu>
Cc: Greentime Hu <green.hu@gmail.com>
Cc: Vincent Chen <deanbo422@gmail.com>
Cc: linux-alpha@vger.kernel.org
Cc: linux-snps-arc@lists.infradead.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-c6x-dev@linux-c6x.org
Cc: linux-hexagon@vger.kernel.org
Cc: linux-m68k@lists.linux-m68k.org
Cc: nios2-dev@lists.rocketboards.org
Cc: openrisc@lists.librecores.org
Cc: linux-parisc@vger.kernel.org
Cc: linux-sh@vger.kernel.org
Cc: sparclinux@vger.kernel.org
Cc: linux-xtensa@linux-xtensa.org
Cc: linux-kernel@vger.kernel.org
Subject: [RFC] common non-cache coherent direct dma mapping ops

Hi all,

this series continues consolidating the dma-mapping code, with a focus
on architectures that do not (always) provide cache coherence for DMA.
Three architectures (arm, mips and powerpc) are still left to be
converted later due to complexity of their dma ops selection.

The dma-noncoherent ops calls the dma-direct ops for the actual
translation of streaming mappins and allow the architecture to provide
any cache flushing required for cpu to device and/or device to cpu
ownership transfers.  The dma coherent allocator is for now still left
entirely to architecture supplied implementations due the amount of
variations.  Hopefully we can do some consolidation for them later on
as well.

A lot of architectures are currently doing very questionable things
in their dma mapping routines, which are documented in the changelogs
for each patch.  Please review them very careful and correct me on
incorrect assumptions.

Because this series sits on top of two previously submitted series
a git tree might be useful to actually test it.  It is provided here:

    git://git.infradead.org/users/hch/misc.git generic-dma-noncoherent

Gitweb:

    http://git.infradead.org/users/hch/misc.git/shortlog/refs/heads/generic-dma-noncoherent

WARNING: multiple messages have this Message-ID (diff)
From: hch@lst.de (Christoph Hellwig)
To: linux-snps-arc@lists.infradead.org
Subject: No subject
Date: Fri, 20 Apr 2018 10:02:51 +0200	[thread overview]
Message-ID: <20180420080313.18796-1-hch@lst.de> (raw)

To: iommu at lists.linux-foundation.org
Cc: linux-arch at vger.kernel.org
Cc: Michal Simek <monstr at monstr.eu>
Cc: Greentime Hu <green.hu at gmail.com>
Cc: Vincent Chen <deanbo422 at gmail.com>
Cc: linux-alpha at vger.kernel.org
Cc: linux-snps-arc at lists.infradead.org
Cc: linux-arm-kernel at lists.infradead.org
Cc: linux-c6x-dev at linux-c6x.org
Cc: linux-hexagon at vger.kernel.org
Cc: linux-m68k at lists.linux-m68k.org
Cc: nios2-dev at lists.rocketboards.org
Cc: openrisc at lists.librecores.org
Cc: linux-parisc at vger.kernel.org
Cc: linux-sh at vger.kernel.org
Cc: sparclinux at vger.kernel.org
Cc: linux-xtensa at linux-xtensa.org
Cc: linux-kernel at vger.kernel.org
Subject: [RFC] common non-cache coherent direct dma mapping ops

Hi all,

this series continues consolidating the dma-mapping code, with a focus
on architectures that do not (always) provide cache coherence for DMA.
Three architectures (arm, mips and powerpc) are still left to be
converted later due to complexity of their dma ops selection.

The dma-noncoherent ops calls the dma-direct ops for the actual
translation of streaming mappins and allow the architecture to provide
any cache flushing required for cpu to device and/or device to cpu
ownership transfers.  The dma coherent allocator is for now still left
entirely to architecture supplied implementations due the amount of
variations.  Hopefully we can do some consolidation for them later on
as well.

A lot of architectures are currently doing very questionable things
in their dma mapping routines, which are documented in the changelogs
for each patch.  Please review them very careful and correct me on
incorrect assumptions.

Because this series sits on top of two previously submitted series
a git tree might be useful to actually test it.  It is provided here:

    git://git.infradead.org/users/hch/misc.git generic-dma-noncoherent

Gitweb:

    http://git.infradead.org/users/hch/misc.git/shortlog/refs/heads/generic-dma-noncoherent

WARNING: multiple messages have this Message-ID (diff)
From: Christoph Hellwig <hch@lst.de>
Cc: linux-arch@vger.kernel.org, linux-xtensa@linux-xtensa.org,
	Michal Simek <monstr@monstr.eu>,
	Vincent Chen <deanbo422@gmail.com>,
	linux-c6x-dev@linux-c6x.org, linux-parisc@vger.kernel.org,
	linux-sh@vger.kernel.org, linux-hexagon@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-m68k@lists.linux-m68k.org,
	openrisc@lists.librecores.org, Greentime Hu <green.hu@gmail.com>,
	linux-alpha@vger.kernel.org, sparclinux@vger.kernel.org,
	nios2-dev@lists.rocketboards.org,
	linux-snps-arc@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org
Subject: 
Date: Fri, 20 Apr 2018 08:02:51 +0000	[thread overview]
Message-ID: <20180420080313.18796-1-hch@lst.de> (raw)

To: iommu@lists.linux-foundation.org
Cc: linux-arch@vger.kernel.org
Cc: Michal Simek <monstr@monstr.eu>
Cc: Greentime Hu <green.hu@gmail.com>
Cc: Vincent Chen <deanbo422@gmail.com>
Cc: linux-alpha@vger.kernel.org
Cc: linux-snps-arc@lists.infradead.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-c6x-dev@linux-c6x.org
Cc: linux-hexagon@vger.kernel.org
Cc: linux-m68k@lists.linux-m68k.org
Cc: nios2-dev@lists.rocketboards.org
Cc: openrisc@lists.librecores.org
Cc: linux-parisc@vger.kernel.org
Cc: linux-sh@vger.kernel.org
Cc: sparclinux@vger.kernel.org
Cc: linux-xtensa@linux-xtensa.org
Cc: linux-kernel@vger.kernel.org
Subject: [RFC] common non-cache coherent direct dma mapping ops

Hi all,

this series continues consolidating the dma-mapping code, with a focus
on architectures that do not (always) provide cache coherence for DMA.
Three architectures (arm, mips and powerpc) are still left to be
converted later due to complexity of their dma ops selection.

The dma-noncoherent ops calls the dma-direct ops for the actual
translation of streaming mappins and allow the architecture to provide
any cache flushing required for cpu to device and/or device to cpu
ownership transfers.  The dma coherent allocator is for now still left
entirely to architecture supplied implementations due the amount of
variations.  Hopefully we can do some consolidation for them later on
as well.

A lot of architectures are currently doing very questionable things
in their dma mapping routines, which are documented in the changelogs
for each patch.  Please review them very careful and correct me on
incorrect assumptions.

Because this series sits on top of two previously submitted series
a git tree might be useful to actually test it.  It is provided here:

    git://git.infradead.org/users/hch/misc.git generic-dma-noncoherent

Gitweb:

    http://git.infradead.org/users/hch/misc.git/shortlog/refs/heads/generic-dma-noncoherent

WARNING: multiple messages have this Message-ID (diff)
From: Christoph Hellwig <hch@lst.de>
To: openrisc@lists.librecores.org
Subject: [OpenRISC] (no subject)
Date: Fri, 20 Apr 2018 10:02:51 +0200	[thread overview]
Message-ID: <20180420080313.18796-1-hch@lst.de> (raw)

To: iommu@lists.linux-foundation.org
Cc: linux-arch at vger.kernel.org
Cc: Michal Simek <monstr@monstr.eu>
Cc: Greentime Hu <green.hu@gmail.com>
Cc: Vincent Chen <deanbo422@gmail.com>
Cc: linux-alpha at vger.kernel.org
Cc: linux-snps-arc at lists.infradead.org
Cc: linux-arm-kernel at lists.infradead.org
Cc: linux-c6x-dev at linux-c6x.org
Cc: linux-hexagon at vger.kernel.org
Cc: linux-m68k at lists.linux-m68k.org
Cc: nios2-dev at lists.rocketboards.org
Cc: openrisc at lists.librecores.org
Cc: linux-parisc at vger.kernel.org
Cc: linux-sh at vger.kernel.org
Cc: sparclinux at vger.kernel.org
Cc: linux-xtensa at linux-xtensa.org
Cc: linux-kernel at vger.kernel.org
Subject: [RFC] common non-cache coherent direct dma mapping ops

Hi all,

this series continues consolidating the dma-mapping code, with a focus
on architectures that do not (always) provide cache coherence for DMA.
Three architectures (arm, mips and powerpc) are still left to be
converted later due to complexity of their dma ops selection.

The dma-noncoherent ops calls the dma-direct ops for the actual
translation of streaming mappins and allow the architecture to provide
any cache flushing required for cpu to device and/or device to cpu
ownership transfers.  The dma coherent allocator is for now still left
entirely to architecture supplied implementations due the amount of
variations.  Hopefully we can do some consolidation for them later on
as well.

A lot of architectures are currently doing very questionable things
in their dma mapping routines, which are documented in the changelogs
for each patch.  Please review them very careful and correct me on
incorrect assumptions.

Because this series sits on top of two previously submitted series
a git tree might be useful to actually test it.  It is provided here:

    git://git.infradead.org/users/hch/misc.git generic-dma-noncoherent

Gitweb:

    http://git.infradead.org/users/hch/misc.git/shortlog/refs/heads/generic-dma-noncoherent

WARNING: multiple messages have this Message-ID (diff)
From: hch@lst.de (Christoph Hellwig)
To: linux-arm-kernel@lists.infradead.org
Subject: No subject
Date: Fri, 20 Apr 2018 10:02:51 +0200	[thread overview]
Message-ID: <20180420080313.18796-1-hch@lst.de> (raw)

To: iommu at lists.linux-foundation.org
Cc: linux-arch at vger.kernel.org
Cc: Michal Simek <monstr@monstr.eu>
Cc: Greentime Hu <green.hu@gmail.com>
Cc: Vincent Chen <deanbo422@gmail.com>
Cc: linux-alpha at vger.kernel.org
Cc: linux-snps-arc at lists.infradead.org
Cc: linux-arm-kernel at lists.infradead.org
Cc: linux-c6x-dev at linux-c6x.org
Cc: linux-hexagon at vger.kernel.org
Cc: linux-m68k at lists.linux-m68k.org
Cc: nios2-dev at lists.rocketboards.org
Cc: openrisc at lists.librecores.org
Cc: linux-parisc at vger.kernel.org
Cc: linux-sh at vger.kernel.org
Cc: sparclinux at vger.kernel.org
Cc: linux-xtensa at linux-xtensa.org
Cc: linux-kernel at vger.kernel.org
Subject: [RFC] common non-cache coherent direct dma mapping ops

Hi all,

this series continues consolidating the dma-mapping code, with a focus
on architectures that do not (always) provide cache coherence for DMA.
Three architectures (arm, mips and powerpc) are still left to be
converted later due to complexity of their dma ops selection.

The dma-noncoherent ops calls the dma-direct ops for the actual
translation of streaming mappins and allow the architecture to provide
any cache flushing required for cpu to device and/or device to cpu
ownership transfers.  The dma coherent allocator is for now still left
entirely to architecture supplied implementations due the amount of
variations.  Hopefully we can do some consolidation for them later on
as well.

A lot of architectures are currently doing very questionable things
in their dma mapping routines, which are documented in the changelogs
for each patch.  Please review them very careful and correct me on
incorrect assumptions.

Because this series sits on top of two previously submitted series
a git tree might be useful to actually test it.  It is provided here:

    git://git.infradead.org/users/hch/misc.git generic-dma-noncoherent

Gitweb:

    http://git.infradead.org/users/hch/misc.git/shortlog/refs/heads/generic-dma-noncoherent

             reply	other threads:[~2018-04-20  8:02 UTC|newest]

Thread overview: 2689+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-20  8:02 Christoph Hellwig [this message]
2018-04-20  8:02 ` No subject Christoph Hellwig
2018-04-20  8:02 ` [OpenRISC] (no subject) Christoph Hellwig
2018-04-20  8:02 ` Christoph Hellwig
2018-04-20  8:02 ` No subject Christoph Hellwig
2018-04-20  8:02 ` (unknown) Christoph Hellwig
2018-04-20  8:02 ` Christoph Hellwig
2018-04-20  8:02 ` [PATCH 01/22] dma-debug: move initialization to common code Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20 10:23   ` Robin Murphy
2018-04-20 10:23     ` Robin Murphy
2018-04-20 10:23     ` [OpenRISC] " Robin Murphy
2018-04-20 10:23     ` Robin Murphy
2018-04-20 10:23     ` Robin Murphy
2018-04-24  7:35     ` Christoph Hellwig
2018-04-24  7:35       ` Christoph Hellwig
2018-04-24  7:35       ` [OpenRISC] " Christoph Hellwig
2018-04-24  7:35       ` Christoph Hellwig
2018-04-24  7:35       ` Christoph Hellwig
2018-04-20  8:02 ` [PATCH 02/22] dma-mapping: simplify Kconfig dependencies Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02 ` [PATCH 03/22] dma-mapping: provide a generic dma-noncoherent implementation Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02 ` [PATCH 04/22] alpha: use dma_direct_ops for jensen Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02 ` [PATCH 05/22] alpha: simplify get_arch_dma_ops Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02 ` [PATCH 06/22] arc: use generic dma_noncoherent_ops Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-25 11:17   ` Alexey Brodkin
2018-04-25 11:17     ` Alexey Brodkin
2018-04-25 11:17     ` Alexey Brodkin
2018-04-25 11:17     ` Alexey Brodkin
2018-04-25 11:17     ` Alexey Brodkin
2018-04-25 11:17     ` Alexey Brodkin
2018-04-26  6:45     ` hch
2018-04-26  6:45       ` hch at lst.de
2018-04-26  6:45       ` [OpenRISC] " hch
2018-04-26  6:45       ` hch
2018-04-26  6:45       ` hch
2018-04-26  6:45       ` hch
2018-04-26  6:45       ` hch
2018-04-26  8:25       ` hch
2018-04-26  8:25         ` hch at lst.de
2018-04-26  8:25         ` [OpenRISC] " hch
2018-04-26  8:25         ` hch
2018-04-26  8:25         ` hch
2018-04-26  8:25         ` hch
2018-04-26  8:25         ` hch
2018-04-20  8:02 ` [PATCH 07/22] arm-nommu: " Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02 ` [PATCH 08/22] c6x: " Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:02   ` Christoph Hellwig
2018-04-20  8:03 ` [PATCH 09/22] hexagon: " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03 ` [PATCH 10/22] m68k: " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03 ` [PATCH 11/22] microblaze: " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03 ` [PATCH 12/22] microblaze: remove the consistent_sync and consistent_sync_page Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03 ` [PATCH 13/22] nds32: use generic dma_noncoherent_ops Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-23  6:49   ` Greentime Hu
2018-04-23  6:49     ` Greentime Hu
2018-04-23  6:49     ` [OpenRISC] " Greentime Hu
2018-04-23  6:49     ` Greentime Hu
2018-04-23  6:49     ` Greentime Hu
2018-04-23  8:09     ` Michael Schmitz
2018-04-23 11:03       ` Greentime Hu
2018-04-24 19:16     ` Christoph Hellwig
2018-04-24 19:16       ` Christoph Hellwig
2018-04-24 19:16       ` [OpenRISC] " Christoph Hellwig
2018-04-24 19:16       ` Christoph Hellwig
2018-04-24 19:16       ` Christoph Hellwig
2018-04-25  1:43       ` Greentime Hu
2018-04-25  1:43         ` Greentime Hu
2018-04-25  1:43         ` [OpenRISC] " Greentime Hu
2018-04-25  1:43         ` Greentime Hu
2018-04-25  1:43         ` Greentime Hu
2018-04-25  6:40         ` Christoph Hellwig
2018-04-25  6:40           ` Christoph Hellwig
2018-04-25  6:40           ` [OpenRISC] " Christoph Hellwig
2018-04-25  6:40           ` Christoph Hellwig
2018-04-25  6:40           ` Christoph Hellwig
2018-04-25  6:40           ` Christoph Hellwig
2018-04-25  6:40           ` Christoph Hellwig
2018-04-25 12:25           ` Greentime Hu
2018-04-25 12:25             ` Greentime Hu
2018-04-25 12:25             ` [OpenRISC] " Greentime Hu
2018-04-25 12:25             ` Greentime Hu
2018-04-25 12:25             ` Greentime Hu
2018-04-26  6:42             ` Christoph Hellwig
2018-04-26  6:42               ` Christoph Hellwig
2018-04-26  6:42               ` [OpenRISC] " Christoph Hellwig
2018-04-26  6:42               ` Christoph Hellwig
2018-04-26  6:42               ` Christoph Hellwig
2018-04-26  8:06               ` Greentime Hu
2018-04-26  8:06                 ` Greentime Hu
2018-04-26  8:06                 ` [OpenRISC] " Greentime Hu
2018-04-26  8:06                 ` Greentime Hu
2018-04-26  8:06                 ` Greentime Hu
2018-04-26  8:24                 ` Christoph Hellwig
2018-04-26  8:24                   ` Christoph Hellwig
2018-04-26  8:24                   ` [OpenRISC] " Christoph Hellwig
2018-04-26  8:24                   ` Christoph Hellwig
2018-04-26  8:24                   ` Christoph Hellwig
2018-04-26  9:39                   ` Greentime Hu
2018-04-26  9:39                     ` Greentime Hu
2018-04-26  9:39                     ` [OpenRISC] " Greentime Hu
2018-04-26  9:39                     ` Greentime Hu
2018-04-26  9:39                     ` Greentime Hu
2018-04-20  8:03 ` [PATCH 14/22] nios2: " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03 ` [PATCH 15/22] openrisc: " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03 ` [PATCH 16/22] sh: simplify get_arch_dma_ops Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03 ` [PATCH 17/22] sh: introduce a sh_cacheop_vaddr helper Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03 ` [PATCH 18/22] sh: use dma_direct_ops for the CONFIG_DMA_COHERENT case Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03 ` [PATCH 19/22] sh: use generic dma_noncoherent_ops Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03 ` [PATCH 20/22] xtensa: " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03 ` [PATCH 21/22] sparc: " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03 ` [PATCH 22/22] parisc: " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` [OpenRISC] " Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-20  8:03   ` Christoph Hellwig
2018-04-21 17:43   ` Helge Deller
2018-04-21 17:43     ` Helge Deller
2018-04-21 17:43     ` [OpenRISC] " Helge Deller
2018-04-21 17:43     ` Helge Deller
2018-04-21 17:43     ` Helge Deller
2018-04-21 17:43     ` Helge Deller
2018-04-21 21:52     ` James Bottomley
2018-04-21 21:52       ` James Bottomley
2018-04-21 21:52       ` [OpenRISC] " James Bottomley
2018-04-21 21:52       ` James Bottomley
2018-04-21 21:52       ` James Bottomley
2018-04-25  7:21     ` Christoph Hellwig
2018-04-25  7:21       ` Christoph Hellwig
2018-04-25  7:21       ` [OpenRISC] " Christoph Hellwig
2018-04-25  7:21       ` Christoph Hellwig
2018-04-25  7:21       ` Christoph Hellwig
2018-04-25 21:07       ` Helge Deller
2018-04-25 21:07         ` Helge Deller
2018-04-25 21:07         ` [OpenRISC] " Helge Deller
2018-04-25 21:07         ` Helge Deller
2018-04-25 21:07         ` Helge Deller
2018-04-25 21:07         ` Helge Deller
2018-04-21 21:42   ` James Bottomley
2018-04-21 21:42     ` James Bottomley
2018-04-21 21:42     ` [OpenRISC] " James Bottomley
2018-04-21 21:42     ` James Bottomley
2018-04-21 21:42     ` James Bottomley
2018-04-24  8:20     ` Christoph Hellwig
2018-04-24  8:20       ` Christoph Hellwig
2018-04-24  8:20       ` [OpenRISC] " Christoph Hellwig
2018-04-24  8:20       ` Christoph Hellwig
2018-04-24  8:20       ` Christoph Hellwig
  -- strict thread matches above, loose matches on Subject: below --
2020-07-22  5:32 (unknown) Darlehen Bedienung
2020-07-22  5:32 (unknown) Darlehen Bedienung
2020-07-22  5:32 (unknown) Darlehen Bedienung
2020-07-22  4:45 (unknown) Darlehen Bedienung
2020-07-02 19:43 (unknown) Barr Anthony Calder
2020-06-30 17:56 (unknown) Vasiliy Kupriakov
2020-06-27 21:58 (unknown) lookman joe
2020-06-27 21:58 (unknown) lookman joe
2020-06-27 21:58 (unknown) lookman joe
2020-06-27 21:54 (unknown) helen
2020-06-27 21:52 (unknown) helen
     [not found] <1327230475.528260.1591750200327.ref@mail.yahoo.com>
2020-06-10  0:50 ` (unknown) Celine Marchand
2020-06-04 19:57 (unknown) David Shine
2020-05-08 23:51 (unknown) Barbara D Wilkins
2020-05-08 23:41 (unknown) Barbara D Wilkins
2020-05-08 22:58 (unknown) Barbara D Wilkins
2020-04-23 23:06 (unknown) Azim Hashim Premji
2020-04-23 23:06 (unknown) Azim Hashim Premji
2020-03-27  9:20 (unknown) chenanqing
2020-03-27  8:36 (unknown) chenanqing
2020-03-17  0:11 (unknown) David Ibe
2020-03-17  0:11 (unknown) David Ibe
2020-03-09  8:43 (unknown) Michael J. Weirsky
2020-03-09  7:37 (unknown) Michael J. Weirsky
2020-03-09  7:34 (unknown) Michael J. Weirsky
2020-03-09  7:34 (unknown) Michael J. Weirsky
2020-03-09  7:34 (unknown) Michael J. Weirsky
2020-03-09  7:34 (unknown) Michael J. Weirsky
2020-03-05 10:47 (unknown) Juanito S. Galang
2020-03-05 10:46 (unknown) Juanito S. Galang
2020-03-05 10:46 (unknown) Juanito S. Galang
2020-03-05 10:46 (unknown) Juanito S. Galang
2020-03-05 10:46 (unknown) Juanito S. Galang
2020-03-05 10:46 (unknown) Juanito S. Galang
2020-03-05 10:46 (unknown) Juanito S. Galang
2020-03-05  2:33 (unknown) Maria Alessandra Filippi
2020-03-05  0:26 (unknown) Maria Alessandra Filippi
2020-03-04 23:30 (unknown) Maria Alessandra Filippi
2020-03-04  9:42 (unknown) Julie Leach
2020-02-24  8:18 kernel panic: audit: backlog limit exceeded syzbot
2020-02-24 22:38 ` Paul Moore
2020-02-24 22:43   ` Eric Paris
2020-02-24 22:46     ` Paul Moore
     [not found]       ` <CAHC9VhQnbdJprbdTa_XcgUJaiwhzbnGMWJqHczU54UMk0AFCtw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-02-27 15:39         ` (unknown) Dmitry Vyukov via B.A.T.M.A.N
2020-02-15  3:25 (unknown) mprim37 alcorta
2020-02-11 22:34 (unknown) Rajat Jain
2020-02-05  8:23 (unknown) Frau Huan Jlaying
     [not found] <1187667350.235001.1580574902701.ref@mail.yahoo.com>
2020-02-01 16:35 ` (unknown) Mrs. Maureen Hinckley
2019-12-12 15:50 (unknown) 周琰杰 (Zhou Yanjie)
2019-09-12  8:09 (unknown) Gene Chen
2019-08-23  2:12 (unknown) Rob Herring
2019-06-07  0:54 (unknown) Dave Airlie
2019-05-26 11:51 (unknown) Thomas Meyer
2019-05-16  3:48 (unknown) Mail Delivery Subsystem
2019-04-10 11:17 Norbert Lange
2019-04-10 14:15 ` (unknown) Jan Kiszka
2019-04-10 11:14 Norbert Lange
2019-04-10 13:37 ` (unknown) Jan Kiszka
2019-04-10 14:36 ` (unknown) Jan Kiszka
     [not found]   ` <VI1PR05MB5917B5956F2E9365F10D6539F62E0@VI1PR05MB5917.eurprd05.prod.outlook.com>
2019-04-10 14:47     ` (unknown) Jan Kiszka
2019-04-10 15:02       ` (unknown) Lange Norbert
2019-04-10 16:46         ` (unknown) Jan Kiszka
2019-04-05  2:38 (unknown) Changbin Du
2019-04-04  5:56 (unknown) Mail Delivery Subsystem
2019-03-29  0:36 (unknown) 邀请函
2019-03-21  1:51 (unknown) zhuchangchun
2019-03-04  3:42 (unknown) Automatic Email Delivery Software
2019-03-01  3:34 (unknown) Automatic Email Delivery Software
2019-02-28  3:36 (unknown) Post Office
2019-01-15  2:55 (unknown), Jens Axboe
2019-01-02 12:25 (unknown), Frank Wunderlich
2018-10-21 16:25 (unknown), Michael Tirado
2018-08-27 14:50 (unknown), Christoph Hellwig
2018-08-24  4:59 (unknown), Dave Airlie
2018-07-06  1:26 (unknown), Dave Airlie
2018-07-05 10:36 (unknown), rosdi ablatiff
2018-06-23 21:08 (unknown), David Lechner
2018-05-31 17:11 (unknown), Adam Richter via Containers
2018-05-25  3:26 (unknown), Bounced mail
2018-04-16  1:22 (unknown), Andrew Worsley
2018-03-23  3:05 (unknown), Mail Delivery Subsystem
2018-03-07  7:48 (unknown), Solen win
2018-03-05 17:06 (unknown) Meghana Madhyastha
     [not found] <[PATCH xf86-video-amdgpu 0/3] Add non-desktop and leasing support>
2018-03-03  4:49 ` (unknown), Keith Packard
2018-02-23 15:54 (unknown), Adam Richter
2018-02-17  8:41 (unknown), Solen win
2018-02-17  1:45 (unknown), Ryan Ellis
2018-02-13 22:59 (unknown), Mitesh Shah
2018-02-13 22:57 (unknown), Alfred Cheuk Chow
2018-02-13 22:57 (unknown), Alfred Cheuk Chow
2018-02-13 22:57 (unknown), Alfred Cheuk Chow
2018-02-13 22:57 (unknown), Alfred Cheuk Chow
2018-02-13 11:58 (unknown), Solen win
2018-02-12  1:39 (unknown), Alfred Cheuk Chow
2018-02-12  1:39 (unknown), Alfred Cheuk Chow
2018-02-12  1:39 (unknown), Alfred Cheuk Chow
2018-02-12  1:39 (unknown), Alfred Cheuk Chow
2018-02-11 16:07 (unknown), glolariu
2018-02-08 14:40 (unknown), Automatic Email Delivery Software
     [not found] <CALfDnQ8aCTywvhqOBkFv3qQOoME9wvTrKbQq8i8PCPOx2iBp=A@mail.gmail.com>
     [not found] ` <CALfDnQ-NihbhS=8C+ZfiKepj5x+Zd5uS2zH82-VrwV40A55s0w@mail.gmail.com>
2018-02-07 10:50   ` (unknown), Solen win
2018-02-02 12:15 (unknown), Robert Vasek
2018-01-29 17:17 (unknown), Jones
2018-01-29 17:17 (unknown), Jones
2018-01-29 17:17 (unknown), Jones
2018-01-29 17:17 (unknown), Jones
2018-01-29 17:17 (unknown), Jones
2018-01-29 16:30 (unknown), Jones
2018-01-29 14:17 (unknown), Jones
2018-01-28 17:06 (unknown), whoisthis TG
2018-01-28 17:01 (unknown), whoisthis TG
2018-01-27 13:48 (unknown), Jones
2018-01-27 13:25 (unknown), Jones
2018-01-25  7:23 (unknown), tirumalareddy marri
2018-01-23 13:54 (unknown), Mr Sheng Li Hung
2018-01-23 13:36 (unknown), Mr Sheng Li Hung
2018-01-16  2:23 (unknown) Jack.Ma
2018-01-16  2:16 (unknown) Jack.Ma
2018-01-11  3:22 (unknown), Active lender@
2018-01-10 10:27 (unknown), TimGuo
2017-12-30  4:37 (unknown), Adam Richter
2017-12-30  2:10 (unknown), Arpit Patel
2017-12-24  9:07 (unknown), Solen win
2017-12-24  2:58 (unknown), 柯弼舜
2017-12-23 15:32 (unknown), 柯弼舜
2017-12-17 17:28 (unknown), Solen win
2017-12-14 16:26 (unknown), Solen win
2017-12-12 16:06 (unknown), Solen win
2017-12-01 14:22 (unknown), Rein Appeldoorn
2017-12-01  2:56 (unknown), Post Office
2017-11-20  2:36 (unknown), Robert Wang
2017-11-19 20:07 (unknown), Mitesh Shah
2017-11-16 10:18 (unknown), Michal Hocko
2017-11-15  9:18 (unknown) nanda_kishore_chinna
2017-11-13  3:13 (unknown), Bounced mail
2017-11-12 15:10 (unknown), Mitesh Shah
2017-11-12 15:09 (unknown), Friedrich Mayrhofer
2017-11-12 15:09 (unknown), Friedrich Mayrhofer
2017-11-05  3:40 (unknown), Solen win
2017-11-01 23:35 (unknown), Roy Cockrum Foundation
2017-10-29  9:46 (unknown), Solen win
2017-10-25 12:10 (unknown), EG
2017-10-23 13:52 (unknown), Intl Agency
2017-10-20  8:42 (unknown), membership
2017-10-20  3:19 (unknown), dengx
2017-10-19 22:54 (unknown), armouralumni
2017-10-17 12:14 (unknown), dengx
2017-10-17  7:00 (unknown), lswedroe
2017-10-17  0:33 (unknown), membership
2017-10-16 19:44 (unknown), iker-KvP5wT2u2U0
2017-10-16  1:23 (unknown), fwkz4811-DoVvmRvd3PAA2dtGD8cC2w
2017-10-15 22:07 (unknown), info
2017-10-15 18:29 (unknown), clasico082
2017-10-15 15:13 (unknown), nelcastellodicarta
2017-10-15 13:01 (unknown), pekka.enne
2017-10-15 12:17 (unknown), Solen win2
2017-10-15 12:04 (unknown), sherrilyn
2017-10-15 11:49 (unknown), edo.hlaca
2017-10-15 11:15 (unknown), cl_luzcc
2017-10-14  6:44 (unknown), Ella Golan
2017-10-13 17:15 (unknown), susan.christian
2017-10-13  6:16 (unknown), nfrankiyamu
2017-10-12 13:53 (unknown), Andrew Clement
2017-10-12 13:15 (unknown), mbalhoff
2017-10-12 11:46 (unknown), sophie.norman
2017-10-12  8:17 (unknown), armouralumni
2017-10-12  3:08 (unknown), iker-KvP5wT2u2U0
2017-10-11 22:32 (unknown), fwkz4811-DoVvmRvd3PAA2dtGD8cC2w
2017-10-11 19:29 (unknown), info
2017-10-11 11:49 (unknown), nelcastellodicarta
2017-10-11  9:19 (unknown), pekka.enne
2017-10-11  8:20 (unknown), sherrilyn
2017-10-11  7:34 (unknown), cl_luzcc
2017-10-10 23:27 (unknown), editor
2017-10-09 15:06 (unknown), jha
2017-10-09 13:19 (unknown), carmen.croonquist
2017-10-09  7:37 (unknown), Michael Lyle
2017-10-09  6:17 (unknown), durrant
2017-10-09  3:44 (unknown), roeper
2017-10-08 23:01 (unknown), susan.christian
2017-10-08 19:00 (unknown), matthias.foerster
2017-10-08 14:15 (unknown), clasico082
2017-10-08 11:08 (unknown), nelcastellodicarta
2017-10-08  9:00 (unknown), pekka.enne
2017-10-08  7:59 (unknown), edo.hlaca
2017-10-08  7:32 (unknown), cl_luzcc
2017-10-07  0:31 (unknown), carmen.croonquist
2017-10-06 11:55 (unknown), info
2017-10-06  8:31 (unknown), smallgroups
2017-10-06  5:16 (unknown), nelcastellodicarta
2017-10-06  2:19 (unknown), sherrilyn
2017-10-06  1:59 (unknown), edo.hlaca
2017-10-06  1:43 (unknown), sophie.norman
2017-10-05 10:20 (unknown), jeffrey.faulkenberg
2017-10-05  7:10 (unknown), mgriffit
2017-10-04 15:33 (unknown), membership
2017-10-04 11:44 (unknown), susan.christian
2017-10-03 13:59 (unknown), nelcastellodicarta
2017-10-03 10:37 (unknown), edo.hlaca
2017-10-03  8:40 (unknown), koopk
2017-10-03  7:38 (unknown), angers
2017-10-03  0:55 (unknown), jbmplupus-Mmb7MZpHnFY
2017-10-03  0:14 (unknown), roeper
2017-10-03  0:03 (unknown), noord-holland
2017-10-02 20:31 (unknown), kchristopher
2017-10-02 18:06 (unknown), dengx
2017-10-02 18:00 (unknown), Solen win2
2017-10-02 17:38 (unknown), nbensoncole81
2017-10-02 15:35 (unknown), nfrankiyamu
2017-09-29 21:29 (unknown), info
2017-09-29 18:01 (unknown), clasico082
2017-09-29 15:42 (unknown), noord-holland
2017-09-29 14:47 (unknown), nelcastellodicarta
2017-09-29 11:49 (unknown), roeper
2017-09-29 11:28 (unknown), cl_luzcc
2017-09-29  7:44 (unknown), amin
2017-09-29  3:06 (unknown), jha
2017-09-28 22:59 (unknown), rlm85310
2017-09-28 15:08 (unknown), amin
2017-09-27 19:30 (unknown), nbensoncole81
2017-09-27 19:12 (unknown), rlm85310
2017-09-27 17:41 (unknown), Michael Lyle
2017-09-22 19:34 (unknown), John Michael
2017-09-22  8:41 (unknown), Adrian Gillian Bayford
2017-09-22  3:39 (unknown), service
2017-09-22  1:55 (unknown), dengx
2017-09-21  7:47 (unknown), MAILER-DAEMON
2017-09-20  1:01 (unknown), ninfo
2017-09-15 17:30 (unknown), noreply
2017-09-15 17:29 (unknown), noreply
2017-09-12 19:45 (unknown), edo.hlaca
2017-09-12 19:16 (unknown), cl_luzcc
2017-09-11 20:10 (unknown), roeper
2017-09-11 19:35 (unknown) Helge Deller
2017-09-10  6:22 (unknown), Youichi Kanno
2017-09-07  7:05 (unknown), tabiadhawatef
2017-09-07  4:02 (unknown), dengx
2017-09-05 23:34 (unknown), kkaplanidou
2017-09-05 18:38 (unknown), john.dahlberg
2017-09-05 18:07 (unknown), bfoster
2017-09-05 16:31 (unknown), mgriffit
2017-09-05 14:02 (unknown), ecaterinasuciu09
2017-09-05 11:11 (unknown), inn
2017-09-05  2:43 (unknown), xb028930336
2017-09-05  1:51 (unknown), halinajan-4Uo9UdwAbX8
2017-09-04 23:46 (unknown), sterrenplan.kampen
2017-09-04 12:17 (unknown), noord-holland
2017-09-04  5:14 (unknown), nelcastellodicarta
2017-09-04  2:13 (unknown), x1kn8fk
2017-09-03 22:54 (unknown), sherrilyn
2017-09-03 21:51 (unknown), xb028930336
2017-09-03 21:26 (unknown), cl_luzcc
2017-09-02  6:40 (unknown), simon.a.t.hardy
2017-09-02  2:47 (unknown), nbensoncole81
2017-09-02  2:39 (unknown), een
2017-09-02  2:35 (unknown), jbmplupus-Mmb7MZpHnFY
2017-09-02  1:59 (unknown), danielle.picarda2
2017-09-02  0:58 (unknown), smallgroups
2017-09-01 22:51 (unknown), zumbalisa
2017-09-01 21:57 (unknown), umpvav-YDxpq3io04c
2017-09-01 21:32 (unknown), nenep
2017-09-01 20:58 (unknown), wvhyvcm.abyxg
2017-09-01 19:52 (unknown), sunaina
2017-09-01 15:00 (unknown), ujagu8185-Re5JQEeQqe8AvxtiuMwx3w
2017-09-01 11:40 (unknown), witt.kohl
2017-09-01  8:16 (unknown), financialaid
2017-09-01  6:21 (unknown), zita.latex
2017-09-01  4:05 (unknown), andrewf
2017-09-01  2:30 (unknown), robert.berry
2017-08-31 15:40 (unknown), sterrenplan.kampen
2017-08-31 12:23 (unknown), mark.robinson
2017-08-31  8:20 (unknown), jessica.jones-PnMVE5gNl/Vkbu+0n/iG1Q
2017-08-31  4:52 (unknown), archerrp
2017-08-31  1:39 (unknown) m.wierczynska
2017-08-30 19:49 (unknown), susan.christian
2017-08-30 18:32 [PATCH] default implementation for of_find_all_nodes(...) Artur Lorincz
     [not found] ` <1504117946-3958-1-git-send-email-larturus2-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-09-24 15:50   ` (unknown), Artur Lorincz
2017-10-06 19:31   ` (unknown), Artur Lorincz
2017-10-08 16:28   ` (unknown), Artur Lorincz
2017-08-30  1:37 (unknown), municlerk
2017-08-29  3:02 (unknown) catherine.verge
2017-08-28 17:29 (unknown), befragung
2017-08-28 13:22 (unknown), dengx
2017-08-28  6:48 (unknown), patientcentral
2017-08-26 14:48 (unknown), nfrankiyamu
2017-08-26  5:43 (unknown), carol.dallstream-WaM/PvcBqAo
2017-08-25  0:32 (unknown), agiva
2017-08-23  7:23 (unknown), Xuehan Xu
2017-08-22 13:31 (unknown), vinnakota chaitanya
2017-08-20  2:58 (unknown), Solen win2
2017-08-18 17:42 (unknown) Rajneesh Bhardwaj
2017-08-17 21:36 (unknown), Adam Richter
2017-08-16  5:46 (unknown), kim.frederiksen
2017-08-16  2:03 (unknown), xa0ajutor
2017-08-15 17:31 (unknown), nnarroyo623
2017-08-15 17:30 (unknown), simon.a.t.hardy
2017-08-15 14:45 (unknown), een
2017-08-15 11:16 (unknown), wvhyvcm.abyxg
2017-08-15  6:50 (unknown), demorton
2017-08-15  6:08 (unknown), eumann
2017-08-15  4:40 (unknown), mitch_128
2017-08-15  3:38 (unknown), rueggemann
2017-08-15  2:57 (unknown), nfrankiyamu
2017-08-15  1:55 (unknown), richard
2017-08-14 19:30 (unknown), sterrenplan.kampen
2017-08-14 17:38 (unknown), amin
2017-08-14 16:53 (unknown), durrant
2017-08-14 14:57 (unknown), linwoodrvsales
2017-08-13 15:17 (unknown), bunny43200
2017-08-12  1:27 (unknown), nenep
2017-08-12  1:11 (unknown), lizdebeth_
2017-08-11 22:09 (unknown), Chris
2017-08-11 17:28 (unknown), rhsinfo
2017-08-11  9:18 (unknown), jonathan.malihan
2017-08-11  6:14 (unknown), администратор 
2017-08-11  6:14 (unknown), администратор 
2017-08-11  6:14 (unknown), администратор 
2017-08-11  4:59 (unknown), Administrator
2017-08-11  4:57 (unknown), nenep
2017-08-11  4:42 (unknown), lizdebeth_
2017-08-10 21:36 (unknown), shriyashah
2017-08-10 21:08 (unknown), mitch_128
2017-08-10 18:16 (unknown), simon.a.t.hardy
2017-08-10  9:38 (unknown), asn-request-tfHHCSmtYoI
2017-08-10  3:32 (unknown), kholloway
2017-08-10  0:03 (unknown), michele
2017-08-09 23:53 (unknown), nenep
2017-08-09 23:15 (unknown), wvhyvcm.abyxg
2017-08-09 23:06 (unknown), editor
2017-08-09 21:55 (unknown), horizon
2017-08-09 20:25 (unknown), sterrenplan.kampen
2017-08-09 19:40 (unknown), tchidrenplytoo
2017-08-09 10:20 (unknown), системы администратор
2017-08-09 10:20 (unknown), системы администратор
2017-08-09 10:20 (unknown), системы администратор
2017-08-09  0:04 (unknown), h.piontek
2017-08-08 21:31 (unknown), michele
2017-08-08 20:55 (unknown), h.gerritsen12
2017-08-08 19:40 (unknown), citydesk
2017-08-08 19:14 (unknown), eaya
2017-08-08 17:09 (unknown), tchidrenplytoo
2017-08-08 14:49 (unknown) catherine.verge
2017-08-08  5:57 (unknown), befragung
2017-08-08  4:57 (unknown), wesley.sydnor
2017-08-07 23:50 (unknown), wvhyvcm.abyxg
2017-08-07 21:05 (unknown), sibolt.mulder-b60u5d1xRcFWk0Htik3J/w
2017-08-07 20:25 (unknown), editor
2017-08-07 19:03 (unknown), sm-yT/95SBIOhs
2017-08-07 18:42 (unknown), susan.christian
2017-08-07 18:38 (unknown), mitch_128
2017-08-07  7:38 (unknown), simon.a.t.hardy
2017-08-07  4:49 (unknown), sorbisches.internat
2017-08-06 23:55 (unknown), webmaster
2017-08-05 14:08 (unknown), simon.a.t.hardy
2017-08-04 23:59 (unknown), editor
2017-08-04  5:04 (unknown), durrant
2017-08-03 14:01 (unknown), Nora Johnson
2017-08-03  5:21 (unknown), Houston
2017-08-02 18:05 (unknown), Angela-63XfWfWBA5k
2017-08-02 17:31 (unknown), Edmond
2017-08-02 17:07 (unknown), Margery
2017-08-02 15:40 (unknown), Erma
2017-08-02 13:58 (unknown), Will
2017-08-02 11:47 (unknown), armiksanaye
2017-08-02  4:12 (unknown), Administrator
2017-08-02  3:45 (unknown), системы администратор
2017-08-02  3:45 (unknown), системы администратор
2017-08-02  3:45 (unknown), системы администратор
2017-08-02  1:19 (unknown), nenep
2017-08-02  1:05 (unknown), lizdebeth_
2017-08-02  0:36 (unknown), richard
2017-08-01 21:03 (unknown), editor
2017-08-01 19:35 (unknown), anderslindgaard
2017-08-01 16:33 (unknown), sterrenplan.kampen
2017-08-01 14:53 (unknown), Angela H. Whiteman
2017-08-01 12:35 (unknown), jha
2017-08-01 10:07 (unknown) Chris Ruehl
2017-08-01  4:40 (unknown), durrant
2017-08-01  1:35 (unknown), amin
2017-08-01  1:35 (unknown), xa0ajutor
2017-07-31 20:14 (unknown), x1kn8fk
2017-07-31 18:00 (unknown), robert.berry
2017-07-31 16:54 (unknown), bunny43200
2017-07-31 14:52 (unknown), horizon
2017-07-31 13:15 (unknown), sibolt.mulder-b60u5d1xRcFWk0Htik3J/w
2017-07-31 11:49 (unknown), kchristopher
2017-07-31 11:33 (unknown), rhsinfo
2017-07-31 10:50 (unknown), susan.christian
2017-07-30 23:33 (unknown), daven bango
2017-07-28 16:02 (unknown), gdahl
2017-07-28  7:44 (unknown), robert.berry
2017-07-27 13:00 (unknown), nfrankiyamu
2017-07-27  5:01 (unknown), hp
2017-07-27  2:16 (unknown) ceph-devel
2017-07-27  2:14 (unknown) ceph-devel
2017-07-26 20:45 (unknown), een
2017-07-26 20:08 (unknown), municlerk
2017-07-26 14:20 (unknown), sterrenplan.kampen
2017-07-26 11:39 (unknown), chrisbi_anelyst
2017-07-26 10:32 (unknown), Solen win2
2017-07-26  6:36 (unknown), nenep
2017-07-26  4:42 (unknown), horizon
2017-07-25 23:24 (unknown), h.gerritsen12
2017-07-25 20:41 (unknown), sorbisches.internat
2017-07-25 20:01 (unknown), hp
2017-07-25 18:53 (unknown), sibolt.mulder-b60u5d1xRcFWk0Htik3J/w
2017-07-25 18:45 (unknown), x1kn8fk
2017-07-25 16:36 (unknown), susan.christian
2017-07-25 10:27 (unknown), nick_c_huang
2017-07-23 23:48 (unknown), miteshriya
2017-07-20 18:43 (unknown), tbinh.minhnd
2017-07-20  3:55 (unknown), mfr-6k8blvha/+BqlCpFK1mnLg
2017-07-19 11:11 (unknown), rhsinfo
2017-07-18 20:36 (unknown), bunny43200
2017-07-18 20:28 (unknown), lizdebeth_
2017-07-18 20:17 (unknown), brian
2017-07-18 15:56 (unknown), bfoster
2017-07-18 12:45 (unknown), mitch_128
2017-07-18  6:22 (unknown), sorbisches.internat
2017-07-18  5:45 (unknown), h.gerritsen12
2017-07-18  4:50 (unknown), ying.huang-ral2JQCrhuEAvxtiuMwx3w
2017-07-18  4:32 (unknown), citydesk
2017-07-18  4:09 (unknown), armouralumni
2017-07-17 23:02 (unknown), h.piontek
2017-07-17 21:54 (unknown), citydesk
2017-07-17 17:30 (unknown), richard
2017-07-17 15:42 (unknown), tchidrenplytoo
2017-07-17 15:31 (unknown), kathleen.gilbert
2017-07-17  1:20 (unknown), tchidrenplytoo
2017-07-17  1:09 (unknown), kathleen.gilbert
2017-07-16  7:25 (unknown), kim.frederiksen
2017-07-15 12:30 (unknown), Huaisheng HS1 Ye
2017-07-13  4:49 (unknown), delaware.orders
2017-07-13  3:37 (unknown), befragung
2017-07-12 19:24 (unknown), patientcentral
2017-07-12 11:22 (unknown), sterrenplan.kampen
2017-07-11 16:39 (unknown), indulge-HCInDj6vYHrk4FeknX8I/ZqQE7yCjDx5
2017-07-10 22:07 (unknown), jacqueline.pike
2017-07-10 21:53 (unknown), agiva
2017-07-10 21:37 (unknown), roeper
2017-07-10 12:51 (unknown), lucia.germino
2017-07-10 12:43 (unknown), brian
2017-07-10 10:06 (unknown), alters
2017-07-10  3:45 (unknown), системы администратор
2017-07-10  3:45 (unknown), системы администратор
2017-07-10  3:45 (unknown), системы администратор
2017-07-09 23:29 (unknown), brian
2017-07-09 23:19 (unknown), Corporate Lenders
2017-07-09 20:52 (unknown), iker-KvP5wT2u2U0
2017-07-09 13:02 (unknown), smallgroups
2017-07-08 18:22 (unknown), Alfred chow
2017-07-08 17:13 (unknown), horizon
2017-07-07  1:37 (unknown), zumbalisa
2017-07-07  0:30 (unknown), amin
2017-07-06 17:35 (unknown), simon.a.t.hardy
2017-07-06 14:11 (unknown), een
2017-07-06  6:10 (unknown), armouralumni
2017-07-05 21:18 (unknown), een
2017-07-05 15:57 (unknown), sibolt.mulder-b60u5d1xRcFWk0Htik3J/w
2017-07-05 15:15 (unknown), armouralumni
2017-07-05  8:06 (unknown), koopk
2017-07-05  6:55 (unknown), agiva
2017-07-05  6:42 (unknown), angers
2017-07-05  0:06 (unknown), michele
2017-07-04 22:53 (unknown), j.lahoda-aRb0bU7PRFPrBKCeMvbIDA
2017-07-04 19:53 (unknown), tchidrenplytoo
2017-07-04 18:35 (unknown), noord-holland
2017-07-04 10:50 (unknown), h.gerritsen12
2017-07-04  8:52 (unknown), citydesk
2017-07-04  6:01 (unknown), xa0ajutor
2017-07-04  4:17 (unknown), rueggemann
2017-07-03 13:54 (unknown), sm-yT/95SBIOhs
2017-07-03 13:30 (unknown), roeper
2017-07-03 12:43 (unknown), mitch_128
2017-07-03  4:44 (unknown), beautyink
2017-07-03  1:28 (unknown), h.piontek
2017-07-02 20:26 (unknown), tabiadhawatef
2017-07-02 18:44 (unknown), tchidrenplytoo
2017-07-02 10:14 (unknown), armouralumni
2017-07-01 11:36 (unknown), p.mueller-spz-hgw-Mmb7MZpHnFY
2017-06-30  8:29 (unknown), sibolt.mulder-b60u5d1xRcFWk0Htik3J/w
2017-06-30  1:14 (unknown), paloma.depping
2017-06-29 13:46 (unknown), kholloway
2017-06-29 12:20 (unknown), The Post Office
2017-06-29 10:39 (unknown), lizdebeth_
2017-06-28 14:22 (unknown), tchidrenplytoo
2017-06-28  3:56 (unknown), системы администратор
2017-06-28  3:56 (unknown), системы администратор
2017-06-28  3:56 (unknown), системы администратор
2017-06-28  3:22 (unknown), Administrator
2017-06-27  7:15 (unknown), noord-holland
2017-06-27  7:12 (unknown), loisc07
2017-06-27  0:08 (unknown), h.gerritsen12
2017-06-26 22:58 (unknown), Anders Lind
2017-06-26 22:14 (unknown), citydesk
2017-06-26 17:51 (unknown), rueggemann
2017-06-26 16:10 (unknown), susan.christian
2017-06-26 15:03 (unknown), richard
2017-06-26 10:22 (unknown), p.mueller-spz-hgw-Mmb7MZpHnFY
2017-06-26  9:15 (unknown), beautyink
2017-06-26  5:21 (unknown) Leon Romanovsky
2017-06-25 20:10 (unknown), h.gerritsen12
2017-06-25 18:13 (unknown), citydesk
2017-06-25 13:23 (unknown), rueggemann
2017-06-25 10:21 (unknown), richard
2017-06-25  5:19 (unknown), nbensoncole81
2017-06-25  5:14 (unknown), archerrp
2017-06-25  4:47 (unknown), h.gerritsen12
2017-06-25  3:57 (unknown), nfrankiyamu
2017-06-25  2:39 (unknown), bflove1-ntQ8I44N4zM
2017-06-24 19:38 (unknown), richard
2017-06-24 15:03 (unknown), archerrp
2017-06-24  8:07 (unknown), j.lahoda-aRb0bU7PRFPrBKCeMvbIDA
2017-06-24  2:32 (unknown), h.gerritsen12
2017-06-24  0:35 (unknown), citydesk
2017-06-24  0:04 (unknown), hastpass
2017-06-23 19:27 (unknown), armouralumni
2017-06-23 17:22 (unknown), richard
2017-06-23 12:26 (unknown), archerrp
2017-06-23  6:09 (unknown), Administrator
2017-06-23  4:50 (unknown), nkosuta-f+iqBESB6gc
2017-06-23  2:49 (unknown), mdavis
2017-06-23  1:43 (unknown), horizon
2017-06-22 20:24 (unknown), koopk
2017-06-22 20:22 (unknown), junplzen
2017-06-22 13:22 (unknown), jeffrey.faulkenberg
2017-06-22  5:49 (unknown), noord-holland
2017-06-22  2:13 (unknown), ecaterinasuciu09
2017-06-21  7:43 (unknown), koopk
2017-06-21  7:32 (unknown), tjcrewvolcoordinator-Re5JQEeQqe8AvxtiuMwx3w
2017-06-21  6:23 (unknown), chrisbi_anelyst
2017-06-21  6:16 (unknown), angers
2017-06-21  4:40 (unknown), kholloway
2017-06-20 18:45 (unknown), roeper
2017-06-20 17:50 (unknown), editor
2017-06-20 16:31 (unknown), nfrankiyamu
2017-06-20  6:29 (unknown), xa0ajutor
2017-06-20  0:47 (unknown), durrant
2017-06-19 19:58 (unknown), tjcrewvolcoordinator-Re5JQEeQqe8AvxtiuMwx3w
2017-06-19 18:46 (unknown), chrisbi_anelyst
2017-06-19 16:53 (unknown), armouralumni
2017-06-19  9:36 (unknown), susan.christian
2017-06-18 14:27 (unknown), xa0ajutor
2017-06-18 13:58 (unknown), membership
2017-06-17 22:46 (unknown), rhsinfo
2017-06-16 14:46 (unknown), roeper
2017-06-15 17:35 (unknown), jeffrey.faulkenberg
2017-06-15 14:56 (unknown), john.dahlberg
2017-06-15  8:37 (unknown), ecaterinasuciu09
2017-06-14 22:19 (unknown), muirs
2017-06-14 21:25 (unknown), koopk
2017-06-14 20:41 (unknown), angers
2017-06-14 19:31 (unknown), kholloway
2017-06-14 16:39 (unknown), nfrankiyamu
2017-06-14 12:27 (unknown), board
2017-06-14 12:26 (unknown), sibolt.mulder-b60u5d1xRcFWk0Htik3J/w
2017-06-14 11:42 (unknown), sophie.norman
2017-06-14 10:27 (unknown), susan.christian
2017-06-14  1:06 (unknown), durrant
2017-06-13 21:38 (unknown), douille.l
2017-06-13 11:59 (unknown), susan.christian
2017-06-13 10:15 (unknown), nenep
2017-06-13  9:59 (unknown), lizdebeth_
2017-06-13  9:35 (unknown), wvhyvcm.abyxg
2017-06-13  8:14 (unknown), horizon
2017-06-13  4:53 (unknown), roeper
2017-06-13  4:35 (unknown), ujagu8185-Re5JQEeQqe8AvxtiuMwx3w
2017-06-13  4:22 (unknown), mitch_128
2017-06-12 21:36 (unknown), nbensoncole81
2017-06-12 17:13 (unknown), armiksanaye
2017-06-12 16:44 (unknown), nfrankiyamu
2017-06-12 15:02 (unknown), amin
2017-06-12 10:50 (unknown), sibolt.mulder-b60u5d1xRcFWk0Htik3J/w
2017-06-12  7:28 (unknown), webmaster
2017-06-11 16:35 (unknown), mitch_128
2017-06-11  7:27 (unknown), roeper
2017-06-11  0:20 (unknown), service
2017-06-10 21:10 (unknown), mbalhoff
2017-06-10 20:24 (unknown), board
2017-06-10 14:34 (unknown), kbennett
2017-06-10 13:33 (unknown), iker-KvP5wT2u2U0
2017-06-10  7:07 (unknown), Youichi Kanno
2017-06-10  5:53 (unknown), jacqueline.pike
2017-06-10  5:29 (unknown), agiva
2017-06-09 19:04 (unknown), armouralumni
2017-06-09 18:57 (unknown), editor
2017-06-09 17:38 (unknown), nfrankiyamu
2017-06-09 10:47 (unknown), tjcrewvolcoordinator-Re5JQEeQqe8AvxtiuMwx3w
2017-06-09  8:02 (unknown), kholloway
2017-06-09  4:30 (unknown), citydesk
2017-06-09  3:35 (unknown), office
2017-06-09  2:06 (unknown), rueggemann
2017-06-09  1:31 (unknown), durrant
2017-06-09  0:39 (unknown), susan.christian
2017-06-09  0:34 (unknown), richard
2017-06-08 18:00 (unknown), beautyink
2017-06-08 15:18 (unknown), junplzen
2017-06-08 14:09 (unknown), service
2017-06-08 12:51 (unknown), koopk
2017-06-08  5:00 (unknown), noord-holland
2017-06-08  3:14 (unknown), kgbok.kezyhumh
2017-06-07  3:19 (unknown), lucia.germino
2017-06-06 23:46 (unknown), mdavis
2017-06-06 20:36 (unknown), dengx
2017-06-06  7:19 (unknown), From Lori J. Robinson
2017-06-06  7:19 (unknown), From Lori J. Robinson
2017-06-06  7:19 (unknown), From Lori J. Robinson
2017-06-05 17:32 (unknown), armouralumni
2017-06-05  5:43 (unknown), h.gerritsen12
2017-06-05  4:30 (unknown), citydesk
2017-06-05  1:08 (unknown), rueggemann
2017-06-04 19:55 (unknown), archerrp
2017-06-03  7:17 (unknown), nbensoncole81
2017-06-03  5:45 (unknown), nfrankiyamu
2017-06-02  8:02 (unknown), jessica.jones-PnMVE5gNl/Vkbu+0n/iG1Q
2017-06-01 20:40 (unknown), nbensoncole81
2017-06-01  2:26 (unknown), Dave Airlie
2017-06-01  2:25 (unknown), kbennett
2017-06-01  1:55 (unknown), cdevries
2017-06-01  0:43 (unknown), armouralumni
2017-05-31 14:53 (unknown), tjcrewvolcoordinator-Re5JQEeQqe8AvxtiuMwx3w
2017-05-31 11:36 (unknown), p.mueller-spz-hgw-Mmb7MZpHnFY
2017-05-26 16:33 (unknown) Anderson McEnany <
2017-05-26 16:33 (unknown) Anderson McEnany <
2017-05-23 22:44 (unknown), noord-holland
2017-05-23 16:24 (unknown), agiva
2017-05-23  9:36 (unknown), bendis.michal
2017-05-23  8:42 (unknown), delaware.orders
2017-05-23  4:53 (unknown), nfrankiyamu
2017-05-23  2:19 (unknown), mdavis
2017-05-22 22:32 (unknown), patientcentral
2017-05-22 20:39 (unknown), horizon
2017-05-22 16:10 (unknown), mitch_128
2017-05-21 20:35 (unknown), armiksanaye
2017-05-21 16:36 (unknown), x1kn8fk
2017-05-21 13:56 (unknown), sibolt.mulder-b60u5d1xRcFWk0Htik3J/w
2017-05-21 11:38 (unknown), susan.christian
2017-05-21 11:13 (unknown), mariobronti
2017-05-21  9:17 (unknown), jacqueline.pike
2017-05-21  8:55 (unknown), agiva
2017-05-21  8:42 (unknown), brucet
2017-05-20 21:16 (unknown), h.gerritsen12
2017-05-20 20:00 (unknown), citydesk
2017-05-20 18:58 (unknown), office
2017-05-20 17:45 (unknown), counselling-30L6jp03H7UtpYsHHOQ6Llpr/1R2p/CL
2017-05-20 16:22 (unknown), alters
2017-05-20 14:29 (unknown), cv
2017-05-20 12:27 (unknown), ajae
2017-05-20 11:47 (unknown), john.dahlberg
2017-05-20  9:40 (unknown), mgriffit
2017-05-20  8:14 (unknown), ecaterinasuciu09
2017-05-20  1:09 (unknown), board
2017-05-20  0:40 (unknown), sophie.norman
2017-05-20  0:26 (unknown), brian
2017-05-19 16:59 (unknown), zumbalisa
2017-05-19 15:35 (unknown), susan.christian
2017-05-19 14:51 (unknown), citydesk
2017-05-19 13:31 (unknown), office
2017-05-19 11:45 (unknown), counselling-30L6jp03H7UtpYsHHOQ6Llpr/1R2p/CL
2017-05-19  6:45 (unknown), j.lahoda-aRb0bU7PRFPrBKCeMvbIDA
2017-05-19  4:32 (unknown), archerrp
2017-05-18 19:22 (unknown), lucia.germino
2017-05-18 16:47 (unknown), susan.christian
2017-05-18 14:13 (unknown), agiva
2017-05-18 13:41 (unknown), alters
2017-05-18 13:40 (unknown), hp
2017-05-16  3:06 (unknown), armiksanaye
2017-05-14  3:19 (unknown), unixkeeper
2017-05-11  1:02 (unknown), info
2017-05-04 13:20 (unknown), Steve French
2017-05-01 18:59 [PATCHv2 1/1] IB/ipoib: add get_settings in ethtool Doug Ledford
     [not found] ` <1493665155.3041.186.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2017-05-04  5:24   ` (unknown), Zhu Yanjun
2017-04-28  8:36 (unknown), администратор
2017-04-28  8:36 (unknown), администратор
2017-04-28  8:36 (unknown), администратор
2017-04-28  8:20 (unknown), Anatolij Gustschin
2017-04-26  7:36 (unknown), glolariu
2017-04-21 17:54 (unknown), Mr.Jerry Smith
2017-04-21 17:44 (unknown), Mr.Jerry Smith
2017-04-21 17:24 (unknown), Mr.Jerry Smith
2017-04-21 17:07 (unknown), Mr.Jerry Smith
2017-04-21 17:06 (unknown), Mr.Jerry Smith
2017-04-21 16:59 (unknown) Mr.Jerry Smith
2017-04-21 11:49 (unknown), kathleen.gilbert
2017-04-21  9:51 (unknown), Kredit
2017-04-21  9:25 (unknown), delaware.orders
2017-04-21  8:36 (unknown), joseph.x.hronec
2017-04-21  7:38 (unknown), wesley.sydnor
2017-04-20 12:28 (unknown), h.gerritsen12
2017-04-20  6:33 (unknown), rueggemann
2017-04-19 20:46 (unknown), hp
2017-04-19 16:38 (unknown), amin
2017-04-18 16:05 (unknown), rlm85310
2017-04-18 10:57 (unknown) catherine.verge
2017-04-18  2:53 (unknown), h.piontek
2017-04-17 18:00 (unknown), j.lahoda-aRb0bU7PRFPrBKCeMvbIDA
2017-04-17 15:20 (unknown), tchidrenplytoo
2017-04-17  7:56 (unknown), lucia.germino
2017-04-17  4:06 (unknown), nkosuta-f+iqBESB6gc
2017-04-17  3:38 (unknown), kgbok.kezyhumh
2017-04-17  3:09 (unknown), bunny43200
2017-04-17  2:26 (unknown), wvhyvcm.abyxg
2017-04-17  2:06 (unknown), rlm85310
2017-04-17  0:43 (unknown), John Ewalt
2017-04-16 23:57 (unknown), muirs
2017-04-16 23:02 (unknown), brian
2017-04-16 21:22 (unknown), ujagu8185-Re5JQEeQqe8AvxtiuMwx3w
2017-04-16 20:59 (unknown), mitch_128
2017-04-16 19:08 (unknown), athgregory
2017-04-16 18:32 (unknown), nathalie.colle
2017-04-16 18:30 (unknown), r67
2017-04-16 17:49 (unknown), zem.uchastok
2017-04-16 17:44 (unknown), bkjf
2017-04-16 17:41 (unknown) askeeta
2017-04-16 16:37 (unknown), bfoster
2017-04-16 16:31 (unknown), a.skucha
2017-04-16 15:48 (unknown), redbeardcharters
2017-04-16  8:52 (unknown), geir.nuland
2017-04-16  8:21 (unknown), jha
2017-04-16  3:33 (unknown), ohnesorge-wiek
2017-04-16  3:17 (unknown), resson-epfaOiJH9AY
2017-04-15 15:00 (unknown), jbmplupus-Mmb7MZpHnFY
2017-04-15 14:16 (unknown), demorton
2017-04-15 13:53 (unknown), smallgroups
2017-04-13 15:58 (unknown), Scott Ellentuch
2017-04-10 11:47 (unknown), office
2017-04-10 10:18 (unknown), rueggemann
2017-04-10  8:37 (unknown), kkaplanidou
2017-04-10  6:51 (unknown), kathleen.gilbert
2017-04-10  5:46 (unknown), archerrp
2017-04-10  3:30 (unknown), hp
2017-04-10  0:41 (unknown), amin
2017-04-09 22:07 (unknown) askeeta
2017-04-09 22:03 (unknown), zem.uchastok
2017-04-09 21:15 (unknown), ujagu8185-Re5JQEeQqe8AvxtiuMwx3w
2017-04-09 20:48 (unknown), simon.a.t.hardy
2017-04-09 15:30 (unknown), jha
2017-04-09 14:11 (unknown), carmen.croonquist
2017-04-09  6:12 (unknown), roeper
2017-04-09  2:11 (unknown), jacqueline.pike
2017-04-09  0:27 (unknown), simon.a.t.hardy
2017-04-08 19:20 (unknown), jbmplupus-Mmb7MZpHnFY

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=20180420080313.18796-1-hch@lst.de \
    --to=hch@lst.de \
    --cc=deanbo422@gmail.com \
    --cc=green.hu@gmail.com \
    --cc=linux-alpha@vger.kernel.org \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-c6x-dev@linux-c6x.org \
    --cc=linux-hexagon@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-m68k@lists.linux-m68k.org \
    --cc=linux-parisc@vger.kernel.org \
    --cc=linux-sh@vger.kernel.org \
    --cc=linux-snps-arc@lists.infradead.org \
    --cc=linux-xtensa@linux-xtensa.org \
    --cc=monstr@monstr.eu \
    --cc=nios2-dev@lists.rocketboards.org \
    --cc=openrisc@lists.librecores.org \
    --cc=sparclinux@vger.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.