DPDK patches and discussions
 help / color / mirror / Atom feed
From: Chao Zhu <bjzhuc@cn.ibm.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH 0/7] Patches to split architecture specific operations from DPDK
Date: Fri, 26 Sep 2014 05:33:31 -0400	[thread overview]
Message-ID: <1411724018-7738-1-git-send-email-bjzhuc@cn.ibm.com> (raw)

The set of patches split x86 architecture specific operations from DPDK and put them to the
arch directories of i686 and x86_64 architecture. This will make the adpotion of DPDK much easier
on other computer architecture. For a new architecture, just add an architecture specific
directory and necessary building configuration files, then DPDK can support it.

Chao Zhu (7):
  Split atomic operations to architecture specific
  Split byte order operations to architecture specific
  Split CPU cycle operation to architecture specific
  Split prefetch operations to architecture specific
  Split spinlock operations to architecture specific
  Split memcpy operation to architecture specific
  Split CPU flags operations to architecture specific

 lib/librte_eal/common/Makefile                     |    2 +-
 lib/librte_eal/common/eal_common_cpuflags.c        |  173 +---------
 .../common/include/i686/arch/rte_atomic_arch.h     |  378 ++++++++++++++++++++
 .../common/include/i686/arch/rte_byteorder_arch.h  |   95 +++++
 .../common/include/i686/arch/rte_cpuflags_arch.h   |  335 +++++++++++++++++
 .../common/include/i686/arch/rte_cycles_arch.h     |  108 ++++++
 .../common/include/i686/arch/rte_memcpy_arch.h     |  199 ++++++++++
 .../common/include/i686/arch/rte_prefetch_arch.h   |   68 ++++
 .../common/include/i686/arch/rte_spinlock_arch.h   |  128 +++++++
 lib/librte_eal/common/include/rte_atomic.h         |  172 +--------
 lib/librte_eal/common/include/rte_byteorder.h      |   58 +---
 lib/librte_eal/common/include/rte_cpuflags.h       |  110 +------
 lib/librte_eal/common/include/rte_cycles.h         |   31 +--
 lib/librte_eal/common/include/rte_memcpy.h         |   95 +-----
 lib/librte_eal/common/include/rte_prefetch.h       |    7 +-
 lib/librte_eal/common/include/rte_spinlock.h       |   55 +---
 .../common/include/x86_64/arch/rte_atomic_arch.h   |  378 ++++++++++++++++++++
 .../include/x86_64/arch/rte_byteorder_arch.h       |   95 +++++
 .../common/include/x86_64/arch/rte_cpuflags_arch.h |  335 +++++++++++++++++
 .../common/include/x86_64/arch/rte_cycles_arch.h   |  108 ++++++
 .../common/include/x86_64/arch/rte_memcpy_arch.h   |  199 ++++++++++
 .../common/include/x86_64/arch/rte_prefetch_arch.h |   68 ++++
 .../common/include/x86_64/arch/rte_spinlock_arch.h |  128 +++++++
 23 files changed, 2660 insertions(+), 665 deletions(-)
 create mode 100644 lib/librte_eal/common/include/i686/arch/rte_atomic_arch.h
 create mode 100644 lib/librte_eal/common/include/i686/arch/rte_byteorder_arch.h
 create mode 100644 lib/librte_eal/common/include/i686/arch/rte_cpuflags_arch.h
 create mode 100644 lib/librte_eal/common/include/i686/arch/rte_cycles_arch.h
 create mode 100644 lib/librte_eal/common/include/i686/arch/rte_memcpy_arch.h
 create mode 100644 lib/librte_eal/common/include/i686/arch/rte_prefetch_arch.h
 create mode 100644 lib/librte_eal/common/include/i686/arch/rte_spinlock_arch.h
 create mode 100644 lib/librte_eal/common/include/x86_64/arch/rte_atomic_arch.h
 create mode 100644 lib/librte_eal/common/include/x86_64/arch/rte_byteorder_arch.h
 create mode 100644 lib/librte_eal/common/include/x86_64/arch/rte_cpuflags_arch.h
 create mode 100644 lib/librte_eal/common/include/x86_64/arch/rte_cycles_arch.h
 create mode 100644 lib/librte_eal/common/include/x86_64/arch/rte_memcpy_arch.h
 create mode 100644 lib/librte_eal/common/include/x86_64/arch/rte_prefetch_arch.h
 create mode 100644 lib/librte_eal/common/include/x86_64/arch/rte_spinlock_arch.h

             reply	other threads:[~2014-09-26  9:26 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-26  9:33 Chao Zhu [this message]
2014-09-26  9:33 ` [dpdk-dev] [PATCH 1/7] Split atomic operations to architecture specific Chao Zhu
2014-09-29 11:05   ` Bruce Richardson
2014-09-29 15:24     ` Neil Horman
2014-09-30  2:18       ` Chao CH Zhu
2014-09-26  9:33 ` [dpdk-dev] [PATCH 2/7] Split byte order " Chao Zhu
2014-09-26  9:33 ` [dpdk-dev] [PATCH 3/7] Split CPU cycle operation " Chao Zhu
2014-09-26  9:33 ` [dpdk-dev] [PATCH 4/7] Split prefetch operations " Chao Zhu
2014-09-26  9:33 ` [dpdk-dev] [PATCH 5/7] Split spinlock " Chao Zhu
2014-09-26  9:33 ` [dpdk-dev] [PATCH 6/7] Split memcpy operation " Chao Zhu
2014-09-26  9:33 ` [dpdk-dev] [PATCH 7/7] Split CPU flags operations " Chao Zhu
2014-10-03 13:21 ` [dpdk-dev] [PATCH 0/7] Patches to split architecture specific operations from DPDK David Marchand
2014-10-03 13:29   ` Bruce Richardson
2014-10-13  2:36   ` Chao CH Zhu
2014-10-06 21:46 ` Cyril Chemparathy
2014-10-12  9:14   ` Chao CH Zhu

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=1411724018-7738-1-git-send-email-bjzhuc@cn.ibm.com \
    --to=bjzhuc@cn.ibm.com \
    --cc=dev@dpdk.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).