All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
From: Takuya ASADA <syuu-RmZWMc9puTNJc61us3aD9laTQe2KTcn/@public.gmane.org>
To: dev-VfR2kkLFssw@public.gmane.org
Subject: Re: [RFC PATCHv3 0/7] add OSv support
Date: Tue, 21 Apr 2015 03:37:34 +0900	[thread overview]
Message-ID: <CAPWdgggjvMZGUpY6_GPjCgqN00UiWkm50M8z3oLa7gU8x1BmbA@mail.gmail.com> (raw)
In-Reply-To: <1428346691-14894-1-git-send-email-syuu-RmZWMc9puTNJc61us3aD9laTQe2KTcn/@public.gmane.org>

Any comments/suggestions?

On Tue, Apr 7, 2015 at 3:58 AM, Takuya ASADA <syuu-RmZWMc9puTNJc61us3aD9laTQe2KTcn/@public.gmane.org>
wrote:

> This is 3rd version of OSv support patchset.
>
> Changelist:
>  - sync with latest master
>  - updated Capstan build script for OSv v0.19
>  - rte_eal_version.map fix
>  - CONFIG_RTE_BUILD_SHARED_LIB=y and CONFIG_RTE_BUILD_COMBINE_LIBS=y by
> default
>  - Check OSv NIC driver is loaded for each device, attach PMD only if OSv
> driver is not loaded
>  - Use --maxnic on cmdline to skip loading OSv NIC driver
>  - Don't enable MSI-X on virtio, since it's not enable when OSv NIC driver
> is not loaded
>
> Takuya ASADA (7):
>   mk: support compiling C++ code
>   eal: Add extern C on eal_hugepages.h
>   eal: Add extern C on eal_thread.h
>   eal: Add extern C on eal_private.h
>   add OSv support
>   app/test: support OSv
>   doc: Add Getting Started Guide for OSv
>
>  app/test/test_eal_flags.c                          |  34 +--
>  app/test/test_timer_perf.c                         |   2 +-
>  config/{common_linuxapp => common_osvapp}          |  29 +-
>  ...xapp-gcc => defconfig_x86_64-native-osvapp-gcc} |   2 +-
>  doc/guides/index.rst                               |   1 +
>  doc/guides/osv_gsg/build_dpdk.rst                  | 282
> +++++++++++++++++++
>  doc/guides/osv_gsg/build_sample_apps.rst           | 123 ++++++++
>  doc/guides/{freebsd_gsg => osv_gsg}/index.rst      |   3 +-
>  doc/guides/{freebsd_gsg => osv_gsg}/intro.rst      |  15 +-
>  lib/librte_eal/Makefile                            |   2 +
>  lib/librte_eal/common/eal_hugepages.h              |   8 +
>  lib/librte_eal/common/eal_private.h                |   8 +
>  lib/librte_eal/common/eal_thread.h                 |   8 +
>  Makefile => lib/librte_eal/osvapp/Makefile         |   5 +-
>  lib/librte_eal/osvapp/capstan/Capstanfile          |   6 +
>  lib/librte_eal/osvapp/capstan/GET                  |  22 ++
>  lib/librte_eal/osvapp/eal/Makefile                 | 115 ++++++++
>  lib/librte_eal/{linuxapp => osvapp}/eal/eal.c      | 123 +-------
>  .../{linuxapp => osvapp}/eal/eal_alarm.c           |   0
>  .../{linuxapp => osvapp}/eal/eal_debug.c           |   0
>  lib/librte_eal/osvapp/eal/eal_hugepage_info.cc     |  63 +++++
>  .../{bsdapp => osvapp}/eal/eal_interrupts.c        |   0
>  .../eal/eal_lcore.c => osvapp/eal/eal_lcore.cc}    |  53 ++--
>  lib/librte_eal/{bsdapp => osvapp}/eal/eal_log.c    |   0
>  lib/librte_eal/osvapp/eal/eal_memory.cc            | 148 ++++++++++
>  lib/librte_eal/osvapp/eal/eal_pci.cc               | 312
> +++++++++++++++++++++
>  .../{linuxapp => osvapp}/eal/eal_thread.c          |   0
>  lib/librte_eal/osvapp/eal/eal_timer.c              | 130 +++++++++
>  .../eal/include/exec-env/rte_interrupts.h          |   0
>  .../{bsdapp => osvapp}/eal/rte_eal_version.map     |   6 -
>  mk/exec-env/{linuxapp => osvapp}/rte.app.mk        |   0
>  mk/exec-env/{linuxapp => osvapp}/rte.vars.mk       |   6 +-
>  mk/internal/rte.compile-pre.mk                     |  41 ++-
>  mk/target/generic/rte.vars.mk                      |   4 +
>  mk/toolchain/gcc/rte.vars.mk                       |   5 +-
>  35 files changed, 1345 insertions(+), 211 deletions(-)
>  copy config/{common_linuxapp => common_osvapp} (95%)
>  copy config/{defconfig_x86_64-native-linuxapp-gcc =>
> defconfig_x86_64-native-osvapp-gcc} (98%)
>  create mode 100644 doc/guides/osv_gsg/build_dpdk.rst
>  create mode 100644 doc/guides/osv_gsg/build_sample_apps.rst
>  copy doc/guides/{freebsd_gsg => osv_gsg}/index.rst (96%)
>  copy doc/guides/{freebsd_gsg => osv_gsg}/intro.rst (84%)
>  copy Makefile => lib/librte_eal/osvapp/Makefile (93%)
>  create mode 100644 lib/librte_eal/osvapp/capstan/Capstanfile
>  create mode 100755 lib/librte_eal/osvapp/capstan/GET
>  create mode 100644 lib/librte_eal/osvapp/eal/Makefile
>  copy lib/librte_eal/{linuxapp => osvapp}/eal/eal.c (87%)
>  copy lib/librte_eal/{linuxapp => osvapp}/eal/eal_alarm.c (100%)
>  copy lib/librte_eal/{linuxapp => osvapp}/eal/eal_debug.c (100%)
>  create mode 100644 lib/librte_eal/osvapp/eal/eal_hugepage_info.cc
>  copy lib/librte_eal/{bsdapp => osvapp}/eal/eal_interrupts.c (100%)
>  copy lib/librte_eal/{bsdapp/eal/eal_lcore.c => osvapp/eal/eal_lcore.cc}
> (80%)
>  copy lib/librte_eal/{bsdapp => osvapp}/eal/eal_log.c (100%)
>  create mode 100644 lib/librte_eal/osvapp/eal/eal_memory.cc
>  create mode 100644 lib/librte_eal/osvapp/eal/eal_pci.cc
>  copy lib/librte_eal/{linuxapp => osvapp}/eal/eal_thread.c (100%)
>  create mode 100644 lib/librte_eal/osvapp/eal/eal_timer.c
>  copy lib/librte_eal/{bsdapp =>
> osvapp}/eal/include/exec-env/rte_interrupts.h (100%)
>  copy lib/librte_eal/{bsdapp => osvapp}/eal/rte_eal_version.map (92%)
>  copy mk/exec-env/{linuxapp => osvapp}/rte.app.mk (100%)
>  copy mk/exec-env/{linuxapp => osvapp}/rte.vars.mk (95%)
>
> --
> 2.1.0
>
>

  parent reply	other threads:[~2015-04-20 18:37 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-06 18:58 [RFC PATCHv3 0/7] add OSv support Takuya ASADA
     [not found] ` <1428346691-14894-1-git-send-email-syuu-RmZWMc9puTNJc61us3aD9laTQe2KTcn/@public.gmane.org>
2015-04-06 18:58   ` [RFC PATCHv3 1/7] mk: support compiling C++ code Takuya ASADA
2015-04-06 18:58   ` [RFC PATCHv3 2/7] eal: Add extern C on eal_hugepages.h Takuya ASADA
2015-04-06 18:58   ` [RFC PATCHv3 3/7] eal: Add extern C on eal_thread.h Takuya ASADA
2015-04-06 18:58   ` [RFC PATCHv3 4/7] eal: Add extern C on eal_private.h Takuya ASADA
2015-04-06 18:58   ` [RFC PATCHv3 5/7] add OSv support Takuya ASADA
2015-04-06 18:58   ` [RFC PATCHv3 6/7] app/test: support OSv Takuya ASADA
2015-04-06 18:58   ` [RFC PATCHv3 7/7] doc: Add Getting Started Guide for OSv Takuya ASADA
2015-06-18 14:09     ` Mcnamara, John
2015-04-20 18:37   ` Takuya ASADA [this message]
2015-07-08 23:35     ` [RFC PATCHv3 0/7] add OSv support Thomas Monjalon

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=CAPWdgggjvMZGUpY6_GPjCgqN00UiWkm50M8z3oLa7gU8x1BmbA@mail.gmail.com \
    --to=syuu-rmzwmc9putnjc61us3ad9latqe2ktcn/@public.gmane.org \
    --cc=dev-VfR2kkLFssw@public.gmane.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.