All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 0/4] ixgbe: enable Relaxed Order for ARM64
@ 2017-04-01  7:25 ` Ding Tianhong
  0 siblings, 0 replies; 60+ messages in thread
From: Ding Tianhong @ 2017-04-01  7:25 UTC (permalink / raw)
  To: catalin.marinas, will.deacon, mark.rutland, robin.murphy,
	jeffrey.t.kirsher, davem, alexander.duyck, linux-arm-kernel,
	netdev
  Cc: Ding Tianhong

The IXGBE_ALLOW_RELAXED_ORDER will enable Relaxed Ordering (RO) which allows
transactions that do not have any order of completion requirements to
complete more efficiently compare to the Stricted Ordering (SO) for ixbge
nic card. Some architecture will see high write-to-memory performance when RO is
enabled on the data transactions just like the SPARC did.

The aarch64 could both support Relaxed Ordering (RO) and Stricted Ordering (SO),
so enable this config could get much more better performance, didn't see any
adverse effects.

The ARCH_WANT_RELAX_ORDER looks more general and would cause misleading and
ambiguous, and till now only ixgbe could enable this "flag", so rename this
config more specific.

After discussion with the architecture maintainer, enable this config in driver
looks more appropriate to compatible several architecture just like SPARC and ARM64,
maybe we need more discussion about this, so let's begin by this patch set.

In the last patch 1a8b6d76(net:add one common config ...), Mao only fix the
config name issue for 82599 pf, but the 82598 and 82599 vf still need to be fixed,
so rename the config all in the drivers to instead of CONFIG_SPARC.

Ding Tianhong (4):
  ixgbe: sparc: rename the ARCH_WANT_RELAX_ORDER to
    IXGBE_ALLOW_RELAXED_ORDER
  ixgbe: ixgbevf: Clear the CONFIG_SPARC for ixgbevf and 82598
  ixgbe: move IXGBE_ALLOW_RELAXED_ORDER from architecture to driver
  ixgbe: enable IXGBE_ALLOW_RELAXED_ORDER for ARM64

 arch/Kconfig                                      | 3 ---
 arch/sparc/Kconfig                                | 1 -
 drivers/net/ethernet/intel/Kconfig                | 4 ++++
 drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c    | 4 ++--
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.c   | 2 +-
 drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

-- 
1.9.0

^ permalink raw reply	[flat|nested] 60+ messages in thread

end of thread, other threads:[~2017-04-28 18:42 UTC | newest]

Thread overview: 60+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-01  7:25 [PATCH net-next 0/4] ixgbe: enable Relaxed Order for ARM64 Ding Tianhong
2017-04-01  7:25 ` Ding Tianhong
2017-04-01  7:25 ` [PATCH net-next 1/4] ixgbe: sparc: rename the ARCH_WANT_RELAX_ORDER to IXGBE_ALLOW_RELAXED_ORDER Ding Tianhong
2017-04-01  7:25   ` Ding Tianhong
2017-04-01 18:26   ` David Miller
2017-04-01 18:26     ` David Miller
2017-04-02  6:49     ` Ding Tianhong
2017-04-02  6:49       ` [Intel-wired-lan] " Ding Tianhong
2017-04-02  6:49       ` Ding Tianhong
2017-04-05 13:05       ` John Garry
2017-04-05 13:05         ` [Intel-wired-lan] " John Garry
2017-04-05 13:05         ` John Garry
2017-04-06 11:28         ` Ding Tianhong
2017-04-06 11:28           ` [Intel-wired-lan] " Ding Tianhong
2017-04-06 11:28           ` Ding Tianhong
     [not found]     ` <42428725-89f1-1508-4e3d-723e087b3bbb@huawei.com>
2017-04-13  9:10       ` Gabriele Paoloni
2017-04-13  9:10         ` Gabriele Paoloni
2017-04-13 14:53         ` David Miller
2017-04-13 14:53           ` David Miller
2017-04-18 13:25         ` David Laight
2017-04-18 13:25           ` David Laight
2017-04-19 14:28           ` Gabriele Paoloni
2017-04-19 14:28             ` Gabriele Paoloni
     [not found]           ` <DB5PR05MB138288172B04713EB0C1DB55D3190@DB5PR05MB1382.eurprd05.prod.outlook.com>
     [not found]             ` <EE11001F9E5DDD47B7634E2F8A612F2E205352FC@FRAEML521-MBX.china.huawei.com>
2017-04-19 14:46               ` Gabriele Paoloni
2017-04-19 14:46                 ` Gabriele Paoloni
2017-04-24 14:53                 ` Will Deacon
2017-04-24 14:53                   ` Will Deacon
2017-04-26  9:26             ` Ding Tianhong
2017-04-26  9:26               ` Ding Tianhong
2017-04-26 16:18               ` Alexander Duyck
2017-04-26 16:18                 ` Alexander Duyck
2017-04-26 16:18                 ` Alexander Duyck
2017-04-27 17:19                 ` Bjorn Helgaas
2017-04-27 17:19                   ` Bjorn Helgaas
2017-04-27 17:19                   ` Bjorn Helgaas
2017-04-27 19:00                   ` Casey Leedom
2017-04-27 19:00                     ` Casey Leedom
2017-04-27 19:00                     ` Casey Leedom
2017-04-27 20:34                   ` Casey Leedom
2017-04-27 20:34                     ` Casey Leedom
2017-04-27 20:34                     ` Casey Leedom
2017-04-28  9:12                     ` Gabriele Paoloni
2017-04-28  9:12                       ` Gabriele Paoloni
2017-04-28  9:12                       ` Gabriele Paoloni
2017-04-28  8:51                   ` Lucas Stach
2017-04-28  8:51                     ` Lucas Stach
2017-04-28  8:51                     ` Lucas Stach
2017-04-28 18:42                     ` Casey Leedom
2017-04-28 18:42                       ` Casey Leedom
2017-04-28 18:42                       ` Casey Leedom
2017-04-01  7:25 ` [PATCH net-next 2/4] ixgbe: ixgbevf: Clear the CONFIG_SPARC for ixgbevf and 82598 Ding Tianhong
2017-04-01  7:25   ` Ding Tianhong
2017-04-01  7:25 ` [PATCH net-next 3/4] ixgbe: move IXGBE_ALLOW_RELAXED_ORDER from architecture to driver Ding Tianhong
2017-04-01  7:25   ` Ding Tianhong
2017-04-01  7:25 ` [PATCH net-next 4/4] ixgbe: enable IXGBE_ALLOW_RELAXED_ORDER for ARM64 Ding Tianhong
2017-04-01  7:25   ` Ding Tianhong
2017-04-01  8:39 ` [PATCH net-next 0/4] ixgbe: enable Relaxed Order " Jeff Kirsher
2017-04-01  8:39   ` Jeff Kirsher
2017-04-01  8:49   ` Ding Tianhong
2017-04-01  8:49     ` Ding Tianhong

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.