On Thu, Apr 2, 2015 at 6:11 AM, Stuart Haslam <[email protected]> wrote:
> Signed-off-by: Stuart Haslam <[email protected]> > Reviewed-by: Bill Fischofer <[email protected]> > --- > platform/linux-generic/odp_pool.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/platform/linux-generic/odp_pool.c > b/platform/linux-generic/odp_pool.c > index 468b7a5..bf49623 100644 > --- a/platform/linux-generic/odp_pool.c > +++ b/platform/linux-generic/odp_pool.c > @@ -143,6 +143,9 @@ odp_pool_t odp_pool_create(const char *name, > pool_entry_t *pool; > uint32_t i, headroom = 0, tailroom = 0; > > + if (params == NULL) > + return ODP_POOL_INVALID; > + > /* Default size and align for timeouts */ > if (params->type == ODP_POOL_TIMEOUT) { > params->buf.size = 0; /* tmo.__res1 */ > @@ -158,9 +161,6 @@ odp_pool_t odp_pool_create(const char *name, > > _odp_buffer_pool_init_t *init_params = &default_init_params; > > - if (params == NULL) > - return ODP_POOL_INVALID; > - > /* Restriction for v1.0: All non-packet buffers are unsegmented */ > int unseg = 1; > > -- > 2.1.1 > > _______________________________________________ > lng-odp mailing list > [email protected] > https://lists.linaro.org/mailman/listinfo/lng-odp >
_______________________________________________ lng-odp mailing list [email protected] https://lists.linaro.org/mailman/listinfo/lng-odp
