summaryrefslogtreecommitdiffstats
path: root/build-root/scripts
AgeCommit message (Expand)AuthorFilesLines
2017-05-18Update CSIT tests 170504 -> 170518Jan Gelety1-1/+1
2017-05-15move to CSIT 170504Neale Ranns1-1/+1
2017-04-26Move scripts to extras/Damjan Marion3-133/+0
2017-04-24Move emacs stuff to extras/Damjan Marion1-1/+1
2017-04-19Fix "make dist" to include version number, docouple it from rpm packagingDamjan Marion1-31/+0
2017-04-03Update CSIT tests 170313 -> 170403Jan Gelety1-1/+1
2017-03-14Update CSIT tests 170302 -> 170313Jan Gelety1-1/+1
2017-03-02Update CSIT tests 170220 -> 170302Jan Gelety1-1/+1
2017-02-20Update CSIT tests 170213 -> 170220Jan Gelety1-1/+1
2017-02-14Update CSIT tests 170129 -> 170213Jan Gelety1-1/+1
2017-01-31Prep work for Coverity upload processing via JenkinsDave Barach1-0/+53
2017-01-31Update CSIT tests 170122 -> 170129Jan Gelety1-1/+1
2017-01-25Update CSIT tests 170108 -> 170122Jan Gelety1-1/+1
2017-01-20Add dpdk development packagingDamjan Marion1-29/+0
2017-01-13Fix remove-rpath script, take 2Damjan Marion1-1/+1
2017-01-13Fix remove-rpath scriptDamjan Marion1-1/+1
2017-01-11Makefile.am cleanupDamjan Marion1-40/+0
2017-01-09Update CSIT tests 170101 -> 170108Jan Gelety1-1/+1
2017-01-03fix version.h generation for out-of-tree buildsDamjan Marion1-54/+1
2017-01-02Update CSIT tests 161218 -> 170101Jan Gelety1-1/+1
2017-01-01Move java,lua api and remaining plugins to src/Damjan Marion6-8/+22
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion2-4/+4
2016-12-20Remove RPATH from binaries before creating .deb and .rpm packagesDamjan Marion1-0/+24
2016-12-19Update CSIT tests 161211 -> 161218Jan Gelety1-1/+1
2016-12-12Update CSIT tests 161204 -> 161211Jan Gelety1-1/+1
2016-12-05Update CSIT tests 161128 -> 161204Jan1-1/+1
2016-12-02API: Packaging of JSON files.Ole Troan3-0/+19
2016-12-01"Update CSIT tests 161120 -> 161128""Peter Mikus1-1/+1
2016-12-01Revert "Update CSIT tests 161120 -> 161128"Ed Warnicke1-1/+1
2016-11-29Update CSIT tests 161120 -> 161128Jan1-1/+1
2016-11-21Update CSIT tests 161113 -> 161120Jan1-1/+1
2016-11-15Update CSIT tests 161106 -> 161113Jan1-1/+1
2016-11-09Update CSIT tests 161030 -> 161106Jan1-1/+1
2016-11-04VPP-498: Prepare vpp RPM packaging for use by downstream distros.Thomas F Herbert2-9/+67
2016-11-02Update CSIT tests 161024 -> 161030Jan1-1/+1
2016-10-29Initial deb packaging of vpp-python-apiEd Warnicke1-0/+8
2016-10-25Update CSIT tests 161017 -> 161024Jan1-1/+1
2016-10-18DO_NOT_MERGE: Update CSIT tests 161002 -> 161017pmikus1-1/+1
2016-10-06Add some useful scriptsDamjan Marion3-0/+133
2016-10-04Update CSIT tests 160925 -> 161002Jan1-1/+1
2016-09-26Update CSIT tests 160919 -> 160925Jan1-1/+1
2016-09-20Update CSIT tests 160912 -> 160919Jan1-1/+1
2016-09-13Update CSIT tests 160904 -> 160912Jan1-1/+1
2016-09-07checkstyle: improve speed by checking only recently changed filesDamjan Marion1-3/+18
2016-09-05Update CSIT tests 160821 -> 160904Jan1-1/+1
2016-08-22Update CSIT tests 160815 -> 160821Jan1-1/+1
2016-08-17Coding standards cleanup - remove trailing whitespace, fixes VPP-332Damjan Marion1-0/+4
2016-08-15Update CSIT tests 160807 -> 160815Jan1-1/+1
2016-08-12VPP-237: Checkstyle script to check for new checkstyle breakageEd Warnicke1-0/+73
2016-08-08Update CSIT tests 160731 -> 160807Jan1-1/+1
fib_node_index_t mfib_entry_index, fib_forward_chain_type_t type, mfib_entry_fwd_flags_t flags, dpo_id_t *dpo); extern void mfib_entry_encode(fib_node_index_t fib_entry_index, fib_route_path_encode_t **api_rpaths); extern void mfib_entry_module_init(void); extern mfib_entry_t *mfib_entry_pool; static inline mfib_entry_t * mfib_entry_get (fib_node_index_t index) { return (pool_elt_at_index(mfib_entry_pool, index)); } static inline fib_node_index_t mfib_entry_get_index (const mfib_entry_t *mfe) { return (mfe - mfib_entry_pool); } static inline mfib_itf_t * mfib_entry_itf_find (mfib_itf_t *itfs, u32 sw_if_index) { uword *p; p = hash_get(itfs, sw_if_index); if (NULL != p) { return (mfib_itf_get(p[0])); } return (NULL); } static inline mfib_itf_t * mfib_entry_get_itf (const mfib_entry_t *mfe, u32 sw_if_index) { return (mfib_entry_itf_find(mfe->mfe_itfs, sw_if_index)); } #endif