apply and build issues still show up for me - I used v11 - three patches

~/incoming/bill$ ls -l
total 452
-rw------- 1 mike mike 127026 Nov 17 17:17
lng-odp_API-NEXT_PATCHv11_1-3_api_tm_add_tm_API_definitions.mbox
-rw------- 1 mike mike 286282 Nov 17 17:17
lng-odp_API-NEXT_PATCHv11_2-3_linux-generic_tm_implement_traffic_manager.mbox
-rw------- 1 mike mike  41280 Nov 17 17:17
lng-odp_API-NEXT_PATCHv11_3-3_example_tm_traffic_manager_example.mbox

GIT_BRANCH=api-next PATCH_DIR=~/incoming/bill ./apply-and-build.sh

...
odp_new_workdir: calling
Branch git___git_linaro_org_lng_odp_git_api_next set up to track remote
branch api-next from git___git_linaro_org_lng_odp_git.
Switched to a new branch 'git___git_linaro_org_lng_odp_git_api_next'
Cloning into '/home/mike/git/check-odp/build/odp-apply'...
done.
Building baseline: git://git.linaro.org/lng/odp.git

......
In file included from ../../../../platform/linux-generic/pktio/loop.c:12:0:
../../../../include/odp.h:58:30: fatal error: odp/traffic_mngr.h: No such
file or directory


On 17 November 2015 at 15:40, Bill Fischofer <[email protected]>
wrote:

> Changes in v11
> - Squash Parts 2 and 3 to give new Part 2 that can build independently
> - Change typedef for hash_table_entry_t to uint64_t for 32-bit support
>
> Changes in v10
> - Add back ARM definitions for _crc32w() from Alex that got dropped in v9
>
> Note: Checkpatch complains about the _asm() line.  Says spaces are needed
> but
> if spaces are added then complains that spaces are prohibited.  Rules need
> to
> be updated to ignore these sort of constructs.
>
> Changes in v9
> - Rebase on top of latest queue fixes
>
> Changes in v8
> - add ARM definition for __crc32w() function (from Alex)
>
> Changes in v7 (review comments by Maxim)
> - Correct architecture ifdefs (use of arch dir in later patch)
> - Correct doxygen for queue types
> - Change internal APIs that use odp_ prefix to use _odp prefix
> - Rebase to latest api-next
>
> Changes in v6
> - Move documentation of packet colors to main API file
> - Add ODP prefix to odp_tm_egress_kind_t enums
>
> Changes in v5
> - Add include file odp_traffic_mngr_internal.h
> - Add support for odp_tm_enq() from packets originating from ordered queues
>
> Changes in v4
> - Incorporate API changes suggested by Petri
>
> Changes in v3
> - Fix checkpatch errors (Bill)
>
> Changes in v2
> - Full patch submission (Barry)
>
> Barry Spinney (3):
>   api: tm: add tm API definitions
>   linux-generic: tm: implement traffic manager
>   example: tm: traffic manager example
>
>  configure.ac                                       |    1 +
>  example/Makefile.am                                |    2 +-
>  example/traffic_mgmt/.gitignore                    |    1 +
>  example/traffic_mgmt/Makefile.am                   |    9 +
>  example/traffic_mgmt/odp_traffic_mgmt.c            |  781 ++++++
>  include/odp.h                                      |    1 +
>  include/odp/api/packet.h                           |   69 +
>  include/odp/api/traffic_mngr.h                     | 1611 +++++++++++
>  platform/linux-generic/Makefile.am                 |   13 +
>  .../linux-generic/include/odp/plat/packet_types.h  |   11 +
>  .../linux-generic/include/odp/plat/queue_types.h   |    7 +
>  .../include/odp/plat/traffic_mngr_types.h          |  185 ++
>  platform/linux-generic/include/odp/traffic_mngr.h  |   35 +
>  platform/linux-generic/include/odp_internal.h      |    2 +
>  .../include/odp_name_table_internal.h              |   61 +
>  .../linux-generic/include/odp_packet_internal.h    |    5 +
>  .../linux-generic/include/odp_pkt_queue_internal.h |   62 +
>  .../linux-generic/include/odp_queue_internal.h     |    6 +
>  .../include/odp_sorted_list_internal.h             |   78 +
>  .../include/odp_timer_wheel_internal.h             |   68 +
>  .../include/odp_traffic_mngr_internal.h            |  324 +++
>  platform/linux-generic/odp_init.c                  |    5 +
>  platform/linux-generic/odp_name_table.c            | 1371 ++++++++++
>  platform/linux-generic/odp_packet_flags.c          |   46 +-
>  platform/linux-generic/odp_pkt_queue.c             |  379 +++
>  platform/linux-generic/odp_queue.c                 |   60 +
>  platform/linux-generic/odp_sorted_list.c           |  271 ++
>  platform/linux-generic/odp_timer_wheel.c           |  907 +++++++
>  platform/linux-generic/odp_traffic_mngr.c          | 2799
> ++++++++++++++++++++
>  29 files changed, 9168 insertions(+), 2 deletions(-)
>  create mode 100644 example/traffic_mgmt/.gitignore
>  create mode 100644 example/traffic_mgmt/Makefile.am
>  create mode 100644 example/traffic_mgmt/odp_traffic_mgmt.c
>  create mode 100644 include/odp/api/traffic_mngr.h
>  create mode 100644
> platform/linux-generic/include/odp/plat/traffic_mngr_types.h
>  create mode 100644 platform/linux-generic/include/odp/traffic_mngr.h
>  create mode 100644
> platform/linux-generic/include/odp_name_table_internal.h
>  create mode 100644 platform/linux-generic/include/odp_pkt_queue_internal.h
>  create mode 100644
> platform/linux-generic/include/odp_sorted_list_internal.h
>  create mode 100644
> platform/linux-generic/include/odp_timer_wheel_internal.h
>  create mode 100644
> platform/linux-generic/include/odp_traffic_mngr_internal.h
>  create mode 100644 platform/linux-generic/odp_name_table.c
>  create mode 100644 platform/linux-generic/odp_pkt_queue.c
>  create mode 100644 platform/linux-generic/odp_sorted_list.c
>  create mode 100644 platform/linux-generic/odp_timer_wheel.c
>  create mode 100644 platform/linux-generic/odp_traffic_mngr.c
>
> --
> 2.1.4
>
> _______________________________________________
> lng-odp mailing list
> [email protected]
> https://lists.linaro.org/mailman/listinfo/lng-odp
>



-- 
Mike Holmes
Technical Manager - Linaro Networking Group
Linaro.org <http://www.linaro.org/> *│ *Open source software for ARM SoCs
_______________________________________________
lng-odp mailing list
[email protected]
https://lists.linaro.org/mailman/listinfo/lng-odp

Reply via email to