Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-04 Thread Github ODP bot
Balasubramanian Manoharan(bala-manoharan) replied on github web page: include/odp/api/spec/pool.h line 27 @@ -214,6 +222,15 @@ typedef struct odp_pool_param_t { defined by pool capability pkt.max_uarea_size. Specify as 0 if no user area is

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-02 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: include/odp/api/spec/pool.h line 27 @@ -214,6 +222,15 @@ typedef struct odp_pool_param_t { defined by pool capability pkt.max_uarea_size. Specify as 0 if no user area is

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-02 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: platform/linux-generic/odp_pool.c line 9 @@ -348,6 +348,11 @@ static odp_pool_t pool_create(const char *name, odp_pool_param_t *params, break; case ODP_POOL_PACKET: + if

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-02 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: include/odp/api/spec/pool.h line 23 @@ -214,6 +222,15 @@ typedef struct odp_pool_param_t { defined by pool capability pkt.max_uarea_size. Specify as 0 if no user area is

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Balasubramanian Manoharan(bala-manoharan) replied on github web page: platform/linux-generic/odp_pool.c @@ -348,7 +348,10 @@ static odp_pool_t pool_create(const char *name, odp_pool_param_t *params, break; case ODP_POOL_PACKET: - headroom=

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: platform/linux-generic/odp_pool.c @@ -348,7 +348,10 @@ static odp_pool_t pool_create(const char *name, odp_pool_param_t *params, break; case ODP_POOL_PACKET: - headroom=

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Balasubramanian Manoharan(bala-manoharan) replied on github web page: include/odp/api/spec/pool.h @@ -214,6 +221,17 @@ typedef struct odp_pool_param_t { defined by pool capability pkt.max_uarea_size. Specify as 0 if no user area is needed.

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Balasubramanian Manoharan(bala-manoharan) replied on github web page: include/odp/api/spec/pool.h @@ -93,10 +93,17 @@ typedef struct odp_pool_capability_t { /** Minimum packet level headroom length in bytes * * The minimum number of headroom bytes

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Petri Savolainen(psavol) replied on github web page: platform/linux-generic/odp_pool.c @@ -348,7 +348,10 @@ static odp_pool_t pool_create(const char *name, odp_pool_param_t *params, break; case ODP_POOL_PACKET: - headroom= CONFIG_PACKET_HEADROOM; +

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Petri Savolainen(psavol) replied on github web page: include/odp/api/spec/pool.h @@ -214,6 +221,17 @@ typedef struct odp_pool_param_t { defined by pool capability pkt.max_uarea_size. Specify as 0 if no user area is needed. */

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Petri Savolainen(psavol) replied on github web page: include/odp/api/spec/pool.h @@ -93,10 +93,17 @@ typedef struct odp_pool_capability_t { /** Minimum packet level headroom length in bytes * * The minimum number of headroom bytes that newly

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Petri Savolainen(psavol) replied on github web page: include/odp/api/spec/pool.h @@ -93,10 +93,17 @@ typedef struct odp_pool_capability_t { /** Minimum packet level headroom length in bytes * * The minimum number of headroom bytes that newly

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Balasubramanian Manoharan(bala-manoharan) replied on github web page: platform/linux-generic/include/odp_config_internal.h @@ -65,6 +65,15 @@ #define CONFIG_PACKET_HEADROOM 128 /* + * Maximum packet headroom + * + * This defines the maximum number of headroom bytes that newly created packets

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Balasubramanian Manoharan(bala-manoharan) replied on github web page: include/odp/api/spec/pool.h @@ -93,10 +93,17 @@ typedef struct odp_pool_capability_t { /** Minimum packet level headroom length in bytes * * The minimum number of headroom bytes

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: platform/linux-generic/include/odp_config_internal.h @@ -65,6 +65,15 @@ #define CONFIG_PACKET_HEADROOM 128 /* + * Maximum packet headroom + * + * This defines the maximum number of headroom bytes that newly created packets + *

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: include/odp/api/spec/pool.h @@ -93,10 +93,17 @@ typedef struct odp_pool_capability_t { /** Minimum packet level headroom length in bytes * * The minimum number of headroom bytes

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Balasubramanian Manoharan(bala-manoharan) replied on github web page: platform/linux-generic/include/odp_config_internal.h @@ -65,6 +65,15 @@ #define CONFIG_PACKET_HEADROOM 128 /* + * Maximum packet headroom + * + * This defines the maximum number of headroom bytes that newly created packets

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Balasubramanian Manoharan(bala-manoharan) replied on github web page: include/odp/api/spec/pool.h @@ -93,10 +93,17 @@ typedef struct odp_pool_capability_t { /** Minimum packet level headroom length in bytes * * The minimum number of headroom bytes

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: platform/linux-generic/odp_pool.c @@ -348,7 +348,10 @@ static odp_pool_t pool_create(const char *name, odp_pool_param_t *params, break; case ODP_POOL_PACKET: - headroom=

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: platform/linux-generic/include/odp_config_internal.h @@ -65,6 +65,15 @@ #define CONFIG_PACKET_HEADROOM 128 /* + * Maximum packet headroom + * + * This defines the maximum number of headroom bytes that newly created packets + *

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: include/odp/api/spec/pool.h @@ -93,10 +93,17 @@ typedef struct odp_pool_capability_t { /** Minimum packet level headroom length in bytes * * The minimum number of headroom bytes

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: include/odp/api/spec/pool.h @@ -214,6 +221,17 @@ typedef struct odp_pool_param_t { defined by pool capability pkt.max_uarea_size. Specify as 0 if no user area is needed. */

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: include/odp/api/spec/pool.h @@ -93,10 +93,17 @@ typedef struct odp_pool_capability_t { /** Minimum packet level headroom length in bytes * * The minimum number of headroom bytes

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: platform/linux-generic/odp_pool.c @@ -348,7 +348,10 @@ static odp_pool_t pool_create(const char *name, odp_pool_param_t *params, break; case ODP_POOL_PACKET: - headroom=

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: platform/linux-generic/include/odp_config_internal.h @@ -65,6 +65,15 @@ #define CONFIG_PACKET_HEADROOM 128 /* + * Maximum packet headroom + * + * This defines the maximum number of headroom bytes that newly created packets + *

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: include/odp/api/spec/pool.h @@ -214,6 +221,17 @@ typedef struct odp_pool_param_t { defined by pool capability pkt.max_uarea_size. Specify as 0 if no user area is needed. */

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: include/odp/api/spec/pool.h @@ -93,10 +93,17 @@ typedef struct odp_pool_capability_t { /** Minimum packet level headroom length in bytes * * The minimum number of headroom bytes

Re: [lng-odp] [PATCH API-NEXT v3] api: pool: add min and max headroom in pool capability

2017-09-01 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: include/odp/api/spec/pool.h @@ -93,10 +93,17 @@ typedef struct odp_pool_capability_t { /** Minimum packet level headroom length in bytes * * The minimum number of headroom bytes