Message ID | 1441019443-16153-1-git-send-email-maxim.uvarov@linaro.org |
---|---|
State | Accepted |
Commit | 2dfe5ebb8344245abbc52c188b84c4ae7781f911 |
Headers | show |
Subj. Please note that make check now tests all 3 pktios (under root) for linux-generic which can cause delay up to 3 minutes. Best regards, Maxim. On 08/31/15 14:10, Maxim Uvarov wrote: > Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> > --- > debian/changelog | 80 +++++++++++++++++++++++++++++++++++++++++++++++ > include/odp/api/version.h | 2 +- > 2 files changed, 81 insertions(+), 1 deletion(-) > > diff --git a/debian/changelog b/debian/changelog > index f7fdc35..741ab72 100644 > --- a/debian/changelog > +++ b/debian/changelog > @@ -1,3 +1,83 @@ > +opendataplane (1.3.0.0-1) unstable; urgency=low > + * API: > + - codespell: correct spelling > + - event: change to odp_event_type_t > + - init: use const pointer types > + - packet_io: added odp_pktio_param_t > + - packet_io: added start and stop > + - packet_io: change word instance to interface > + - pktio: added output mode > + - pktio: rename pktio_input_mode enum > + - pool: add odp_pool_param_init prototype > + - pool: standardize description for odp_pool_param_init routine > + - queue: add odp_queue_param_init prototype > + - queue: clarify odp_queue_context_set() documentation > + - queue: rename queue context get/set for consistency > + - sched: added ordered context lock > + - sched: added release ordered > + - sched: added schedule group create and destroy > + - sched: added schedule prefetch > + - sched: added worker group > + - sched: clarified synchronization context > + - sched: clarify usage of PRIO_DEFAULT > + - sched: moved scheduler types into new file > + - sched: removed GROUP_DEFAULT > + - sched: removed SYNC_DEFAULT > + - sched: schedule param > + - schedule: fix comment typo > + - spelling fixes > + - style: init api: documentation clean up > + * ODP docs: > + - doc: implementers-guide: add validation description > + - doc: publish contributing text > + * ODP helper: > + - fix installation path for includes > + - linux: catch possible undefined > + - test: chksum: catch errors in scan_ip > + * test: > + * validation: > + - add test on unused retvals > + - use _CU_TEST_INFO() macro > + - system: fix uninitialised variable > + - test odp_pktio_start and odp_pktio_stop > + - fix build from tar source > + - kill odp_generator > + - removing current dir from -I > + * performance: > + - Makefile: add scripts to EXTRA_DIST > + - l2fwd: fix race condition between thread init and stat counter > + - l2fwd: capture test fails > + - odp_pktio_perf: use real MAC addresses while packet creation > + - odp_scheduling: remove redundant var inits > + - use odp_pool_param_init routine > + - use odp_queue_param_init routine > + * general: > + - Makefile.am: fix basename conflicts > + - Makefile: add all arch to the tarball > + - fix logic for calling pktio init and term functions > + - install missing headers > + - move default cpumask functions to separate file > + - move openssl checks inside linux-generic > + - move pthread checks inside linux-generic > + - add pktio_start and pktio_stop > + - pktio: add global init and term function for pktios > + - pktio: always test loop interface > + - pktio: handle segmented packet in socket mode > + - pktio: remove basic socket implementation > + - pktio: store errno correctly in setup > + - pool: add odp_pool_type_t enum > + - pool: implement odp_pool_param_init > + - queue: implement odp_queue_param_init routine > + - remove linux-generic makefile generation from common configure.ac > + - schedule pktin_poll: account pktio stop state > + - Makefile.am: fix aclocal warning when building from tarball > + - m4: pthread: fix warning with Wextra > + - scripts/git_hash: change repo to CUSTOM_STR > + - scripts/git_hash: fix build from tar source > + - scripts: Makefile: add odp_version.sh to the tarball > + > + -- Maxim Uvarov <maxim.uvarov@linaro.org> Mon, 31 Aug 2015 14:02:57 +0300 > + > opendataplane (1.2.0.0-1) unstable; urgency=low > * API: > - docs: doxygen grouping clean up and remove excess references to ODP > diff --git a/include/odp/api/version.h b/include/odp/api/version.h > index a44b14d..1518201 100644 > --- a/include/odp/api/version.h > +++ b/include/odp/api/version.h > @@ -37,7 +37,7 @@ extern "C" { > * Introduction of major new features or changes. APIs with different major > * versions are likely not backward compatible. > */ > -#define ODP_VERSION_API_MAJOR 2 > +#define ODP_VERSION_API_MAJOR 3 > > /** > * ODP API minor version
The API differences 1.2 to 1.3 are in the attached file On 31 August 2015 at 12:12, Maxim Uvarov <maxim.uvarov@linaro.org> wrote: > Subj. > > Please note that make check now tests all 3 pktios (under root) for > linux-generic which can cause delay up to 3 minutes. > > Best regards, > Maxim. > > On 08/31/15 14:10, Maxim Uvarov wrote: > >> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> >> --- >> debian/changelog | 80 >> +++++++++++++++++++++++++++++++++++++++++++++++ >> include/odp/api/version.h | 2 +- >> 2 files changed, 81 insertions(+), 1 deletion(-) >> >> diff --git a/debian/changelog b/debian/changelog >> index f7fdc35..741ab72 100644 >> --- a/debian/changelog >> +++ b/debian/changelog >> @@ -1,3 +1,83 @@ >> +opendataplane (1.3.0.0-1) unstable; urgency=low >> + * API: >> + - codespell: correct spelling >> + - event: change to odp_event_type_t >> + - init: use const pointer types >> + - packet_io: added odp_pktio_param_t >> + - packet_io: added start and stop >> + - packet_io: change word instance to interface >> + - pktio: added output mode >> + - pktio: rename pktio_input_mode enum >> + - pool: add odp_pool_param_init prototype >> + - pool: standardize description for odp_pool_param_init routine >> + - queue: add odp_queue_param_init prototype >> + - queue: clarify odp_queue_context_set() documentation >> + - queue: rename queue context get/set for consistency >> + - sched: added ordered context lock >> + - sched: added release ordered >> + - sched: added schedule group create and destroy >> + - sched: added schedule prefetch >> + - sched: added worker group >> + - sched: clarified synchronization context >> + - sched: clarify usage of PRIO_DEFAULT >> + - sched: moved scheduler types into new file >> + - sched: removed GROUP_DEFAULT >> + - sched: removed SYNC_DEFAULT >> + - sched: schedule param >> + - schedule: fix comment typo >> + - spelling fixes >> + - style: init api: documentation clean up >> + * ODP docs: >> + - doc: implementers-guide: add validation description >> + - doc: publish contributing text >> + * ODP helper: >> + - fix installation path for includes >> + - linux: catch possible undefined >> + - test: chksum: catch errors in scan_ip >> + * test: >> + * validation: >> + - add test on unused retvals >> + - use _CU_TEST_INFO() macro >> + - system: fix uninitialised variable >> + - test odp_pktio_start and odp_pktio_stop >> + - fix build from tar source >> + - kill odp_generator >> + - removing current dir from -I >> + * performance: >> + - Makefile: add scripts to EXTRA_DIST >> + - l2fwd: fix race condition between thread init and stat >> counter >> + - l2fwd: capture test fails >> + - odp_pktio_perf: use real MAC addresses while packet creation >> + - odp_scheduling: remove redundant var inits >> + - use odp_pool_param_init routine >> + - use odp_queue_param_init routine >> + * general: >> + - Makefile.am: fix basename conflicts >> + - Makefile: add all arch to the tarball >> + - fix logic for calling pktio init and term functions >> + - install missing headers >> + - move default cpumask functions to separate file >> + - move openssl checks inside linux-generic >> + - move pthread checks inside linux-generic >> + - add pktio_start and pktio_stop >> + - pktio: add global init and term function for pktios >> + - pktio: always test loop interface >> + - pktio: handle segmented packet in socket mode >> + - pktio: remove basic socket implementation >> + - pktio: store errno correctly in setup >> + - pool: add odp_pool_type_t enum >> + - pool: implement odp_pool_param_init >> + - queue: implement odp_queue_param_init routine >> + - remove linux-generic makefile generation from common >> configure.ac >> + - schedule pktin_poll: account pktio stop state >> + - Makefile.am: fix aclocal warning when building from tarball >> + - m4: pthread: fix warning with Wextra >> + - scripts/git_hash: change repo to CUSTOM_STR >> + - scripts/git_hash: fix build from tar source >> + - scripts: Makefile: add odp_version.sh to the tarball >> + >> + -- Maxim Uvarov <maxim.uvarov@linaro.org> Mon, 31 Aug 2015 14:02:57 >> +0300 >> + >> opendataplane (1.2.0.0-1) unstable; urgency=low >> * API: >> - docs: doxygen grouping clean up and remove excess references >> to ODP >> diff --git a/include/odp/api/version.h b/include/odp/api/version.h >> index a44b14d..1518201 100644 >> --- a/include/odp/api/version.h >> +++ b/include/odp/api/version.h >> @@ -37,7 +37,7 @@ extern "C" { >> * Introduction of major new features or changes. APIs with different >> major >> * versions are likely not backward compatible. >> */ >> -#define ODP_VERSION_API_MAJOR 2 >> +#define ODP_VERSION_API_MAJOR 3 >> /** >> * ODP API minor version >> > > _______________________________________________ > lng-odp mailing list > lng-odp@lists.linaro.org > https://lists.linaro.org/mailman/listinfo/lng-odp >
Going to tag it? :) On 08/31/2015 12:12 PM, Maxim Uvarov wrote: > Subj. > > Please note that make check now tests all 3 pktios (under root) for > linux-generic which can cause delay up to 3 minutes. > > Best regards, > Maxim. > > On 08/31/15 14:10, Maxim Uvarov wrote: >> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> >> --- >> debian/changelog | 80 >> +++++++++++++++++++++++++++++++++++++++++++++++ >> include/odp/api/version.h | 2 +- >> 2 files changed, 81 insertions(+), 1 deletion(-) >> >> diff --git a/debian/changelog b/debian/changelog >> index f7fdc35..741ab72 100644 >> --- a/debian/changelog >> +++ b/debian/changelog >> @@ -1,3 +1,83 @@ >> +opendataplane (1.3.0.0-1) unstable; urgency=low >> + * API: >> + - codespell: correct spelling >> + - event: change to odp_event_type_t >> + - init: use const pointer types >> + - packet_io: added odp_pktio_param_t >> + - packet_io: added start and stop >> + - packet_io: change word instance to interface >> + - pktio: added output mode >> + - pktio: rename pktio_input_mode enum >> + - pool: add odp_pool_param_init prototype >> + - pool: standardize description for odp_pool_param_init routine >> + - queue: add odp_queue_param_init prototype >> + - queue: clarify odp_queue_context_set() documentation >> + - queue: rename queue context get/set for consistency >> + - sched: added ordered context lock >> + - sched: added release ordered >> + - sched: added schedule group create and destroy >> + - sched: added schedule prefetch >> + - sched: added worker group >> + - sched: clarified synchronization context >> + - sched: clarify usage of PRIO_DEFAULT >> + - sched: moved scheduler types into new file >> + - sched: removed GROUP_DEFAULT >> + - sched: removed SYNC_DEFAULT >> + - sched: schedule param >> + - schedule: fix comment typo >> + - spelling fixes >> + - style: init api: documentation clean up >> + * ODP docs: >> + - doc: implementers-guide: add validation description >> + - doc: publish contributing text >> + * ODP helper: >> + - fix installation path for includes >> + - linux: catch possible undefined >> + - test: chksum: catch errors in scan_ip >> + * test: >> + * validation: >> + - add test on unused retvals >> + - use _CU_TEST_INFO() macro >> + - system: fix uninitialised variable >> + - test odp_pktio_start and odp_pktio_stop >> + - fix build from tar source >> + - kill odp_generator >> + - removing current dir from -I >> + * performance: >> + - Makefile: add scripts to EXTRA_DIST >> + - l2fwd: fix race condition between thread init and stat >> counter >> + - l2fwd: capture test fails >> + - odp_pktio_perf: use real MAC addresses while packet >> creation >> + - odp_scheduling: remove redundant var inits >> + - use odp_pool_param_init routine >> + - use odp_queue_param_init routine >> + * general: >> + - Makefile.am: fix basename conflicts >> + - Makefile: add all arch to the tarball >> + - fix logic for calling pktio init and term functions >> + - install missing headers >> + - move default cpumask functions to separate file >> + - move openssl checks inside linux-generic >> + - move pthread checks inside linux-generic >> + - add pktio_start and pktio_stop >> + - pktio: add global init and term function for pktios >> + - pktio: always test loop interface >> + - pktio: handle segmented packet in socket mode >> + - pktio: remove basic socket implementation >> + - pktio: store errno correctly in setup >> + - pool: add odp_pool_type_t enum >> + - pool: implement odp_pool_param_init >> + - queue: implement odp_queue_param_init routine >> + - remove linux-generic makefile generation from common >> configure.ac >> + - schedule pktin_poll: account pktio stop state >> + - Makefile.am: fix aclocal warning when building from tarball >> + - m4: pthread: fix warning with Wextra >> + - scripts/git_hash: change repo to CUSTOM_STR >> + - scripts/git_hash: fix build from tar source >> + - scripts: Makefile: add odp_version.sh to the tarball >> + >> + -- Maxim Uvarov <maxim.uvarov@linaro.org> Mon, 31 Aug 2015 >> 14:02:57 +0300 >> + >> opendataplane (1.2.0.0-1) unstable; urgency=low >> * API: >> - docs: doxygen grouping clean up and remove excess >> references to ODP >> diff --git a/include/odp/api/version.h b/include/odp/api/version.h >> index a44b14d..1518201 100644 >> --- a/include/odp/api/version.h >> +++ b/include/odp/api/version.h >> @@ -37,7 +37,7 @@ extern "C" { >> * Introduction of major new features or changes. APIs with >> different major >> * versions are likely not backward compatible. >> */ >> -#define ODP_VERSION_API_MAJOR 2 >> +#define ODP_VERSION_API_MAJOR 3 >> /** >> * ODP API minor version > > _______________________________________________ > lng-odp mailing list > lng-odp@lists.linaro.org > https://lists.linaro.org/mailman/listinfo/lng-odp
We found an Issue, correction in progress On 1 September 2015 at 12:28, Michael Altizer <xiche@verizon.net> wrote: > Going to tag it? :) > > > On 08/31/2015 12:12 PM, Maxim Uvarov wrote: > >> Subj. >> >> Please note that make check now tests all 3 pktios (under root) for >> linux-generic which can cause delay up to 3 minutes. >> >> Best regards, >> Maxim. >> >> On 08/31/15 14:10, Maxim Uvarov wrote: >> >>> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> >>> --- >>> debian/changelog | 80 >>> +++++++++++++++++++++++++++++++++++++++++++++++ >>> include/odp/api/version.h | 2 +- >>> 2 files changed, 81 insertions(+), 1 deletion(-) >>> >>> diff --git a/debian/changelog b/debian/changelog >>> index f7fdc35..741ab72 100644 >>> --- a/debian/changelog >>> +++ b/debian/changelog >>> @@ -1,3 +1,83 @@ >>> +opendataplane (1.3.0.0-1) unstable; urgency=low >>> + * API: >>> + - codespell: correct spelling >>> + - event: change to odp_event_type_t >>> + - init: use const pointer types >>> + - packet_io: added odp_pktio_param_t >>> + - packet_io: added start and stop >>> + - packet_io: change word instance to interface >>> + - pktio: added output mode >>> + - pktio: rename pktio_input_mode enum >>> + - pool: add odp_pool_param_init prototype >>> + - pool: standardize description for odp_pool_param_init routine >>> + - queue: add odp_queue_param_init prototype >>> + - queue: clarify odp_queue_context_set() documentation >>> + - queue: rename queue context get/set for consistency >>> + - sched: added ordered context lock >>> + - sched: added release ordered >>> + - sched: added schedule group create and destroy >>> + - sched: added schedule prefetch >>> + - sched: added worker group >>> + - sched: clarified synchronization context >>> + - sched: clarify usage of PRIO_DEFAULT >>> + - sched: moved scheduler types into new file >>> + - sched: removed GROUP_DEFAULT >>> + - sched: removed SYNC_DEFAULT >>> + - sched: schedule param >>> + - schedule: fix comment typo >>> + - spelling fixes >>> + - style: init api: documentation clean up >>> + * ODP docs: >>> + - doc: implementers-guide: add validation description >>> + - doc: publish contributing text >>> + * ODP helper: >>> + - fix installation path for includes >>> + - linux: catch possible undefined >>> + - test: chksum: catch errors in scan_ip >>> + * test: >>> + * validation: >>> + - add test on unused retvals >>> + - use _CU_TEST_INFO() macro >>> + - system: fix uninitialised variable >>> + - test odp_pktio_start and odp_pktio_stop >>> + - fix build from tar source >>> + - kill odp_generator >>> + - removing current dir from -I >>> + * performance: >>> + - Makefile: add scripts to EXTRA_DIST >>> + - l2fwd: fix race condition between thread init and stat >>> counter >>> + - l2fwd: capture test fails >>> + - odp_pktio_perf: use real MAC addresses while packet >>> creation >>> + - odp_scheduling: remove redundant var inits >>> + - use odp_pool_param_init routine >>> + - use odp_queue_param_init routine >>> + * general: >>> + - Makefile.am: fix basename conflicts >>> + - Makefile: add all arch to the tarball >>> + - fix logic for calling pktio init and term functions >>> + - install missing headers >>> + - move default cpumask functions to separate file >>> + - move openssl checks inside linux-generic >>> + - move pthread checks inside linux-generic >>> + - add pktio_start and pktio_stop >>> + - pktio: add global init and term function for pktios >>> + - pktio: always test loop interface >>> + - pktio: handle segmented packet in socket mode >>> + - pktio: remove basic socket implementation >>> + - pktio: store errno correctly in setup >>> + - pool: add odp_pool_type_t enum >>> + - pool: implement odp_pool_param_init >>> + - queue: implement odp_queue_param_init routine >>> + - remove linux-generic makefile generation from common >>> configure.ac >>> + - schedule pktin_poll: account pktio stop state >>> + - Makefile.am: fix aclocal warning when building from tarball >>> + - m4: pthread: fix warning with Wextra >>> + - scripts/git_hash: change repo to CUSTOM_STR >>> + - scripts/git_hash: fix build from tar source >>> + - scripts: Makefile: add odp_version.sh to the tarball >>> + >>> + -- Maxim Uvarov <maxim.uvarov@linaro.org> Mon, 31 Aug 2015 14:02:57 >>> +0300 >>> + >>> opendataplane (1.2.0.0-1) unstable; urgency=low >>> * API: >>> - docs: doxygen grouping clean up and remove excess references >>> to ODP >>> diff --git a/include/odp/api/version.h b/include/odp/api/version.h >>> index a44b14d..1518201 100644 >>> --- a/include/odp/api/version.h >>> +++ b/include/odp/api/version.h >>> @@ -37,7 +37,7 @@ extern "C" { >>> * Introduction of major new features or changes. APIs with different >>> major >>> * versions are likely not backward compatible. >>> */ >>> -#define ODP_VERSION_API_MAJOR 2 >>> +#define ODP_VERSION_API_MAJOR 3 >>> /** >>> * ODP API minor version >>> >> >> _______________________________________________ >> lng-odp mailing list >> lng-odp@lists.linaro.org >> https://lists.linaro.org/mailman/listinfo/lng-odp >> > > _______________________________________________ > lng-odp mailing list > lng-odp@lists.linaro.org > https://lists.linaro.org/mailman/listinfo/lng-odp >
There was a hang in the scheduler tests, the offending code has been found by Maxim and Bill and a fix is in the works. Re tagging expected tomorrow Mike On 1 September 2015 at 12:38, Mike Holmes <mike.holmes@linaro.org> wrote: > We found an Issue, correction in progress > > On 1 September 2015 at 12:28, Michael Altizer <xiche@verizon.net> wrote: > >> Going to tag it? :) >> >> >> On 08/31/2015 12:12 PM, Maxim Uvarov wrote: >> >>> Subj. >>> >>> Please note that make check now tests all 3 pktios (under root) for >>> linux-generic which can cause delay up to 3 minutes. >>> >>> Best regards, >>> Maxim. >>> >>> On 08/31/15 14:10, Maxim Uvarov wrote: >>> >>>> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> >>>> --- >>>> debian/changelog | 80 >>>> +++++++++++++++++++++++++++++++++++++++++++++++ >>>> include/odp/api/version.h | 2 +- >>>> 2 files changed, 81 insertions(+), 1 deletion(-) >>>> >>>> diff --git a/debian/changelog b/debian/changelog >>>> index f7fdc35..741ab72 100644 >>>> --- a/debian/changelog >>>> +++ b/debian/changelog >>>> @@ -1,3 +1,83 @@ >>>> +opendataplane (1.3.0.0-1) unstable; urgency=low >>>> + * API: >>>> + - codespell: correct spelling >>>> + - event: change to odp_event_type_t >>>> + - init: use const pointer types >>>> + - packet_io: added odp_pktio_param_t >>>> + - packet_io: added start and stop >>>> + - packet_io: change word instance to interface >>>> + - pktio: added output mode >>>> + - pktio: rename pktio_input_mode enum >>>> + - pool: add odp_pool_param_init prototype >>>> + - pool: standardize description for odp_pool_param_init routine >>>> + - queue: add odp_queue_param_init prototype >>>> + - queue: clarify odp_queue_context_set() documentation >>>> + - queue: rename queue context get/set for consistency >>>> + - sched: added ordered context lock >>>> + - sched: added release ordered >>>> + - sched: added schedule group create and destroy >>>> + - sched: added schedule prefetch >>>> + - sched: added worker group >>>> + - sched: clarified synchronization context >>>> + - sched: clarify usage of PRIO_DEFAULT >>>> + - sched: moved scheduler types into new file >>>> + - sched: removed GROUP_DEFAULT >>>> + - sched: removed SYNC_DEFAULT >>>> + - sched: schedule param >>>> + - schedule: fix comment typo >>>> + - spelling fixes >>>> + - style: init api: documentation clean up >>>> + * ODP docs: >>>> + - doc: implementers-guide: add validation description >>>> + - doc: publish contributing text >>>> + * ODP helper: >>>> + - fix installation path for includes >>>> + - linux: catch possible undefined >>>> + - test: chksum: catch errors in scan_ip >>>> + * test: >>>> + * validation: >>>> + - add test on unused retvals >>>> + - use _CU_TEST_INFO() macro >>>> + - system: fix uninitialised variable >>>> + - test odp_pktio_start and odp_pktio_stop >>>> + - fix build from tar source >>>> + - kill odp_generator >>>> + - removing current dir from -I >>>> + * performance: >>>> + - Makefile: add scripts to EXTRA_DIST >>>> + - l2fwd: fix race condition between thread init and stat >>>> counter >>>> + - l2fwd: capture test fails >>>> + - odp_pktio_perf: use real MAC addresses while packet >>>> creation >>>> + - odp_scheduling: remove redundant var inits >>>> + - use odp_pool_param_init routine >>>> + - use odp_queue_param_init routine >>>> + * general: >>>> + - Makefile.am: fix basename conflicts >>>> + - Makefile: add all arch to the tarball >>>> + - fix logic for calling pktio init and term functions >>>> + - install missing headers >>>> + - move default cpumask functions to separate file >>>> + - move openssl checks inside linux-generic >>>> + - move pthread checks inside linux-generic >>>> + - add pktio_start and pktio_stop >>>> + - pktio: add global init and term function for pktios >>>> + - pktio: always test loop interface >>>> + - pktio: handle segmented packet in socket mode >>>> + - pktio: remove basic socket implementation >>>> + - pktio: store errno correctly in setup >>>> + - pool: add odp_pool_type_t enum >>>> + - pool: implement odp_pool_param_init >>>> + - queue: implement odp_queue_param_init routine >>>> + - remove linux-generic makefile generation from common >>>> configure.ac >>>> + - schedule pktin_poll: account pktio stop state >>>> + - Makefile.am: fix aclocal warning when building from tarball >>>> + - m4: pthread: fix warning with Wextra >>>> + - scripts/git_hash: change repo to CUSTOM_STR >>>> + - scripts/git_hash: fix build from tar source >>>> + - scripts: Makefile: add odp_version.sh to the tarball >>>> + >>>> + -- Maxim Uvarov <maxim.uvarov@linaro.org> Mon, 31 Aug 2015 14:02:57 >>>> +0300 >>>> + >>>> opendataplane (1.2.0.0-1) unstable; urgency=low >>>> * API: >>>> - docs: doxygen grouping clean up and remove excess references >>>> to ODP >>>> diff --git a/include/odp/api/version.h b/include/odp/api/version.h >>>> index a44b14d..1518201 100644 >>>> --- a/include/odp/api/version.h >>>> +++ b/include/odp/api/version.h >>>> @@ -37,7 +37,7 @@ extern "C" { >>>> * Introduction of major new features or changes. APIs with different >>>> major >>>> * versions are likely not backward compatible. >>>> */ >>>> -#define ODP_VERSION_API_MAJOR 2 >>>> +#define ODP_VERSION_API_MAJOR 3 >>>> /** >>>> * ODP API minor version >>>> >>> >>> _______________________________________________ >>> lng-odp mailing list >>> lng-odp@lists.linaro.org >>> https://lists.linaro.org/mailman/listinfo/lng-odp >>> >> >> _______________________________________________ >> lng-odp mailing list >> lng-odp@lists.linaro.org >> 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 > > >
diff --git a/debian/changelog b/debian/changelog index f7fdc35..741ab72 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,83 @@ +opendataplane (1.3.0.0-1) unstable; urgency=low + * API: + - codespell: correct spelling + - event: change to odp_event_type_t + - init: use const pointer types + - packet_io: added odp_pktio_param_t + - packet_io: added start and stop + - packet_io: change word instance to interface + - pktio: added output mode + - pktio: rename pktio_input_mode enum + - pool: add odp_pool_param_init prototype + - pool: standardize description for odp_pool_param_init routine + - queue: add odp_queue_param_init prototype + - queue: clarify odp_queue_context_set() documentation + - queue: rename queue context get/set for consistency + - sched: added ordered context lock + - sched: added release ordered + - sched: added schedule group create and destroy + - sched: added schedule prefetch + - sched: added worker group + - sched: clarified synchronization context + - sched: clarify usage of PRIO_DEFAULT + - sched: moved scheduler types into new file + - sched: removed GROUP_DEFAULT + - sched: removed SYNC_DEFAULT + - sched: schedule param + - schedule: fix comment typo + - spelling fixes + - style: init api: documentation clean up + * ODP docs: + - doc: implementers-guide: add validation description + - doc: publish contributing text + * ODP helper: + - fix installation path for includes + - linux: catch possible undefined + - test: chksum: catch errors in scan_ip + * test: + * validation: + - add test on unused retvals + - use _CU_TEST_INFO() macro + - system: fix uninitialised variable + - test odp_pktio_start and odp_pktio_stop + - fix build from tar source + - kill odp_generator + - removing current dir from -I + * performance: + - Makefile: add scripts to EXTRA_DIST + - l2fwd: fix race condition between thread init and stat counter + - l2fwd: capture test fails + - odp_pktio_perf: use real MAC addresses while packet creation + - odp_scheduling: remove redundant var inits + - use odp_pool_param_init routine + - use odp_queue_param_init routine + * general: + - Makefile.am: fix basename conflicts + - Makefile: add all arch to the tarball + - fix logic for calling pktio init and term functions + - install missing headers + - move default cpumask functions to separate file + - move openssl checks inside linux-generic + - move pthread checks inside linux-generic + - add pktio_start and pktio_stop + - pktio: add global init and term function for pktios + - pktio: always test loop interface + - pktio: handle segmented packet in socket mode + - pktio: remove basic socket implementation + - pktio: store errno correctly in setup + - pool: add odp_pool_type_t enum + - pool: implement odp_pool_param_init + - queue: implement odp_queue_param_init routine + - remove linux-generic makefile generation from common configure.ac + - schedule pktin_poll: account pktio stop state + - Makefile.am: fix aclocal warning when building from tarball + - m4: pthread: fix warning with Wextra + - scripts/git_hash: change repo to CUSTOM_STR + - scripts/git_hash: fix build from tar source + - scripts: Makefile: add odp_version.sh to the tarball + + -- Maxim Uvarov <maxim.uvarov@linaro.org> Mon, 31 Aug 2015 14:02:57 +0300 + opendataplane (1.2.0.0-1) unstable; urgency=low * API: - docs: doxygen grouping clean up and remove excess references to ODP diff --git a/include/odp/api/version.h b/include/odp/api/version.h index a44b14d..1518201 100644 --- a/include/odp/api/version.h +++ b/include/odp/api/version.h @@ -37,7 +37,7 @@ extern "C" { * Introduction of major new features or changes. APIs with different major * versions are likely not backward compatible. */ -#define ODP_VERSION_API_MAJOR 2 +#define ODP_VERSION_API_MAJOR 3 /** * ODP API minor version
Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> --- debian/changelog | 80 +++++++++++++++++++++++++++++++++++++++++++++++ include/odp/api/version.h | 2 +- 2 files changed, 81 insertions(+), 1 deletion(-)