docs.git
6 years agoUpdate git submodules
ebrjohn [Tue, 27 Feb 2018 15:18:41 +0000 (09:18 -0600)]
Update git submodules

* Update docs/submodules/sfc from branch 'master'
  to 72da156c501919b38e05d6b8db8815e120761963
  - SFC-213 SFC statistics dont always work

    - The OpenFlow NodeId is not available on
      the SFF, so the statistics cant work.
    - There's a race condition between when SFC
      creates the OVS bridge for an SFF and when
      we try to get the bridge DPID.

    Change-Id: I05b2d0da61f8147ffea0a995b3efef38cbf05b31
Signed-off-by: Brady Johnson <bjohnson@inocybe.com>
6 years agoUpdate git submodules
Evan Zeller [Thu, 1 Mar 2018 04:19:19 +0000 (20:19 -0800)]
Update git submodules

* Update docs/submodules/openflowplugin from branch 'master'
  to a862a00411d1eadd7db500711723f9bc273580db
  - OPNFLWPLUG-984: always use ingress node for link discovery

    Using the LLDP destination (packet-in ingress) guarantees that the
    receiving controller is the owner of the device. Relying on the LLDP
    source can cause a scenario where the LLDP packet never appears in the
    entity-owner of the source device.

    Change-Id: I8ad4171cdae395d260b754b95e5d9b75138fb79b
Signed-off-by: Evan Zeller <evanrzeller@gmail.com>
    (cherry picked from commit 36722d99c3a17bb23d4299a906591f11a9847f03)

  - Enable findbugs in parent pom

    Change-Id: Ib9c64da593973b23c0bf2d3bf499adc95e16df54
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix findbugs violations in test-provider and drop-test-karaf

    - Field only ever set to null
    - int value cast to float and then passed to Math.round
    - Possible null pointer dereference in method on exception path
    - Non-virtual method call passes null for non-null parameter
    - Comparison of String parameter using == or !=
    - Should be a static inner class
    - Private method is never called
    - int value cast to float and then passed to Math.round
    - Unread field
    - Unread field: should this field be static?
    - Unused field
    - Dead store to local variable
    - Private method is never called
    - Method uses the same code for two switch clauses
    - Write to static field from instance method
    - Field not initialized in constructor but dereferenced without null check

    Change-Id: Ib09380d626ab9162c4308810fae9db90522269cf
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix findbugs violations in openflowplugin-impl

    - Method ignores exceptional return value
    - Check for sign of bitwise operation
    - Consider using Locale parameterized version of invoked method
    - Reliance on default encoding
    - Synchronization performed on util.concurrent instance
    - Unchecked/unconfirmed cast
    - Unchecked/unconfirmed cast of return value from method
    - Return value of method without side effect is ignored
    - Dead store to local variable
    - Method uses the same code for two branches
    - Load of known null value
    - Parameter must be non-null but is marked as nullable
    - Field not initialized in constructor but dereferenced without null check

    Change-Id: I92e00a5772038111d1ab8d9f53d52c43e3f4909d
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix findbugs violations in openflowplugin

    - Comparison of String parameter using == or !=
    - Comparator doesn't implement Serializable
    - Field is a mutable collection
    - Incorrect lazy initialization of static field
    - Inefficient use of keySet iterator instead of entrySet iterator
    - Private method is never called
    - Unsigned right shift cast to short/byte
    - Class is final but declares protected field
    - Consider returning a zero length array rather than null

    Change-Id: I714bd4005a33a772b0b76b0c0f89f28b8517cd06
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix findbugs violations in extensions

    - Dead store to local variable
    - Unchecked/unconfirmed cast
    - Field not initialized in constructor but dereferenced without null check
    - Method ignores return value
    - Private method is never called

    Change-Id: I7a3fe1700439b456cb7dce6d84f63a9840fd68a7
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix findbugs violations in samples

    - Inconsistent synchronization
    - Using notify() rather than notifyAll()
    - Method ignores return value
    - Read of unwritten field
    - Field not initialized in constructor but dereferenced without null check

    Change-Id: I12e8ae3ab25cc41ba05b99e9e4c85f2606a2814d
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix findbugs violations in liblldp

    - Method call passes null for non-null parameter
    - Class defines clone() but doesn't implement Cloneable
    - Clone method may return null
    - clone method does not call super.clone()
    - equals() method does not check for null argument
    - Reliance on default encoding
    - May expose internal representation by returning reference to mutable object
    - Field is a mutable collection which should be package protected - malicious code vulnerability
    - Field should be package protected - malicious code vulnerability
    - Inefficient use of keySet iterator instead of entrySet iterator
    - Boxing/unboxing to parse a primitive - use parseXXX method
    - Redundant nullcheck of value known to be non-null

    Change-Id: I6d551d31d618a1adfc877ac59f29d02727201df6
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix findbugs violations in applications

    - Method ignores return value
    - Consider using Locale parameterized version of invoked method
    - Reliance on default encoding
    - Write to static field from instance method
    - Inefficient use of keySet iterator instead of entrySet iterator
    - Dead store to local variable
    - Consider returning a zero length array rather than null
    - Consider using Locale parameterized version of invoked method
    - Boxing/unboxing to parse a primitive - use parseXXX method
    - Unread field
    - Dead store to local variable
    - Non-transient non-serializable instance field in serializable class
    - Parameter must be non-null but is marked as nullable
    - Field not initialized in constructor but dereferenced without null check
    - Nullcheck of value previously dereferenced
    - Redundant nullcheck of value known to be non-null

    Change-Id: I1887f775f61fb8e3e6989113edf7faf4f9b06b34
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix findbugs violations in openflowjava

    - Invocation of toString on an array

    - Check for sign of bitwise operation:
    Example: ((event.detail & SWT.SELECTED) > 0)

    Using bit arithmetic and then comparing with the greater than operator
    can lead to unexpected results (of course depending on the value of
    SWT.SELECTED). If SWT.SELECTED is a negative number, this is a candidate
    for a bug. Even when SWT.SELECTED is not negative, it seems good practice
    to use '!= 0' instead of '> 0'

    - Reliance on default encoding - performs a byte to String (or String to byte)
    conversion, and will assume that the default platform encoding is suitable.

    - Primitive value is boxed then unboxed to perform primitive coercion

    - Unread field

    - Result of integer multiplication cast to long - possible overflow

    - Dead store to local variable - assigns a value to a local variable, but
    the value is not read or used in any subsequent instruction.

    - Method uses the same code for two switch clauses

    - Load of known null value

    - Consider returning a zero length array rather than null

    - Redundant nullcheck of value known to be non-null

    - Field not initialized in constructor but dereferenced without null check

    - Non-transient non-serializable instance field in serializable class

    - Class implements same interface as superclass

    Change-Id: I28b533c9f9805de539e35b729c5163fd22e75354
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Luis Gomez [Tue, 6 Mar 2018 00:25:36 +0000 (16:25 -0800)]
Update git submodules

* Update docs/submodules/integration/test from branch 'master'
  to fbb916d2437066339d422ee6ba9f5c83071f7a34
  - NETCONF-520: Fix netconf test in oxygen

    Looks like a yang model changed during oxygen so new RPC URI and data
    for adding and deleting device are required from oxygen onwards.

    Change-Id: I39eb3f76e053775e738119cc41a82ec9742e364b
Signed-off-by: Luis Gomez <ecelgp@gmail.com>
6 years agoUpdate git submodules
Jamo Luhrsen [Tue, 6 Mar 2018 01:02:43 +0000 (01:02 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to f478710cb252dab7a91a6b7454c38f292cd6ca6e
  - Merge "Print last 10 integration/test commits in console"
  - Print last 10 integration/test commits in console

    Change-Id: If95b26da7b495b96ae2e9938a8ad1cd8275991e5
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Jamo Luhrsen [Tue, 6 Mar 2018 00:18:35 +0000 (00:18 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to ea91a1744b396eddb8102a197942b2773be29318
  - Merge "fix ocata stack by looking for rabbitmq pid"
  - fix ocata stack by looking for rabbitmq pid

    Change-Id: I1277b8c172fffd365a2da51362f22d935c78c550
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Sam Hague [Mon, 5 Mar 2018 23:32:56 +0000 (18:32 -0500)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 2e75303d69c6e5123b6c296c44859acebd227ce6
  - Remove remaining newton usage

    Change-Id: I1d3b7a8bfb9c08411a8e177cd1e6e96b8165f002
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
David Suarez [Mon, 5 Mar 2018 21:31:13 +0000 (22:31 +0100)]
Update git submodules

* Update docs/submodules/sfc from branch 'master'
  to 0233b0172955ec4318b809635bb1ea774371c247
  - Refactor to change packages' names

    sfc-ios-xe-renderer package is replaced by more canonical name:
    org.opendaylight.sfc.renderers.iosxe

    Change-Id: I86e9f2e355e86823300c4de7003d4133f1dfe95e
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agoUpdate git submodules
Jamo Luhrsen [Mon, 5 Mar 2018 22:18:37 +0000 (22:18 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 9dddf63059dfa09bb9695ed0b9f8354bd4b3413b
  - Merge "Use Karaf test script that avoids ODLPARENT-139"
  - Use Karaf test script that avoids ODLPARENT-139

    Change-Id: I85bd3fc6ea696c7b811de1873ed874410ea112c0
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
6 years agoUpdate git submodules
Thanh Ha [Mon, 5 Mar 2018 21:27:35 +0000 (21:27 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 2e3f8181c08b9d95435a17a1aa7a39ecbba7d3a3
  - Merge "Support branch-cutting version bump workflow"
  - Support branch-cutting version bump workflow

    Add support to the version bump job to handle version bumping
    for branch cutting activities as described in ODL processes.

    http://docs.opendaylight.org/en/latest/release-process/branch-cutting.html

    JIRA: RELENG-81
    Change-Id: I911ebe69c521ecf204a54a32a86f300aec7f22fd
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
6 years agoUpdate git submodules
JakubToth [Mon, 5 Mar 2018 20:54:25 +0000 (20:54 +0000)]
Update git submodules

* Update docs/submodules/netconf from branch 'master'
  to ca503b8a06eed0c4a00f9a5cee549f941ef77044
  - Merge "Remove deprecated registerDataChangeListener method"
  - Remove deprecated registerDataChangeListener method

    registerDataChangeListener is scheduled for removal. The
    method now has a default implementation in the interface so
    the methods can be removed from the 2 DOMDataBroker implementations.

    Change-Id: I1f3ead35f0cfdfd95bbbf35d9163b1f1309c8b90
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Tom Pantelis [Fri, 2 Mar 2018 18:27:56 +0000 (13:27 -0500)]
Update git submodules

* Update docs/submodules/netconf from branch 'master'
  to 2c1a8b7e484301622cbbf8cb89e3061f0e00970e
  - Enable findbugs in restconf-binding-parent

    Change-Id: I1746a4340a28749ba9c593c9cb9209695d9c8f94
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Tom Pantelis [Thu, 1 Mar 2018 15:25:02 +0000 (10:25 -0500)]
Update git submodules

* Update docs/submodules/netconf from branch 'master'
  to 55a92f9bfad21ea46e8cc1d4463a081d3a729924
  - Fix findbugs violations in sal-rest-docgen-maven

    - Method ignores exceptional return value
    - Method may fail to close stream on exception
    - Reliance on default encoding

    Change-Id: I854a7eee9960645a4c4a9d867a284bf202826786
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Tom Pantelis [Thu, 1 Mar 2018 14:15:53 +0000 (09:15 -0500)]
Update git submodules

* Update docs/submodules/netconf from branch 'master'
  to 9d4f66971356d2ab3769b172e8b968ec36f894c2
  - Fix findbugs violations in sal-rest-docgen

    - Reliance on default encoding
    - Field is a mutable collection
    - Write to static field from instance method
    - Exception is caught when Exception is not thrown
    - Field not initialized in constructor but dereferenced without null check
    - Useless object created

    Change-Id: Iff717b38d3a5bee082e7a9fb30969a0d755bf4c2
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Tom Pantelis [Wed, 28 Feb 2018 23:58:03 +0000 (18:58 -0500)]
Update git submodules

* Update docs/submodules/netconf from branch 'master'
  to a01dad851768102b3182033c10d860f5245d7d26
  - Fix findbugs violations in restconf-nb-rfc8040

    - Possible null pointer dereference
    - Method call passes null for non-null parameter
    - Nullcheck of value previously dereferenced
    - Consider using Locale parameterized version of invoked method
    - Reliance on default encoding
    - Inconsistent synchronization
    - Inefficient use of keySet iterator instead of entrySet iterator
    - Should be a static inner class
    - Useless assignment in return statement
    - Method uses the same code for two branches
    - Method uses the same code for two switch clauses
    - Write to static field from instance method
    - Redundant nullcheck of value known to be non-null
    - Exception is caught when Exception is not thrown
    - Useless control flow

    Change-Id: I217a81d9dc487fe7f8e62a9c882c7335815ae052
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
David Suarez [Thu, 1 Mar 2018 15:14:32 +0000 (16:14 +0100)]
Update git submodules

* Update docs/submodules/sfc from branch 'master'
  to 02f86cedc23fac7749961a34fd0790314e0e89b7
  - Refactor sfc-vpp-renderer

    - Migrate to use Blueprint
    - Use Blueprint annotations
    - Migrate listeners to use Genius' ones

    Change-Id: Iaec54c9d59bb078e1e455fd10aff96155af9c042
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agoUpdate git submodules
Jamo Luhrsen [Mon, 5 Mar 2018 19:13:30 +0000 (11:13 -0800)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to e26824a76c42a76dae58fb23f772e856d5a85612
  - Refine the high-freq netvirt csit jobs

    the csit-high-frequency lists were outdated and using non-
    existent job names in some cases. We also want to see a
    high frequency of the queens jobs running now that we
    have seen Queens mature and we are close to releasing
    Oxygen

    Change-Id: Ia0ac9bea53814e4f6313e0464ebfc445cb575bb4
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdate git submodules
Victor Pickard [Tue, 27 Feb 2018 19:08:47 +0000 (14:08 -0500)]
Update git submodules

* Update docs/submodules/integration/test from branch 'master'
  to a08f81f84bed6960a402daf21b3349e5803b9ef5
  - Fix L2GW test case 16

    Should be 3 ports, not 1.

    Fix a typo.

    Check port_mac[2], which is the remote OVSPORT2 MAC,
    instead of port_mac[4], which is the local HWVTEPPORT3
    MAC.

    Change-Id: I7673b7889181636f9ec296ccd00cbdddbdfce6f4
Signed-off-by: Victor Pickard <vpickard@redhat.com>
6 years agoUpdate git submodules
Thanh Ha [Mon, 5 Mar 2018 17:30:49 +0000 (17:30 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 7fb6a1f7d1a58393de3354881e7e2fec6a9c5620
  - Merge "Increase timeout for RPM port tests"
  - Increase timeout for RPM port tests

    Most verify-rpm jobs were failing due to ports not opening up in time.
    The previous 120 seconds seems to be slightly too short, 125 seconds
    seems to be about normal.

Fixes: INTPAK-145
    Change-Id: I53f92bc84dda6318734010b8824b6d33c3c24798
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
6 years agoUpdate git submodules
Ryan Goulding [Mon, 5 Mar 2018 16:11:57 +0000 (11:11 -0500)]
Update git submodules

* Update docs/submodules/aaa from branch 'master'
  to f3ade62d1c64aa52b1b6fc1309ee2c4919729c00
  - AAA-167:  Refresh test cert

    Test cert used in UT for AAA was expired causing failures.  For now,
    a 10 year cert is added to unblock the release.  Later, the tests
    will be refactored to generate the key on the fly.

    Change-Id: Ic1da844b2ffa841691f61f82106f24e0cb27bafe
Signed-off-by: Ryan Goulding <ryandgoulding@gmail.com>
6 years agoMerge "Update branch cutting documentation"
Charles La Voy [Mon, 5 Mar 2018 16:33:47 +0000 (16:33 +0000)]
Merge "Update branch cutting documentation"

6 years agoUpdate git submodules
Tom Pantelis [Fri, 2 Mar 2018 23:15:58 +0000 (18:15 -0500)]
Update git submodules

* Update docs/submodules/ovsdb from branch 'master'
  to a26df7eb62bf26db7aa6a9165127eb1d5ea0c6eb
  - Fix checkstyle violations in utils

    NotifyingDataChangeListener is fixed to be thread-safe, with
    ConcurrentHashMap-backed sets and volatile fields where necessary.

    Change-Id: Ic740e964c7fbcb53caf091475e3032ad29284677
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Manuel Buil [Wed, 28 Feb 2018 09:10:06 +0000 (10:10 +0100)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 378418e96c45b8f2581025fba5276c421925b32b
  - Build and test rpm-snap using docker

    As agreed with Daniel, it will be easier if we move epel-7 to docker
    too before merging:

    https://git.opendaylight.org/gerrit/#/c/68201/

    Change-Id: I81453fcd23e19bf0dfdbc3199d149ebf2dbbb0cb
Signed-off-by: Manuel Buil <mbuil@suse.com>
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
6 years agoUpdate git submodules
R P Karthika [Tue, 13 Feb 2018 11:03:28 +0000 (16:33 +0530)]
Update git submodules

* Update docs/submodules/coe from branch 'master'
  to ec9fb6a8648146e2f47cf042949c5fd5d994b6d8
  - Updating paths in rst docs

    Change-Id: I170e4fd350d6f20154507e807a3d38dbd257f935
Signed-off-by: R P Karthika <r.p.karthika@ericsson.com>
6 years agoUpdate git submodules
Tom Pantelis [Fri, 2 Mar 2018 21:50:05 +0000 (16:50 -0500)]
Update git submodules

* Update docs/submodules/ovsdb from branch 'master'
  to 243e905149ef4fe73b96720e52b622a171c1c71d
  - Fix checkstyle violations in schema

    Change-Id: Ifdfeaeee54a69071758b12762fab8093974a5c6e
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Tom Pantelis [Fri, 2 Mar 2018 19:47:14 +0000 (14:47 -0500)]
Update git submodules

* Update docs/submodules/ovsdb from branch 'master'
  to 22684d071230ac6b83d55c6a8487f16e706e5a48
  - Add binding-parent pom

    This will contain common configurations for checkstyle and
    findbugs.

    Change-Id: I9fd94099ef0446caa377fdf9f069929ba659f8e1
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Faseela K [Mon, 5 Mar 2018 05:26:06 +0000 (10:56 +0530)]
Update git submodules

* Update docs/submodules/genius from branch 'master'
  to ed6930381e6c352ac14260d03374977ae25e2923
  - Flourine idmanager build failures

    sal-common-testutil has been removed from controller,
    as the relevant modules have moved to mdsal

    Change-Id: Ib8ff40bed63b6a890507c93ea205f20a728527ca
Signed-off-by: Faseela K <faseela.k@ericsson.com>
6 years agoRework release-notes for Oxygen 48/69048/1
Scott Melton [Sun, 4 Mar 2018 03:36:23 +0000 (19:36 -0800)]
Rework release-notes for Oxygen

Change-Id: If005b8b3c205710c46353aee20bb614c53a383aa
Signed-off-by: Scott Melton <smelton2@uccs.edu>
6 years agoUpdate git submodules
Faseela K [Fri, 16 Feb 2018 08:30:11 +0000 (14:00 +0530)]
Update git submodules

* Update docs/submodules/netvirt from branch 'master'
  to 6dca27c3006150d0f8cd33f0cdfad68d8aaf0591
  - NETVIRT-1122 - L3 ping between pods not working

    Change-Id: Ia89276382b27292f5891d958851380a4637b0508
Signed-off-by: Faseela K <faseela.k@ericsson.com>
6 years agoUpdate git submodules
Faseela K [Sun, 18 Feb 2018 04:17:15 +0000 (09:47 +0530)]
Update git submodules

* Update docs/submodules/integration/test from branch 'master'
  to 614b5775b52cce81c8e89434fd0e2d308b25925b
  - Add OVS dumps to Test Tear Down

    Change-Id: I57d286931f219e542ee4751f0c3b1efeda022257
Signed-off-by: Faseela K <faseela.k@ericsson.com>
6 years agoUpdate git submodules
Sam Hague [Fri, 2 Mar 2018 22:12:00 +0000 (17:12 -0500)]
Update git submodules

* Update docs/submodules/netvirt from branch 'master'
  to 0921991f9db5babcd8ec9868c0be73449a095a0f
  - Sync nitrogen with pike

    Change-Id: Ia3ea45c83545ba6721d625aef79897cbb33bb402
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Sam Hague [Fri, 2 Mar 2018 16:31:34 +0000 (11:31 -0500)]
Update git submodules

* Update docs/submodules/netvirt from branch 'master'
  to a380f2191dd36a7127a3ea6ff846b9cf017db830
  - Add CSIT update doc for OS version changes

    Change-Id: I279735f855b5e2e7874bf3e911fb390ea330dd50
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Sam Hague [Tue, 27 Feb 2018 14:34:51 +0000 (09:34 -0500)]
Update git submodules

* Update docs/submodules/netvirt from branch 'master'
  to 08acef79c93100ae14da9a2b3c72a0f2d68de94d
  - oxygen updates to support matrix

    Change-Id: I6fcb101490cda2282680b918b50861a4ac7bd866
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Moshe Levi [Wed, 21 Feb 2018 08:25:22 +0000 (10:25 +0200)]
Update git submodules

* Update docs/submodules/netvirt from branch 'master'
  to 07db9627fd8289b1c2dae5e663e481135fca8906
  - fix delete Direct with switchdev port

    Change-Id: I3165d5341770296052ded02751aabc3bee654cf3
Signed-off-by: Moshe Levi <moshele@mellanox.com>
Co-authored-by: Hamdy Khader <hamdyk@mellanox.com>
6 years agoUpdate git submodules
Jamo Luhrsen [Fri, 2 Mar 2018 18:55:46 +0000 (18:55 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to ecb4770d31a9794ab8b28cadbc23cfaa6e8fa229
  - Merge "Auto Update CSIT Jobs to run for fluorine"
  - Auto Update CSIT Jobs to run for fluorine

    Change-Id: If9abbb58dccc0d51ceeefd804933d6c3e5ebab32
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdate git submodules
Jamo Luhrsen [Fri, 2 Mar 2018 18:55:43 +0000 (18:55 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 1b2526f3d902e9c182363c06ea42444063c30f6b
  - Merge "Auto Update CSIT Jobs to run for oxygen"
  - Auto Update CSIT Jobs to run for oxygen

    Change-Id: I58eb9cd60d9fa110581843f0c6c796c246db3d96
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdate git submodules
jenkins-releng [Fri, 2 Mar 2018 18:43:34 +0000 (18:43 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to ba4f2235d00b1598bc94bcfee789ccd5b2f4155a
  - Auto Update CSIT Jobs to run for nitrogen

    Change-Id: Ic6ce9468bed790dae00dfef516608375afd88e2b
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdate git submodules
Sam Hague [Fri, 2 Mar 2018 18:12:35 +0000 (18:12 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 0d5a8d815bbc7a7601ae657dfde54cf3ff909ba1
  - Merge "Trim L2GW Combinations"
  - Trim L2GW Combinations

    Keeping the same combos as Netvirt in:
    https://git.opendaylight.org/gerrit/#/c/68909/

    Change-Id: I655cd599316a81b14a8da4cb5bdae33fff138f4d
Signed-off-by: Victor Pickard <vpickard@redhat.com>
6 years agoUpdate git submodules
gvrangan [Sat, 3 Mar 2018 01:37:43 +0000 (07:07 +0530)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to ef663fe84e3695fe3ab3116fc1c8bea7505df117
  - Image for the Openstack Queens Job

    Change-Id: Id201be3096332305afa5620ae04a87381fbafdf6
Signed-off-by: gvrangan <venkatrangang@hcl.com>
6 years agoUpdate git submodules
David Suarez [Thu, 1 Mar 2018 15:08:59 +0000 (16:08 +0100)]
Update git submodules

* Update docs/submodules/sfc from branch 'master'
  to 7198b98cb40ca478dd022e0439f4c541ccdc8962
  - Minor change in .gitignore

    Change-Id: Icb8095295dbb30eba28a624c608aaeb1b4a4fdda
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agoUpdate git submodules
Jaime Caamaño Ruiz [Thu, 1 Mar 2018 14:26:57 +0000 (15:26 +0100)]
Update git submodules

* Update docs/submodules/sfc from branch 'master'
  to 8ca4d655e4e62f8cc42c345e2abad0656891a582
  - Fix sfc-104 demo issues

    Change-Id: Idfd3cc4b3fdca31188c4a4c2132ee06ed3ebe3a1
    JIRA: SFC-218
Signed-off-by: Jaime Caamaño Ruiz <jcaamano@suse.com>
6 years agoUpdate git submodules
Jaime Caamaño Ruiz [Thu, 1 Mar 2018 14:25:01 +0000 (15:25 +0100)]
Update git submodules

* Update docs/submodules/sfc from branch 'master'
  to 3c72eab2fe4c1db9aa37933be139cc17d178f82c
  - SFC-218: Fix sfc-scf-vpp wiring

    Change-Id: I73ad125c433f145bba93ef8b0c56f0cfb344a30d
    JIRA: SFC-218
Signed-off-by: Jaime Caamaño Ruiz <jcaamano@suse.com>
6 years agoUpdate git submodules
Stephen Kitt [Fri, 2 Mar 2018 14:32:37 +0000 (15:32 +0100)]
Update git submodules

* Update docs/submodules/netvirt from branch 'master'
  to 8a7f42cd34b2f618b4bc67e0a420f11ccdd0db0c
  - NETVIRT-1126: avoid shipping the MySQL connector

    This strips the MySQL connector from the Karaf distribution we build,
    to avoid shipping a GPL component in the distribution.

    Change-Id: I71e18fe79d3503e79b5bc8b722abe264657a61a6
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdate git submodules
Somashekar Byrappa [Tue, 27 Feb 2018 10:46:35 +0000 (16:16 +0530)]
Update git submodules

* Update docs/submodules/netvirt from branch 'master'
  to 5947c23d71c5340c8a568ee97d69998a22349507
  - NETVIRT-1123: Remote ACL issue during cross SG rules

    Remote ACL table was not programmed when port is the first port on
    the dpn for a remote ACL in the below scenario.

    VM1(sg1) <-> VM2(sg2)

    sg1 -> allow icmp to/from sg2
    sg2 -> allow icmp to/from sg1

    Change-Id: I7991daa98730a9922aa52665489345a43b66f2c8
Signed-off-by: Somashekar Byrappa <somashekar.b@altencalsoftlabs.com>
6 years agoUpdate git submodules
Robert Varga [Wed, 24 Jan 2018 20:26:28 +0000 (21:26 +0100)]
Update git submodules

* Update docs/submodules/odlparent from branch 'master'
  to ae83730319a9afe97d4a67c11049d039835c94f8
  - Bump sevntu-checkstyle to 1.27

    https://sevntu-checkstyle.github.io/sevntu.checkstyle/#1.25.0
    https://sevntu-checkstyle.github.io/sevntu.checkstyle/#1.26.0
    https://sevntu-checkstyle.github.io/sevntu.checkstyle/#1.27.0

    Change-Id: Ifdc5c6c3d8f499893997af2258dbf0672a42b2b5
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
6 years agoUpdate git submodules
Robert Varga [Wed, 24 Jan 2018 20:23:12 +0000 (21:23 +0100)]
Update git submodules

* Update docs/submodules/odlparent from branch 'master'
  to 41b1ab85fb5c5c14d2499080b4b5b848b830ab6f
  - Bump checkstyle dependency to 8.7

    http://checkstyle.sourceforge.net/releasenotes.html#Release_8.5
    http://checkstyle.sourceforge.net/releasenotes.html#Release_8.6
    http://checkstyle.sourceforge.net/releasenotes.html#Release_8.7

    Change-Id: I0008e14482d07309a6c9e41cb9456e0004cfc8c2
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
6 years agoUpdate git submodules
Robert Varga [Wed, 24 Jan 2018 20:20:09 +0000 (21:20 +0100)]
Update git submodules

* Update docs/submodules/odlparent from branch 'master'
  to 44cb9f54d871445bccbf8b8e8c5567dc1646cc22
  - Bump maven-checkstyle-plugin to 3.0.0

    https://mail-archives.apache.org/mod_mbox/maven-announce/201801.mbox/%3Cop.zchs68akkdkhrr%40desktop-2khsk44.mshome.net%3E

    Also removes checkstyle.version property, as noted in its TODO, and
    switches from <sourceDirectory/> to <sourceDirectories/>, as
    documented on the plugin site on
    https://maven.apache.org/plugins/maven-checkstyle-plugin/

    Change-Id: I3bffa47a300f314aaefe5181ca92fd0a6c925755
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdate git submodules
Faseela K [Fri, 2 Mar 2018 04:03:24 +0000 (09:33 +0530)]
Update git submodules

* Update docs/submodules/genius from branch 'master'
  to c7438317b1c27272a63ccd1c8c8a98a843e0d282
  - Remove sal-common-testutil dependency

    This was previously used for EOS Tests, but since eos
    has moved to mdsal repo, this is no longer needed.

    Change-Id: Ibd8a7f70513ee428da35276edd7b17ec597f3455
Signed-off-by: Faseela K <faseela.k@ericsson.com>
6 years agoUpdate git submodules
Sam Hague [Fri, 2 Mar 2018 13:47:04 +0000 (08:47 -0500)]
Update git submodules

* Update docs/submodules/integration/test from branch 'master'
  to 009b4349f9ed4eca50e17bff0456b21054fe9a8f
  - Add queens tempest exclusions

    Change-Id: I9aa027497451917c0e0f37a33f5943f7c34dfb4b
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Shashidhar Raja [Fri, 2 Mar 2018 06:28:17 +0000 (11:58 +0530)]
Update git submodules

* Update docs/submodules/genius from branch 'master'
  to 0a43287be655bba928a220d460be1416421e3e2e
  - Service-Recovery: Support needed for ACL feature introduced in SRM
    framework.

    (a) srm-types.yang updated with 'netvirt-acl', 'netvirt-acl-interface' and
    'netvirt-acl-instance' definitions to support ACL service and instance
    recovery operations. 'netvirt-acl-interface' and
    'netvirt-acl-instance' are the two instance recovery options supported.
    (b) SrmRpcUtils.java and SrmCliUtils.java updated to add required ACL definitions
    to the internal maps maintained to support recovery operations.

    Change-Id: I4c91cd52e7595b92b494356dfa715dbdf15da3c5
Signed-off-by: Shashidhar Raja <shashidharr@altencalsoftlabs.com>
6 years agoUpdate git submodules
Naveen Kumar Verma [Wed, 28 Feb 2018 09:15:39 +0000 (14:45 +0530)]
Update git submodules

* Update docs/submodules/genius from branch 'master'
  to 14a099cbbf6b1d1babe13566ab224fffffca5c12
  - Genius Specific Changes to support QoS with SRM

    Adding QOS option as recoverable service & Qos policy as recoverable
    instance.

    Change-Id: I0e123bec31f663d8b6673b37c5858fbcc85b8b46
Signed-off-by: Naveen Kumar Verma <naveen.kumar.verma@ericsson.com>
6 years agoUpdate git submodules
Luis Gomez [Fri, 2 Mar 2018 00:17:28 +0000 (16:17 -0800)]
Update git submodules

* Update docs/submodules/integration/test from branch 'master'
  to 00ff721960f44741707a7558f90adc2c3aa98c0b
  - Use fix URL for netconf test-tool from Oxygen

    This is because test-tool is broken in Oxygen.

    Change-Id: I49c2f805b87b3a67b060cbeb667165d52268694c
Signed-off-by: Luis Gomez <ecelgp@gmail.com>
6 years agoUpdate git submodules
Jamo Luhrsen [Fri, 2 Mar 2018 00:12:38 +0000 (00:12 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 7b8065b6820a10d108edae980835f97fcb2a3525
  - Merge "Log nova_cell1 to know that is being looked for"
  - Log nova_cell1 to know that is being looked for

    Change-Id: I08a5cac6ef67886040e8db8bf03c0464061ad394
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Daniel Farrell [Thu, 1 Mar 2018 22:14:40 +0000 (17:14 -0500)]
Update git submodules

* Update docs/submodules/integration/packaging from branch 'master'
  to e472ae5cc020cc2d739ebc76f3c571db040eb6dd
  - Update expired example builds in package unittests

    Change-Id: I6f8ee0916592d5d53ce43cc62a2a037eecac3c3d
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
6 years agoUpdate git submodules
Daniel Farrell [Thu, 1 Mar 2018 22:54:34 +0000 (17:54 -0500)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to def5fedd2cc686080b3253f672ea8c24625cd7e3
  - Add keyword to trigger RPM code verify job

    Recheck only runs tox, need a way to run tests that build/install/test
    an RPM on a Gerrit that proposes changes to packaging code.

    Change-Id: I9dfa48b59a9310ce03d323c75b289d61c34705bc
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
6 years agoUpdate git submodules
Claudio D. Gasparini [Thu, 1 Mar 2018 10:26:09 +0000 (11:26 +0100)]
Update git submodules

* Update docs/submodules/bgpcep from branch 'master'
  to 8ee42713633bee3e37ef25c7d5787284333a123a
  - BGPCEP-763: Fix Pcep Deadlocked thread

    improve synchronization

    Change-Id: I9d0b97aefe58e742d10313d7ab18f69f3e8be69c
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
6 years agoUpdate git submodules
Sam Hague [Thu, 1 Mar 2018 17:31:02 +0000 (12:31 -0500)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 4b72ac3dbc1baa39bfc541b6b0dedf8830b0d176
  - reenable wait_for_rabbitmq

    Change-Id: I9a1be558ee8a0aef1b0289f364a6b78e1e214bac
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Sam Hague [Thu, 1 Mar 2018 18:50:42 +0000 (13:50 -0500)]
Update git submodules

* Update docs/submodules/integration/test from branch 'master'
  to 5acc4072c5c6d9f43d6befb2b79f4e27dd511b73
  - Add queens cirros flavor

    Change-Id: Icb81f513e157737e144a09e3680883047c012a32
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
ebrjohn [Tue, 27 Feb 2018 16:37:11 +0000 (10:37 -0600)]
Update git submodules

* Update docs/submodules/sfc from branch 'master'
  to bac3f7489b5b4ad2b3e8a01a9edac432a710f75e
  - Remove binary jar and download when running test

    Change-Id: I15bbbb8a56d2e208b472d096ed85c9e166132258
Signed-off-by: Brady Johnson <bjohnson@inocybe.com>
6 years agoUpdate git submodules
Michael Vorburger [Wed, 28 Feb 2018 11:50:54 +0000 (12:50 +0100)]
Update git submodules

* Update docs/submodules/infrautils from branch 'master'
  to a47e84f1153ddafed2fb818dc296f708ed8ff329
  - make new ThreadsWatcher log intervals configurable (and fix volatile)

    Change-Id: Id902b7e066ee9f31df83c64de2142562aaeb1f64
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdate git submodules
Michael Vorburger [Tue, 6 Feb 2018 21:14:43 +0000 (22:14 +0100)]
Update git submodules

* Update docs/submodules/infrautils from branch 'master'
  to 4140d8cb1de70aded12bbf717af4177e7552ea2c
  - Revert "JobCoordinatorImpl temporarily remains backward compatible"

    This reverts commit 568bfac47e67d8d11152ffe04c49ce10c2793d34.

    This is "harmless", AFTER I80e3f5b6e8a601345cd2fbae79f0de22d0fa0e7d
    and If3c3bcdb8a972c7e57cff20fd24d5addefa7746b will have been merged,
    BUT does cause *ALL* pending "in-flight" Gerrits in genius and netvirt
    to have to be rebased - so probably should be merged like 1-2 weeks
    after those 2 changes made landed.

    Change-Id: I05bb4ed62f47a21a492bc624ae3f638e0d5cf81c
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdate git submodules
Michael Vorburger [Thu, 1 Mar 2018 16:48:02 +0000 (17:48 +0100)]
Update git submodules

* Update docs/submodules/aaa from branch 'master'
  to a6eaf05e0fca75cd13ec823308d98c81ddf0bc3f
  - AAA-166 fix (attempt)

    Change-Id: Ib2217b035138d993a88b2bc279316fd14925ea73
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdate git submodules
gvrangan [Mon, 26 Feb 2018 20:15:24 +0000 (01:45 +0530)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 44405852c9df71c49c97c26fc3d35a7dcec4705a
  - Modify Queens jobs to stack from stable/queens

    Change-Id: I81461ffd96c2b3da99828d3df46ab48c1f776788
Signed-off-by: gvrangan <venkatrangang@hcl.com>
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Claudio D. Gasparini [Thu, 1 Mar 2018 11:01:21 +0000 (12:01 +0100)]
Update git submodules

* Update docs/submodules/bgpcep from branch 'master'
  to 5e9a23ad0f8d324f2d5e4540bd6c6101894a1040
  - BGPCEP-574: Remove old ImportPolicyPeerTracker

    Change-Id: Ife1849081727a6ab06038f3f5dbab010797347a7
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
6 years agoUpdate git submodules
Tom Pantelis [Fri, 23 Feb 2018 03:08:16 +0000 (22:08 -0500)]
Update git submodules

* Update docs/submodules/genius from branch 'master'
  to bd32e2d81fb5873ac17843c45f5d4d0d8a29163d
  - Enable findbugs in commons binding-parent

    Change-Id: I6b5f9341e564487e4f29a817e3e1471afa461730
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Claudio D. Gasparini [Mon, 26 Feb 2018 11:01:55 +0000 (12:01 +0100)]
Update git submodules

* Update docs/submodules/bgpcep from branch 'master'
  to e0ef1ee6ca1e66e96a8adb5e0e96b330326c8f11
  - BGPCEP-754: Start using default import policy

    configuration with configurable rib policies.

    Change-Id: I6aeb4c4261aafb7faf1ff0a08edfefb443590830
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
6 years agoUpdate git submodules
Claudio D. Gasparini [Wed, 14 Feb 2018 15:43:30 +0000 (16:43 +0100)]
Update git submodules

* Update docs/submodules/bgpcep from branch 'master'
  to b8961491bad1575c4d5bc35ec309da52d3d8f420
  - BGPCEP-754: Remove simple-routing-policy

    Can be replace by configuring a rib policy

    Change-Id: I12ef5f2571b01020e23ee073c8745ca9fe972a1a
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
6 years agoUpdate git submodules
Claudio D. Gasparini [Thu, 18 Jan 2018 09:53:15 +0000 (10:53 +0100)]
Update git submodules

* Update docs/submodules/bgpcep from branch 'master'
  to 58c385725d1e5544d7ea7eea09c157c8aecfa259
  - BGPCEP-754: PeerTracker Impl

    - recollected information for advertize
    path, as supported families, peerID, etc..
    will be provided by peers themselves.

    Change-Id: I759bb14fa513ba5927f52ac4160cc2ffb4641d5d
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
6 years agoUpdate git submodules
Claudio D. Gasparini [Wed, 17 Jan 2018 16:05:58 +0000 (17:05 +0100)]
Update git submodules

* Update docs/submodules/bgpcep from branch 'master'
  to a8cc861b0f932c910559e9f261afb5c0ed5713ad
  - BGPCEP-754: Introduce BGPPeerTracker interfaces

    as replacement for static Export group.
    Each Peer will provide information required
    per rib policies for update tables.
    BGPPeerTracker will just keep track of
    all registered peers.

    Change-Id: I08c94afab183a49c7277e30792d8344b87064d8a
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
6 years agoUpdate git submodules
Claudio D. Gasparini [Wed, 31 Jan 2018 16:09:05 +0000 (17:09 +0100)]
Update git submodules

* Update docs/submodules/bgpcep from branch 'master'
  to 5fc9f301d4491c5070a3aa355fd563cb840abaf7
  - BGPCEP-589: Openconfig Basic Routing Policy Statement

    - match prefix set
    - match originator set
    - match cluster-id set
    - match peer-role set
    - community
    - ext-community
    - as-path set
    - med eq
    - next-hop-in
    - as-path length
    - local-pref-eq

    Basic actions

    - accept
    - reject
    - as-path prepend
    - set community
    - set excommunity
    - set originator-id
    - originator-id prepend
    - cluster-id prepend
    - set local-pref
    - set next-hop
    - set med
    - transitive attributes filtering

    Change-Id: I5052ad5a0e5319dfd143a79b2bf812cad8676236
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
6 years agoUpdate git submodules
Tom Pantelis [Fri, 23 Feb 2018 02:18:49 +0000 (21:18 -0500)]
Update git submodules

* Update docs/submodules/genius from branch 'master'
  to 2c1be93575ca8b06755f8b71070afed8d0ee8bf7
  - Fix findbugs violations in fcapsapplication

    - Inconsistent synchronization
    - Write to static field from instance method

    Change-Id: I5b15553a4ced6d7ebdf7a57bdfc7590c3c221ba2
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Tom Pantelis [Thu, 22 Feb 2018 22:50:28 +0000 (17:50 -0500)]
Update git submodules

* Update docs/submodules/genius from branch 'master'
  to fb17bdbf6ab43b9afea5150a870036a29d9129e6
  - Fix findbugs violations in resourcemanager-impl

    - Method ignores return value
    - Incorrect lazy initialization of static field
    - Dead store to local variable

    Change-Id: I03b7a719b596af38f89db25ff0fc6547ec676bac
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Tom Pantelis [Wed, 21 Feb 2018 17:11:11 +0000 (12:11 -0500)]
Update git submodules

* Update docs/submodules/genius from branch 'master'
  to 3617bf05cf88a85c2bc6ad1435bdc2ace3ead05d
  - Fix findbugs violations in itm-impl

    - Method ignores return value
    - Dead store of class literal
    - Null pointer dereference
    - No relationship between generic parameter and method argument
    - Invocation of toString on an array
    - Reliance on default encoding
    - Field should be package protected
    - Inconsistent synchronization
    - Inefficient use of keySet iterator instead of entrySet iterator
    - Method checks to see if result of String.indexOf is positive
    - Dead store to local variable
    - Write to static field from instance method
    - Load of known null value
    - Class implements same interface as superclass
    - Redundant nullcheck of value known to be non-null
    - Exception is caught when Exception is not thrown
    - Useless object created
    - Useless control flow

    Change-Id: Id0dc47011e6c2ec9f11d2876fd8fe77b63a687ec
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Faseela K [Fri, 23 Feb 2018 12:27:19 +0000 (17:57 +0530)]
Update git submodules

* Update docs/submodules/genius from branch 'master'
  to 94d5f60b8cec8c0d4355591863e859742adba487
  - SRM refactoring

    Realized that some code that went in interface-manager for service
    recovery can be reused across modules, and hence moving some of those
    common utilities to srm.

    Change-Id: I65dbb9b27bddbe11f7ca4a30a3a27838eef8cefc
Signed-off-by: Faseela K <faseela.k@ericsson.com>
6 years agoUpdate git submodules
Tom Pantelis [Fri, 2 Feb 2018 02:41:25 +0000 (21:41 -0500)]
Update git submodules

* Update docs/submodules/openflowplugin from branch 'master'
  to 3210ea4661796b13af0c0cbd8d1a4b4714be0030
  - Enable checkstyle enforcement in openflowplugin-parent

    This covers all code sub-projects. Also removed checkstyle
    configurations in all sub-projects.

    Change-Id: Ib93f4abb41e97bc4c803cd54ad1c2ea56040d3db
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix checkstyle violations in test bundles

    Change-Id: Id8e05a621e56dadea15252498bf04505f920441d
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix checkstyle violations in openflowplugin - part 5

    Change-Id: I968d1e7931764b1e27e3aad40a3fd9094c24f270
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix checkstyle violations in openflowplugin - part 4

    Change-Id: Ib9e941db9d2f48b34f713a5618368aff68089e42
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix checkstyle violations in openflowplugin - part 3

    Change-Id: I0d8d7f5cc6c12299d67fbdacc13aafea7c086226
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix checkstyle violations in openflowplugin - part 2

    Change-Id: I83c41416dd64eba991ff95c4afc9e8a2b11e3a31
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  - Fix checkstyle violations in openflowplugin - part 1

    Change-Id: Ic66142803cdbc5fcb1e27d1ba8efc62aedceba04
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Jamo Luhrsen [Thu, 1 Mar 2018 06:22:20 +0000 (06:22 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 25d7c440c70eabcc3dd652d3c2a472a4df4e89ce
  - Merge "Auto Update CSIT Jobs to run for fluorine"
  - Auto Update CSIT Jobs to run for fluorine

    Change-Id: Iacf9adf7b9653d500a3c41f1ac61458b5d05c58b
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdate git submodules
Jamo Luhrsen [Thu, 1 Mar 2018 06:22:10 +0000 (06:22 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to f3d5b6e92e41be53014a73560a9c1900e813c9ac
  - Merge "Auto Update CSIT Jobs to run for oxygen"
  - Auto Update CSIT Jobs to run for oxygen

    Change-Id: I339fcdef6832a039db259a4012a0a01570a3424d
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdate git submodules
jenkins-releng [Thu, 1 Mar 2018 02:59:10 +0000 (02:59 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 3a41957b26d787423f61df144db8d96ca8e783d9
  - Auto Update CSIT Jobs to run for nitrogen

    Change-Id: I1117922b0ce1d126844f1f815e96b156b2a68070
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdate git submodules
Tom Pantelis [Wed, 28 Feb 2018 19:13:38 +0000 (14:13 -0500)]
Update git submodules

* Update docs/submodules/netconf from branch 'master'
  to 0fc2633cdf44d105517c1ac7e22fae5d51a4f0b5
  - Restconf 8040 should return 204 for delete and put

    restconf was returning 200 Ok but according to RCF8040, for put,
    "If an existing resource is modified, a "204 No Content"
    status-line is returned."" and for delete, "If the DELETE request
    succeeds, a "204 No Content" status-line is returned.".

    Change-Id: I7133cdd747c1869d6b640c873bbcdccd437e8900
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate branch cutting documentation 62/68762/3
Anil Belur [Mon, 26 Feb 2018 11:39:06 +0000 (21:39 +1000)]
Update branch cutting documentation

- Update the doc for RE to either follow manual steps or use jobs
  for branch cutting jobs.
- Re-order some of the steps to minimize the time the branches are
  locked.
- Add the version bump and branch cut jobs.

Change-Id: I5e630a8160e5c46a1b4f40bc7dc189e45de1da70
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
6 years agoUpdate git submodules
Sam Hague [Thu, 1 Mar 2018 01:00:39 +0000 (01:00 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 2e3aa7a266561bd06ec988fd75ac1635cd63169b
  - Merge "Trim combinations"
  - Trim combinations

    Change-Id: Id422fa5938202a372bfe304c47a9c004fcefb1b8
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Jamo Luhrsen [Thu, 1 Mar 2018 00:51:08 +0000 (00:51 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to d8bddff486907fbea59818681218bb8f9a24c0ab
  - Merge "Remove private repo for networking-l2gw plugin"
  - Remove private repo for networking-l2gw plugin

    Patch has been merged, remove the private repo.

    Change-Id: I8777d2df0db50d64bd10cad48b8cc1397ca3cbee
Signed-off-by: Victor Pickard <vpickard@redhat.com>
6 years agoUpdate git submodules
gvrangan [Wed, 28 Feb 2018 02:22:48 +0000 (07:52 +0530)]
Update git submodules

* Update docs/submodules/integration/test from branch 'master'
  to 7c5ffbd057659d846d7b8b13d8af0d0e9f5ae155
  - Fix VTN CSIT Issues

    - VTN Manager CSIT tests OF10 cases, so modified
      start Keyword to start mininet with OF10

    - VTN Coordiantor does not download Oxygen for testing.
      Currently fixed to do so.

    Change-Id: I5d41f3c278879418a4df9eee313097d8d1247dec
Signed-off-by: gvrangan <venkatrangang@hcl.com>
6 years agoUpdate git submodules
Frederick F. Kautz IV [Wed, 28 Feb 2018 19:33:37 +0000 (11:33 -0800)]
Update git submodules

* Update docs/submodules/coe from branch 'master'
  to 67593b1d917f66ad4f68b4750e3317c9265a1d01
  - Adding a Makefile and Dockerfile for building odlovs-cni

    Change-Id: I77c27a9ed96132c14c0c9e7d7fa7c16d552bb25b
Signed-off-by: Frederick F. Kautz IV <fkautz@redhat.com>
6 years agoUpdate git submodules
Frederick F. Kautz IV [Wed, 28 Feb 2018 18:26:06 +0000 (10:26 -0800)]
Update git submodules

* Update docs/submodules/coe from branch 'master'
  to 63914a8f2d40c8a8def35f05b9dd2fbae86b4d20
  - Makefile now copies watcher binary from build container to the host

    Change-Id: I671b92aa770b1e5cd123639c9967e0464d4b19c6
Signed-off-by: Frederick F. Kautz IV <fkautz@redhat.com>
6 years agoUpdate git submodules
Faseela K [Wed, 28 Feb 2018 18:03:35 +0000 (23:33 +0530)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to a35eb0603fc8722a5d0b8f72c6227bf18cacf420
  - Use centos7-docker-2c-8g for COE builds

    Change-Id: I461a9ff73dc7a04a6b8d0b975962cdb3db2750fc
Signed-off-by: Faseela K <faseela.k@ericsson.com>
6 years agoUpdate git submodules
Sam Hague [Wed, 28 Feb 2018 15:57:29 +0000 (10:57 -0500)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 54dbf7796cbef0798c896f86a5128e63b8994061
  - Increase wait_for_compute timeout to 30m

    Change-Id: If4087651f9ddef60882c700ee5314c81bb98b1b5
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Michael Vorburger [Wed, 28 Feb 2018 11:28:50 +0000 (12:28 +0100)]
Update git submodules

* Update docs/submodules/infrautils from branch 'master'
  to ad048e9d07fa4154f2363a43b99c10a46f85e5de
  - make ThreadsWatcher log at fixed intervals, not continuously

    yet let it still check at shorter intervals than it will log

    because it's been observed that when we hit max threads or deadlock,
    then as it is, it will log continuously like crazy, at the speed of the
    intervals it checks (defaults to 500ms).  Increasing that interval to a
    much larger value (say 1min) is a shame because that could then take a
    longer time to find issues, or even miss them.  So that this does it can
    keep checking frequently, but doesn't have to report and spew logs as
    often.

    The new max log intervals are hard-coded to 1min in this first change.

    see https://lists.opendaylight.org/pipermail/infrautils-dev/2018-February/000596.html

    Change-Id: I075d9789af7c091e67b75c390963e71351f60672
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdate git submodules
Claudio D. Gasparini [Wed, 28 Feb 2018 14:23:03 +0000 (15:23 +0100)]
Update git submodules

* Update docs/submodules/bgpcep from branch 'master'
  to 8b588a0d0afc71a65269522534756b0ebad58889
  - BGPCEP-589: use odl communities / ext-communities

    on openconfig-bgp-policy.
    Odl supports more comm/ext-comm that the ones
    defined by oepnconfig. Also this improve efficency
    for match comparisons.

    Change-Id: I6989c64cdd8bf102f3d44ac5b545a97990578459
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
  - BGPCEP-754: Openconfig Routing Policy Service

    - Routing Policy Registry, listening DS and
    keeping track of all defined policies
    - RIB Policy Factory, provide a factory
    for create rib policies per specific RIB.

    Change-Id: Id5521811a23b65ad1ae5e4e20eb41a61d78beb95
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
6 years agoUpdate git submodules
Claudio D. Gasparini [Thu, 11 Jan 2018 12:06:36 +0000 (13:06 +0100)]
Update git submodules

* Update docs/submodules/bgpcep from branch 'master'
  to 46d769e6cf5a51ec961f27b7330c9c011925308e
  - BGPCEP-574: Openconfig Routing Policy SPI

    - Actions API
    - Conditions API
    - Statement handlers registry
    - Feature

    Change-Id: Ie1784f18c5d27fb8750e1d0ae2417b6561434bcc
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
6 years agoUpdate git submodules
Sam Hague [Wed, 28 Feb 2018 13:52:19 +0000 (08:52 -0500)]
Update git submodules

* Update docs/submodules/integration/test from branch 'master'
  to d69199551fd77d27cc5edc79707f095a84ccce92
  - Remove genius DEBUG

    Change-Id: I572658544f0c799014264bcc43d235dfcf10337d
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Thanh Ha [Wed, 28 Feb 2018 14:20:41 +0000 (14:20 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 0f994b355a2080e094b3cf6e9f617631dc983ec6
  - Merge "Remove wait_for_rabbitmq workaround"
  - Remove wait_for_rabbitmq workaround

    Change-Id: Ia33ec21f231fe46e2a4b9f618a198fd86f7ad1de
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Tom Pantelis [Wed, 14 Feb 2018 17:13:05 +0000 (12:13 -0500)]
Update git submodules

* Update docs/submodules/netconf from branch 'master'
  to 30bb0b0ef7b7736ccb1a339b8da6c5bc54709b0f
  - Specify explicit javax.ws.rs version in restconf

    This seems to fix the intermittent issue where restconf
    fails to install due to 2 versions of javax.ws.rs and
    javax.annotation.

    Change-Id: I6b106d700b89df575ee975f45e047cedb8c03e02
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Thanh Ha [Wed, 28 Feb 2018 13:16:30 +0000 (13:16 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to cb52af35b0fa1272dec4181513fd3227b4df9f4c
  - Merge "Revert "Install odl-mdsal-trace in netvirt oxygen csit""
  - Revert "Install odl-mdsal-trace in netvirt oxygen csit"

    This reverts commit 648f1e3e7b090a877eaa9ab2ac91bf791bc0fb40.

    Change-Id: I3478a416587582faccba275e17acd8d78edbc36a
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Sam Hague [Wed, 28 Feb 2018 13:04:44 +0000 (13:04 +0000)]
Update git submodules

* Update docs/submodules/integration/test from branch 'master'
  to 59a2c0b5e66ba0efbf2b03c7a605804a30fc980c
  - Revert "Add trace:transactions to suite teardown"

    This reverts commit 360dabe9726142f778b9ae623059277adde0e144.

    Change-Id: I612b30f847e4e9d8b459c9e3761c24925ff979e3
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdate git submodules
Claudio D. Gasparini [Thu, 11 Jan 2018 10:47:56 +0000 (11:47 +0100)]
Update git submodules

* Update docs/submodules/bgpcep from branch 'master'
  to b6c5a398d47791a8aaf8b923dde19cbfbfe5e4cb
  - BGPCEP-574: Introduce RIB Policy interfaces

    for Configurable RIB policies.

    Change-Id: I20930255ede101204b2d7402831953539e6a4398
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
6 years agoUpdate git submodules
Robert Varga [Wed, 28 Feb 2018 09:38:15 +0000 (10:38 +0100)]
Update git submodules

* Update docs/submodules/odlparent from branch 'master'
  to 42350b3745d9f382c807d80d8c5e0d98698bf31e
  - Bump BouncyCastle to 1.59

    https://www.bouncycastle.org/releasenotes.html, most notably fixes
    CVE-2017-13098.

    Change-Id: Ifb3c972f5c41722850249168d36b6ab669c7e4d0
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
6 years agoUpdate git submodules
Claudio D. Gasparini [Wed, 31 Jan 2018 13:02:51 +0000 (14:02 +0100)]
Update git submodules

* Update docs/submodules/bgpcep from branch 'master'
  to 66744a0e8ef072a2867a4892814ad4eaf0bf0e5c
  - BGPCEP-589: Define default routing policies

    create basic routing policies required
    for default bgp default rib policy.

    Change-Id: Ia9cdbdfa9f9ef6231a7bb774d6d66701dc777d26
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
6 years agoUpdate git submodules
Robert Varga [Wed, 28 Feb 2018 00:11:11 +0000 (01:11 +0100)]
Update git submodules

* Update docs/submodules/bgpcep from branch 'master'
  to a503d393aa2582907397847e436d2677fc8ac1d9
  - Fix model compliance

    Declared prefix should be unique within a module, as that is
    the prefix that is used to refer to a module within itself.

    Change-Id: I699c529831fd62854a50e46c105a3d7922d670f1
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
6 years agoUpdate git submodules
Tom Pantelis [Mon, 26 Feb 2018 19:19:01 +0000 (14:19 -0500)]
Update git submodules

* Update docs/submodules/netconf from branch 'master'
  to 232008a47d7ed50f062f5e11a416e5cf6f92e128
  - NETCONF-514: Use exists instead of read for PUT

    The PUT operation needs to check if the path already exists
    in order to return the proper response code according to the RFC
    however calling exists instead of read is more efficient on the
    back end.

    Change-Id: Ibd7e99324c6a151aae91083e0c90bdf877161dee
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdate git submodules
Anil Belur [Wed, 28 Feb 2018 01:33:14 +0000 (01:33 +0000)]
Update git submodules

* Update docs/submodules/releng/builder from branch 'master'
  to 2cebce4cb7d453c1509dedb3f9cc54e971506693
  - Merge "Improve DRY_RUN mode to perform a build"
  - Improve DRY_RUN mode to perform a build

    Allows DRY_RUN mode to perform a build without pushing artifacts
    or patches to Nexus & Gerrit.

    Change-Id: I8032bf2362358fb5f35ac1f56df821f41230c85f
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>