docs.git
6 years agoUpdated git submodules
Faseela K [Wed, 27 Sep 2017 11:43:28 +0000 (17:13 +0530)]
Updated git submodules

Project: infrautils master f1117768c32d7c9ec2ef8a942427cdff19f27b4d

Refactor diagstatus to split out JMX stuff into separate class

I find that this makes the DiagStatusServiceImpl class much shorter and
focused and therefore more easy to understand.  It's really clarifies
the dependency - the DiagStatusServiceMBeanImpl needs a
DiagStatusService - but DiagStatusService(Impl) does not need to know
anything about DiagStatusServiceMBean(Impl).

So this (new) DiagStatusServiceMBeanImpl then just becomes another
consumer of the public DiagStatusService API, just like the CLI, which
IMHO layer this whole thing much more clearly.

This work also revealed something which either is a major design flaw or
possibly a big misunderstanding of the whole thing on my part: There
were a lot of status.getValue() != null checks, which I removed -
because I don't understand how there can ever be an entry in the
statusMap which has no value, for a known key?  This is something
introduced by this change, but it's already like this - this just
reveals that more obviously, because of the clearer separation.

Change-Id: I273b2dd3464519fbe5ad3e6d012f913e3fe4f115
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
Signed-off-by: Faseela K <faseela.k@ericsson.com>
6 years agoUpdated git submodules
Michal Rehak [Wed, 27 Sep 2017 13:40:07 +0000 (15:40 +0200)]
Updated git submodules

Project: releng/builder master 56faeb7f617f640aa869e8c7eae9da80a452819c

Remove openflowjava build job configuration

    - openflowjava was adopted by openflowplugin during Nitrogen
      and no longer participates in Oxygen
    - achieved via revert of 4aaa45a1cafdf3191f28a3885a7010fa966a6bda

Change-Id: Ie8943809d233339cbb3747b5a23c8d82fa7816d7
Signed-off-by: Michal Rehak <mirehak@cisco.com>
6 years agoUpdated git submodules
Mohamed El-Serngawy [Wed, 27 Sep 2017 14:03:59 +0000 (14:03 +0000)]
Updated git submodules

Project: coe master 893bc4f22624ad0a47cd01305c18ff26bc8454e9

Merge "Change the ODL CNI setup"

Change the ODL CNI setup

Remove the linux bridge from the odl cni
setup and use direct port connection between
the pods network intf and the ovs bridge

Change-Id: I58251f66b7e352c0ca6dea43a79ec02019c595b0
Signed-off-by: Mohamed ElSerngawy <m.elserngawy@gmail.com>
6 years agoUpdated git submodules
Ryan Goulding [Wed, 27 Sep 2017 13:07:38 +0000 (13:07 +0000)]
Updated git submodules

Project: aaa master 4145a13593cf87dea19fd14de76b16629ab09eed

Merge "Move idmlight bundle to aaa-shiro bundle"

Move idmlight bundle to aaa-shiro bundle

Moving idmlight to shiro bundle and adjust
odl-aaa-shiro feature dependenies.

Change-Id: I1d750a1012aa2e8d29e489e03994672c871dd784
Signed-off-by: Mohamed ElSerngawy <m.elserngawy@gmail.com>
Signed-off-by: Ryan Goulding <ryandgoulding@gmail.com>
6 years agoUpdated git submodules
David Suarez [Wed, 27 Sep 2017 08:57:49 +0000 (10:57 +0200)]
Updated git submodules

Project: ovsdb master 92b434362fcbc6bb2a7acafbe2dcd5a2bfc6082c

Remove explicit default super-constructor calls

The default constructor is called by default (hence its name), no need
to call it explicitly

Change-Id: If72cd83d0cf4e0032d7f5fe7174c28cf4b9c5092
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agoUpdated git submodules
David Suarez [Wed, 27 Sep 2017 08:31:23 +0000 (10:31 +0200)]
Updated git submodules

Project: netvirt master d95ada0a7de3692f8d732fc2885045c3b2cf3d0b

Remove explicit default super-constructor calls

The default constructor is called by default (hence its name), no need
to call it explicitly. Based on this commit [1].

[1] https://git.opendaylight.org/gerrit/#/c/63526/

Change-Id: Ia7a4ccf88c328aab9feade1252a06e2c94b660ac
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agoUpdated git submodules
Tom Pantelis [Tue, 12 Sep 2017 16:03:00 +0000 (12:03 -0400)]
Updated git submodules

Project: netconf master 136b86fefb2a79a89fa37ee4fd8eeb47e41c34ba

Add local MultivaluedHashMap implementation

The JSONRestconfService implementation contains a local UriInfo
implementation, SimpleUriInfo, that uses a MultivaluedHashMap
implementation from javax.ws.rs.core. This class is provided by
the dependency used at compile time however, the runtime bundle
that provides the javax.ws.rs.core interfaces doesn't provide
MultivaluedHashMap. Therefore I added our own local MultivaluedHashMap
class based on the external class. I also refactored SimpleUriInfo into
it's own class as it's used by both JSONRestconfService implementations.

Change-Id: I1af0771327d46c72e55facf14c41038fd583e0ed
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdated git submodules
cgowdru [Tue, 5 Sep 2017 11:24:40 +0000 (16:54 +0530)]
Updated git submodules

Project: netvirt master 85cf35f8a38c5485c8cdc1319050cac914c4fe35

Bug9091 : Removing uncessary MD-SAL Read Operation in NAT

Description : It's been obseved many unnecessary MD-SAL read operations
where done in NAT module. Changes done to pass them as parameters to
calling methods instead reading the same data again which is already
retrieved earlier in it caller methods.

Change-Id: If5efc57a0342caa6acf73b3f17dba033cab77e7c
Signed-off-by: cgowdru <chetan.arakere@altencalsoftlabs.com>
6 years agoUpdated git submodules
Michael Vorburger [Mon, 25 Sep 2017 21:13:57 +0000 (23:13 +0200)]
Updated git submodules

Project: infrautils master 7af75ab49f8ef83485138ae8fc4133a7256aee39

diagstatus register() -> ServiceRegistration -> unregister()

This makes for a cleaner, more statically typed and "safer" API (because
you cannot "cheat" anymore, and ask to deregister something which you
did not register - as you could before.

Change-Id: I93e4dd72ccd61da08e43ca436a29a2eb4c8c4bc6
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoMerge "Fix version in Nitrogen release notes"
Thanh Ha [Wed, 27 Sep 2017 01:10:04 +0000 (01:10 +0000)]
Merge "Fix version in Nitrogen release notes"

6 years agoFix version in Nitrogen release notes 91/63591/1
Lorand Jakab [Tue, 26 Sep 2017 22:50:13 +0000 (01:50 +0300)]
Fix version in Nitrogen release notes

The main release notes is still referencing Carbon in one place.

Change-Id: I09b695de20b5d48609c8bb81f512bb3cd696f56d
Signed-off-by: Lorand Jakab <lojakab@cisco.com>
6 years agoUpdated git submodules
Thanh Ha [Tue, 26 Sep 2017 22:26:40 +0000 (18:26 -0400)]
Updated git submodules

Project: releng/builder master fa82a6385e507503a87db61b402f8dc502cc611f

Increase build-timeout for version-bump job

It seems Nitrogen needs more time to version bump then previous
releases. Let's double the time firstly to see how long it takes and we
can dial it down once we know.

Change-Id: I7d66a6f7ab069f11eeb859ade61f39bea7bd6dd0
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 26 Sep 2017 21:04:14 +0000 (21:04 +0000)]
Updated git submodules

Project: releng/builder master fbf45fe34b4926be8a8ed4b849ceb422acbcea56

Merge "Add n-api-meta to os control services"

Add n-api-meta to os control services

Change-Id: I799c2be0b0e626abf697b491b41f7d8577f00cfb
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 26 Sep 2017 21:04:10 +0000 (21:04 +0000)]
Updated git submodules

Project: releng/builder master 749f0ce96754863593bd2741cb9bf83657105f96

Merge "Make the os services easier to follow"

Make the os services easier to follow

Change-Id: I30d6b17c9033716c244965c1e2e8e30968a0fbb9
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Mohamed ElSerngawy [Tue, 19 Sep 2017 20:51:48 +0000 (16:51 -0400)]
Updated git submodules

Project: coe master d89fc18468bd6f782c58c706c9dc2bc147378b71

Fix Add node json string

Fix the Add node function json string

Change-Id: I82024a21a12a73899aa6cf570078b2ebe02a788f
Signed-off-by: Mohamed ElSerngawy <m.elserngawy@gmail.com>
6 years agoUpdated git submodules
Michael Vorburger [Thu, 21 Sep 2017 15:34:49 +0000 (17:34 +0200)]
Updated git submodules

Project: genius master 7dd573c4707dfe4ff10a31303fd9a1e43d88e556

FutureRpcResults

This is https://git.opendaylight.org/gerrit/#/c/53998/ generalized!

Change-Id: Ieb425d8365e7abe6589971f057722b9cef50db00
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 26 Sep 2017 18:03:49 +0000 (18:03 +0000)]
Updated git submodules

Project: releng/builder master 21ccb05794a5743bc749d55c37b062984e37f7d3

Merge "Exclude mininet-2.6 for Ubuntu 14.04"

Exclude mininet-2.6 for Ubuntu 14.04

Change-Id: I32d39022d0bcf7b6c7af6488b6b45e5177a0199f
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
6 years agoUpdated git submodules
Thanh Ha [Tue, 26 Sep 2017 17:17:51 +0000 (13:17 -0400)]
Updated git submodules

Project: releng/builder master 7a142a53d81e6dd1c7f1192e9cb3813409529dfa

Fix taglist getting the incorrect tags

We need to escape the $ so that the git rev-parse runs inside of the
submodule rather than before entering the submodule causing current
taglists to pull autorelease.

Change-Id: I4da6a9e3f9cb4288b74837300ef90ce1eb2dfa9f
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Thanh Ha [Tue, 26 Sep 2017 16:39:27 +0000 (12:39 -0400)]
Updated git submodules

Project: releng/builder master de8f9f1afd3111dd70d68ba85341b0cdd6043bc3

Handle yangtools nitrogen on non-standard branch

YangTools uses v1.2.x as it's nitrogen contribution so we need to handle
the difference in branch naming.

Change-Id: I9336c231bdb853d697c77a2d5d649d0036f6dc4d
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Tom Pantelis [Mon, 25 Sep 2017 17:40:52 +0000 (13:40 -0400)]
Updated git submodules

Project: sfc master f369718d1af29e16f6fb32485ae5db6706cf5fc0

Fix findbugs/checkstyle/sonar violations in sfc-ovs

- Field isn't final but should be
- Method invokes inefficient new String(String) constructor
- Load of known null value
- Parameter must be non-null but is marked as nullable
- Exception handlers should preserve the original exception
- Utility classes should not have public constructors
- String literals should not be duplicated
- String.valueOf() should not be appended to a String
- Local variable and method parameter names should comply with a naming convention
- Collapsible "if" statements should be merged
- Method parameters, caught exceptions and foreach variables should not be reassigned

Change-Id: Id37c56efb43f609de6883059c063cc3f2b7b438f
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoMerge "Remove archives/ path from PATCH_URL"
Thanh Ha [Tue, 26 Sep 2017 16:45:03 +0000 (16:45 +0000)]
Merge "Remove archives/ path from PATCH_URL"

6 years agoUpdated git submodules
Tom Pantelis [Thu, 21 Sep 2017 22:22:26 +0000 (18:22 -0400)]
Updated git submodules

Project: sfc master a700674542a48604833de9a23b72bb76b1cecc5a

Refactor SbRestAbstractDataListener

Refactored SbRestAbstractDataListener and derived classes to pass
parameters into the ctor instead of via setters. This makes it cleaner
so class fields can be final and avoids null checks elsewhere.

Change-Id: I86cde8471ddb3e3b193520191cef72e02a20056d
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdated git submodules
David Suarez [Tue, 26 Sep 2017 14:05:41 +0000 (16:05 +0200)]
Updated git submodules

Project: sfc master 97da7fda3a36f9c01f617d46ab87270fc324546f

Add an API to handle ServiceNode entities

Add an API to handle ServiceNode entities. This will be firstly used by
the SFC CLI.

Change-Id: Ia55985133b01a398e53e6dae19eb618ee4cf2c80
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agoRemove archives/ path from PATCH_URL 29/63529/1
Thanh Ha [Tue, 26 Sep 2017 16:36:03 +0000 (12:36 -0400)]
Remove archives/ path from PATCH_URL

The patches file is now in the root of the logs directory.

Change-Id: I063a5c18106ad79dfd97e9e81cbe1b9ad0e60981
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 26 Sep 2017 16:29:13 +0000 (16:29 +0000)]
Updated git submodules

Project: releng/builder master 0f8d771a26e6c9341edca8f844db48a6264be595

Merge "Trigger RPM/deb builds when changing pkg logic"

Trigger RPM/deb builds when changing pkg logic

Adds triggers to test RPM/deb builds when files related to package
building change. Also adds Gerrit keywords to trigger same builds.

Change-Id: I87611d49a6d594193a245dd157cc4a9be2cfcd4b
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Thu, 21 Sep 2017 23:43:43 +0000 (16:43 -0700)]
Updated git submodules

Project: integration/test master 40659a054760ee11b6a8b188c03bc10fc3ad9743

Remove SNMP CSIT

the job(s) for SNMP CSIT have never worked, and have been ignored
for several (if not all) releases. it's a waste of time and
resources to have them around.

see the status pages for Nitrogen, Carbon, Boron
and Beryllium for history:
  https://docs.google.com/spreadsheets/d/1MYyGLFWN2RzUkJl8XMzXQ-3zWuOrUCQpIS6ORbmf4_U/edit#gid=421626541
  https://docs.google.com/spreadsheets/d/1VcB12FBiFV4GAEHZSspHBNxKI_9XugJp-6Qbbw20Omk/edit#gid=1226505712
  https://docs.google.com/spreadsheets/d/1zImtd764e-hOgJAxoJKl85fxHCPu2agLfqsBtf13zQY/edit#gid=1037896712
  https://docs.google.com/spreadsheets/d/1hci5TMUPyB6PX8Al-fwfVqvs5SQVa2wZLja_7rKWN6o/edit#gid=843418255

partner JJB patch in releng/builder:
  https://git.opendaylight.org/gerrit/#/c/63427/

Change-Id: Ia2f042437dc6d64b9c03c144d026b75111ebf85d
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Tom Pantelis [Fri, 22 Sep 2017 16:36:54 +0000 (12:36 -0400)]
Updated git submodules

Project: sfc master b227575c7fe06838831255e0e3c445a3f44b0540

Refactor SbRestAbstractTask

- Change fields to private
- Remove setters and pass params to ctor so field can be final and
  avoid null checks elsewhere
- Expose a method to add to the restUriList

Change-Id: I3d48dd3f2ff04c6e9d52218855de40eee0760659
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdated git submodules
eupakir [Mon, 25 Sep 2017 10:02:06 +0000 (15:32 +0530)]
Updated git submodules

Project: netvirt master e2590a94c3d310b8eaeb99db3f8b9bf7e19c1ac9

Bug 8953 - IllegalArgumentException: vrfEntry is missing mandatory
descendant origin

Change-Id: I0978d55f09d0e9b31aa2b74e5cfac68a757c29da
Signed-off-by: eupakir <kiran.n.upadhyaya@ericsson.com>
6 years agoUpdated git submodules
Stephen Kitt [Mon, 25 Sep 2017 08:59:30 +0000 (10:59 +0200)]
Updated git submodules

Project: infrautils master 73355081d90192386bf6decf9aa8c30efa1614c7

Drop StringUtil

It isn’t used anywhere outside infrautils, and doesn’t bring anything
useful to the table.

Change-Id: I1e8ff19a1f5debd854052f39fd74447fe3f65ce8
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdated git submodules
Faseela K [Mon, 25 Sep 2017 17:38:12 +0000 (23:08 +0530)]
Updated git submodules

Project: infrautils master 98d2a78fecea7ff25866b2aa08c538529b40d513

Pull Model For DiagStatus

Change-Id: I22c1b09f11de41bb10aa3bc91ec778f0ebdce69f
Signed-off-by: Faseela K <faseela.k@ericsson.com>
6 years agoUpdated git submodules
Tom Pantelis [Thu, 21 Sep 2017 21:41:52 +0000 (17:41 -0400)]
Updated git submodules

Project: sfc master 44d5b18c2623b9e2a74130969fc4951c5421641f

Fix findbugs/sonar violations in sfc-sb-rest

- Method ignores exceptional return value
- Consider using Locale parameterized version of invoked method
- Field isn't final but should be (malicious code vulnerability)
- Method uses the same code for two switch clauses
- Redundant nullcheck of value known to be non-null
- Unread public/protected field  (SbRestAbstractTask)
- Field not initialized in constructor but dereferenced without null check

Change-Id: I4f0425b876e6f014d85add0221005cf84d1ddac3
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdated git submodules
Sam Hague [Mon, 25 Sep 2017 22:06:18 +0000 (18:06 -0400)]
Updated git submodules

Project: netvirt master a6356e962973f7ea3c47cb15a443506c0f388e6e

lower log levels for non-errors

Change-Id: I417085e3a9547b03ffe2c74285bf8af2746d461e
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Siva Kumar Perumalla [Mon, 25 Sep 2017 23:41:32 +0000 (05:11 +0530)]
Updated git submodules

Project: netvirt master 3cf0fc60774d9bdd73b865cde2f6fdb85aed6738

ClearBgpCli reads from socket to send/receive from bgpd
(some previous commit modifed to read from session parameters)

Change-Id: Id0f4e8294e239fee70d6b09d891d50c5c6a9237a
Signed-off-by: Siva Kumar Perumalla <sivakumar.perumalla@ericsson.com>
6 years agoUpdated git submodules
Atul Gosain [Tue, 22 Aug 2017 00:46:01 +0000 (17:46 -0700)]
Updated git submodules

Project: netconf master 383ff321e0ae4dcfc45a6dc682ede45f49232d9e

Minor cleanup of blueprint config

The path for private file was left here due to which the netconf module
looks for the private key file and shows error in the log which is a false alarm.
Cleaning up the configuration

Change-Id: Ied9cc137ab67cab158318a6c2f34da19dc174fe0
Signed-off-by: Atul Gosain <atul.gosain@gmail.com>
Signed-off-by: Atul Gosain <agosain@brocade.com>
6 years agoUpdated git submodules
Michael Vorburger [Mon, 25 Sep 2017 22:06:24 +0000 (00:06 +0200)]
Updated git submodules

Project: infrautils master ffdb00f87a200c403c147bfd905e97252007c7be

Enable FindBugs for diagstatus

it found no real bugs, but two very minor clean ups; but should help to
ensure that no new bugs (detectable by FindBugs) get introduced later

and remove a dependency we had to yangtools - infrautils should not (and
FindBugs did not like that equals() implementation - EQ_UNUSUAL)

Change-Id: I4c9c27c8a72db232a7f0688e097baf63e800d384
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Mon, 25 Sep 2017 19:52:37 +0000 (21:52 +0200)]
Updated git submodules

Project: genius master 460418a1da8d2a2fbbf546724340e3309d4480bd

Add @PreDestroy (and final) to AbstractDataTreeChangeListener's close

Change-Id: Ia13a6447f78eca0d888ed6801b8b47d17a35788c
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Mon, 25 Sep 2017 21:51:14 +0000 (23:51 +0200)]
Updated git submodules

Project: infrautils master 02c83722e55a17aeefc29026b4ab56abafd6bb63

Minor: Remove AutoCloseable from DiagStatusService API

This pattern is wrong - it's the implementation that is closeable. The
service API is not - as a consumer of interface DiagStatusService you do
not care about this - you'll never close() it.

Change-Id: Ia06605f863efb2fac1789cf29d9ad27e5e0bc6d6
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Thu, 10 Aug 2017 09:07:56 +0000 (14:37 +0530)]
Updated git submodules

Project: infrautils master f14c7bb3735970613ca0c50c8d6951c7c64f5a0f

New ready order FunctionalityReady with *Notifier, to help order startup

This came out of some thought I've given
https://git.opendaylight.org/gerrit/#/c/61323/

This is just the API; if there are no strong objections to this
approach, I'd like to get this merged in, and the propose the actual
FunctionalityReadyNotifierImpl body in a new follow-up change.

Change-Id: I943f963c835bbec7f113b56281d28d713156f514
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoMerge changes
Thanh Ha [Mon, 25 Sep 2017 21:53:15 +0000 (21:53 +0000)]
Merge changes

6 years agoMerge "Link to Nitrogen release notes Wiki page"
Thanh Ha [Mon, 25 Sep 2017 21:53:15 +0000 (21:53 +0000)]
Merge "Link to Nitrogen release notes Wiki page"

6 years agoUpdated git submodules
Victor Pickard [Mon, 25 Sep 2017 14:40:37 +0000 (10:40 -0400)]
Updated git submodules

Project: integration/test master c79e328375ccaa0ebdd7faf5943f48a87aba0af9

Add timeout/retry to L2GW CSIT TC05

Add timeout and retry to Verify Ovs Tunnel in test case
TC05. This was failing in 3 node tests, as it takes a
little longer for config to be applied in in cluster.

Change-Id: If9c2aa798c5b879f426837b05066e21d4e2bd85d
Signed-off-by: Victor Pickard <vpickard@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Mon, 25 Sep 2017 17:53:55 +0000 (19:53 +0200)]
Updated git submodules

Project: infrautils master 71b07293cd421d4750f4548970ddbdfa33f1ad20

Remove a "throws NullPointerException" which Sonar flags as Major

Change-Id: Ic0f4942886e6885397362d1ff7b1e01669c3f37c
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Stephen Kitt [Mon, 25 Sep 2017 12:54:04 +0000 (14:54 +0200)]
Updated git submodules

Project: infrautils master f0c7d0739f238efa0b76aa5aeec28818d1833f91

Drop CompareUtil

It isn’t used anywhere outside infrautils, and can be replaced by
Objects.

Change-Id: Ic101e48cf2102a1a669a720643fe69360df331d7
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdated git submodules
vidya sathyanarayanachar [Thu, 21 Sep 2017 17:41:20 +0000 (10:41 -0700)]
Updated git submodules

Project: integration/test master 3ce1ba4af1e2bac4d1adb177f48e2c43f49376d9

Fix for Genius CSIT failure on Oxygen

Description : This patch has keyword Get Tunnel modifed with
code to get tunnel interface name between dpns

Change-Id: I6bac03d6d3c244f4ef40b2d5ad1e8f0f046eeeaf
Signed-off-by: vidya sathyanarayanachar <s.vidya990@gmail.com>
6 years agoUpdated git submodules
Vratko Polak [Mon, 25 Sep 2017 13:07:05 +0000 (15:07 +0200)]
Updated git submodules

Project: integration/test master 005966b19cfd55ee543ec68b0e46170c0718d646

Bug 8999: Add entity isolation netconf suite

Added a suite based on entity.robot which
will verify that a 3 node netconf cluster recovers after
isolation and rejoin of the entity owner.

Change-Id: I2a5510338dfa323c71d3ce4820036b4bfe0342a2
Signed-off-by: Richard Hill <rhill@frinx.io>
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
6 years agoUpdated git submodules
Sam Hague [Mon, 25 Sep 2017 15:45:18 +0000 (11:45 -0400)]
Updated git submodules

Project: genius master 26c605f8f1c9f87d5e3041f9494edbebdae1a208

Add gpe option to itm-config.xml

https://git.opendaylight.org/gerrit/60769 missed adding
the option into the config.xml.

Change-Id: Ib14895cc5f6f562dea9f92cf553fcda8fbfdf298
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoLink to Nitrogen release notes Wiki page 87/63287/3
Michael Vorburger [Tue, 19 Sep 2017 15:06:23 +0000 (17:06 +0200)]
Link to Nitrogen release notes Wiki page

and fixed missing dot in infrautils release notes.

A more detailed lower level technical What's New
update will be provided in a presentation at the
Developer Design Forum in October.

Change-Id: I3a4f203d4888fbfd65a8d893c4472d5267d40489
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Jaime Caamaño Ruiz [Fri, 1 Sep 2017 14:33:59 +0000 (16:33 +0200)]
Updated git submodules

Project: sfc master 08e38497dc82ebfdc7041b2dc50a261f8916e842

BUG9093 Also attempt to use plain Vxlan tunnel

Give preference to VxlanGpe tunnel type in logical SFF but use standard
Vxlan tunnel if not present. This is because GPE extension might be
globally enabled as a Genius ITM configuration option so that specific
VxlanGpe tunnel types are not used.

Change-Id: I2540ada637b67276977601a6b2dfa418defe872a
Signed-off-by: Jaime Caamaño Ruiz <jaime.caamano.ruiz@ericsson.com>
(cherry picked from commit c4907b6221e1c3919129eb72d920d85f0d2567e1)

6 years agoUpdated git submodules
David Suarez [Sat, 23 Sep 2017 19:47:03 +0000 (21:47 +0200)]
Updated git submodules

Project: genius master 6fc2df52686f392cd1ae950938a44dc41c71c692

Improve the Genius Listeners Framework

Improve the Listeners Framework created in [1] to ease registration
and un-registration processes for entities.

[1] https://git.opendaylight.org/gerrit/#/c/59177/

Change-Id: I497903950026dd30037ca19fb0928ff455b07682
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agoUpdated git submodules
Atul Gosain [Fri, 21 Jul 2017 04:44:33 +0000 (21:44 -0700)]
Updated git submodules

Project: netconf master 202b4d062c1064fc061009d5725b8a102fcc13c4

RPC for netconf node addition. Supports encrypt option for password encryption.

Change-Id: I34beb880cbe2ccc6a3fe8e5f6cd4253f7e1938f4
Signed-off-by: Atul Gosain <atul.gosain@gmail.com>
Signed-off-by: Atul Gosain <agosain@brocade.com>
6 years agoUpdated git submodules
Stephen Kitt [Mon, 25 Sep 2017 07:36:32 +0000 (09:36 +0200)]
Updated git submodules

Project: infrautils master 580b57b7f454908e3cf7dae914459201ebc3999e

Add odl-guava-22 dependencies where necessary

Features which use Guava should use the odl-guava-22 feature instead
of bundling the library themselves.

Change-Id: Ic0c33eefa7a1f87497cb2a87fc17e86416ed1048
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdated git submodules
Philippe Guibert [Mon, 29 May 2017 09:45:00 +0000 (10:45 +0100)]
Updated git submodules

Project: netvirt master 6a6dd6e51234a177665a8590ab698f215100aabc

bgpmanager: change API of bgpmanager to add VRF IPv4 or IPv6

This change adds a change in IBgpManager API, since it adds afi and safi
parameters to VRF creation and deletion. This information is propagated
to BGP so as to create and delete VPN context tables in function of the
AFI and SAFI settings.
Instead of passing a layerType value, an AddressFamily type is used.
AddressFamily is mapped to internal afi/safi values.
The values are appended or removed to the VRF objects of BGP Manager.
The VRF object is then written to the config DS.
Subsequently, the Quagga will be called upon the various changes in the VRF object.
If the object is added or updated, the Quagga will be called with the appropriate
afi/safi values. If the object is removed, all the afi/safi values are removed from
the Quagga. If the object is added, the afi/safi values are added to the quagga.

Change-Id: Ife754ce561f69dbb67fcdf74308b5153cbde53e6
Signed-off-by: Valentina Krasnobaeva <valentina.krasnobaeva@6wind.com>
Signed-off-by: Noel de Prandieres <prandieres@6wind.com>
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
neutronvpn: create ipv4 or ipv6 context

Add ipv4Family and ipv6Family attributes to VPN instance. Add
IpVersionChoice class, which allows to set values for these attributes
in dependency of Ethertype of added/removed to VPN subnet.

Change-Id: If5ea1a0a29d31388d7898b9e6e53bdc4aecb1cbe
Signed-off-by: Valentina Krasnobaeva <valentina.krasnobaeva@6wind.com>
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Signed-off-by: Noel de Prandieres <prandieres@6wind.com>
6 years agoUpdate release note index files 69/63469/1
Kit Lou [Fri, 22 Sep 2017 23:52:28 +0000 (18:52 -0500)]
Update release note index files

Include release notes of participating nitrogen projects only

Change-Id: If12413172c5f06faa09c22827d87c07636434039
Signed-off-by: Kit Lou <klou.external@gmail.com>
6 years agoMerge "Update mdsal release notes for Nitrogen"
Thanh Ha [Fri, 22 Sep 2017 23:09:57 +0000 (23:09 +0000)]
Merge "Update mdsal release notes for Nitrogen"

6 years agoMerge "Update eman release notes for Nitrogen"
Thanh Ha [Fri, 22 Sep 2017 23:08:03 +0000 (23:08 +0000)]
Merge "Update eman release notes for Nitrogen"

6 years agoMerge changes
Thanh Ha [Fri, 22 Sep 2017 23:06:54 +0000 (23:06 +0000)]
Merge changes

6 years agoMerge "Update Distribution documents for Nitrogen"
Thanh Ha [Fri, 22 Sep 2017 23:06:54 +0000 (23:06 +0000)]
Merge "Update Distribution documents for Nitrogen"

6 years agoMerge "Add of-config Nitrogen release notes"
Thanh Ha [Fri, 22 Sep 2017 23:01:15 +0000 (23:01 +0000)]
Merge "Add of-config Nitrogen release notes"

6 years agoUpdate eman release notes for Nitrogen 36/63036/4
fsandoval [Tue, 12 Sep 2017 13:35:57 +0000 (07:35 -0600)]
Update eman release notes for Nitrogen

Change-Id: I03d518efe396e5773310cbc045f360dbb6b5bff2
Signed-off-by: fsandoval <francisrsandoval@gmail.com>
6 years agoMerge "Update snmp release notes for Nitrogen"
Thanh Ha [Fri, 22 Sep 2017 22:55:06 +0000 (22:55 +0000)]
Merge "Update snmp release notes for Nitrogen"

6 years agoUpdate mdsal release notes for Nitrogen 45/63245/5
Robert Varga [Mon, 18 Sep 2017 20:07:58 +0000 (22:07 +0200)]
Update mdsal release notes for Nitrogen

- Links updated
- Reformatted to 80 columns
- Reworded EOL section

Change-Id: I8a669228776a6d03cd4f9b9690ca00a4b1050066
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
6 years agoAdd of-config Nitrogen release notes 78/63078/7
wsx25289 [Wed, 13 Sep 2017 04:37:55 +0000 (12:37 +0800)]
Add of-config Nitrogen release notes

Change-Id: I05ce872bf7dae1c1aaf2866379a2d29bad61d3f3
Signed-off-by: Wsx25289 <10200860@zte.com.cn>
6 years agoMerge "Update TTP release notes for Nitrogen"
Thanh Ha [Fri, 22 Sep 2017 22:41:21 +0000 (22:41 +0000)]
Merge "Update TTP release notes for Nitrogen"

6 years agoMerge "Update Cardinal Nitrogen release notes"
Thanh Ha [Fri, 22 Sep 2017 22:38:59 +0000 (22:38 +0000)]
Merge "Update Cardinal Nitrogen release notes"

6 years agoUpdate snmp release notes for Nitrogen 38/63038/2
fsandoval [Tue, 12 Sep 2017 14:08:22 +0000 (08:08 -0600)]
Update snmp release notes for Nitrogen

Change-Id: Ib9a6e5acd941f0ceae7d0b0b7599931b3324b814
Signed-off-by: fsandoval <francisrsandoval@gmail.com>
6 years agoUpdate TTP release notes for Nitrogen 57/63157/2
Colin Dixon [Thu, 14 Sep 2017 23:11:00 +0000 (19:11 -0400)]
Update TTP release notes for Nitrogen

Change-Id: Idb02cfaf5b688c0ccd80bae76d1955b076e6e298
Signed-off-by: Colin Dixon <colin@colindixon.com>
6 years agoUpdated git submodules
Michael Vorburger [Fri, 22 Sep 2017 11:22:42 +0000 (13:22 +0200)]
Updated git submodules

Project: genius master 9b10915a8a9955f27550067a6fb402c5d4a3b489

Remove un-used InterfaceManagerRpcService IMdsalApiManager & methods

* buildInstructions()
* makeTerminatingServiceFlow()
* makeLFIBFlow()
* getFlowRef()

and instance field IMdsalApiManager mdsalMgr.

Change-Id: Icdce7e31f69510208c6171f77ec415c12d175281
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
David Suarez [Wed, 20 Sep 2017 09:42:57 +0000 (11:42 +0200)]
Updated git submodules

Project: infrautils master d83cefef8c54d9b2066906f8caf22195e61dd015

Cleanup some methods not used

Let's remove some methods not even used within this package. Fix some
issues related to checkstyle as well.

Some methods still used might be eventually replaced by "standard" ones
in later patches.

Change-Id: I74f3cb47ff01f3daa3ee5bcc84de18fc86c84f47
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agoUpdated git submodules
Atul Gosain [Fri, 22 Sep 2017 16:30:02 +0000 (09:30 -0700)]
Updated git submodules

Project: integration/test master 6b96e5dbd8d7ea3b77e2f3fae8c06a671943f4c2

Add a WUKS to netconf connector check

The check for netconf connector is not able to finish in time,
though the subsequent test passed. Adding the check.

Change-Id: Ib6f0ece50643ebab7e8e32dc6023941ce6d2c4e2
Signed-off-by: Atul Gosain <atul.gosain@gmail.com>
6 years agoUpdate Cardinal Nitrogen release notes 95/63395/5
Subodh [Thu, 21 Sep 2017 05:52:45 +0000 (11:22 +0530)]
Update Cardinal Nitrogen release notes

Change-Id: I791b1eb294ea1a324e91da7e67f1f9f8b91cdf0b
Signed-off-by: Subodh <subodh.roy@tcs.com>
6 years agoUpdated git submodules
Tom Pantelis [Thu, 21 Sep 2017 15:00:03 +0000 (11:00 -0400)]
Updated git submodules

Project: sfc master 266e23c41603e42f18d2663e3cf6e3dc06cc00dd

Fix findbugs/sonar violations in sfc-provider

- Exception handlers should preserve the original exception
- Null value is guaranteed to be dereferenced
- Possible null pointer dereference
- Method parameters should not be reassigned
- Collapsible "if" statements should be merged
- Method ignores exceptional return value
- Comparison of String objects using == or !=
- Consider using Locale parameterized version of invoked method
- Field should be package protected (malicious code vulnerability)
- Write to static field from instance method
- Inefficient use of keySet iterator instead of entrySet iterator
- Load of known null value
- Redundant nullcheck of value known to be non-null
- Useless object created
- Unused local variables should be removed
- Comments should not be located at the end of lines of code

Also enabled findbugs enforcement.

Change-Id: I26fb31995af9349cd5287c77c835342da2c90a84
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoMerge "nitrogen release notes for unimgr project"
Thanh Ha [Fri, 22 Sep 2017 15:24:19 +0000 (15:24 +0000)]
Merge "nitrogen release notes for unimgr project"

6 years agoUpdated git submodules
Tom Pantelis [Thu, 21 Sep 2017 02:04:03 +0000 (22:04 -0400)]
Updated git submodules

Project: sfc master 0fcd57a9b1f90016465cc55e035d61b42fc029b7

Fix findbugs/sonar violations in sfc-genius

Enabled findbugs enforcement. Several violations are
invalid so I had to supress them.

Change-Id: I990b371454b4ed1929e56600c81590e45a6322f0
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdated git submodules
David Suarez [Fri, 22 Sep 2017 08:20:56 +0000 (10:20 +0200)]
Updated git submodules

Project: genius master 852f343731c81d3b0da15bf96517ca3776f6ba83

Enforce findbugs maven plugin for module arputil-api

Change-Id: I0a0e3137468cb1509e905bb6a5f7134cd016fb3e
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agonitrogen release notes for unimgr project 96/63396/3
Bartosz Michalik [Thu, 21 Sep 2017 08:01:37 +0000 (10:01 +0200)]
nitrogen release notes for unimgr project

Change-Id: I7b00d7781e065c987d9d05da3af7df0453ec761f
Signed-off-by: Bartosz Michalik <Bartosz.Michalik@amartus.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Fri, 22 Sep 2017 06:16:31 +0000 (06:16 +0000)]
Updated git submodules

Project: releng/builder master 91c1e1491a67d0ac97d92d8fd1da3c78dc5fa66d

Merge "Auto Update CSIT Jobs to run for boron"

Auto Update CSIT Jobs to run for boron

Change-Id: Ib85f3617d6f45389940084dd6e00ae24d7be917b
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Fri, 22 Sep 2017 06:16:21 +0000 (06:16 +0000)]
Updated git submodules

Project: releng/builder master 95385859250fe1fd0e9c1e988c51d0c2233f404c

Merge "Auto Update CSIT Jobs to run for oxygen"

Auto Update CSIT Jobs to run for oxygen

Change-Id: Ic913517e10b05a48fd8a665cc4d33a9f58ac2266
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Fri, 22 Sep 2017 06:16:10 +0000 (06:16 +0000)]
Updated git submodules

Project: releng/builder master fe05fcfb0a58d879645debfe771a1b2f676968a9

Merge "Auto Update CSIT Jobs to run for nitrogen"

Auto Update CSIT Jobs to run for nitrogen

Change-Id: I51824284feb925c9d91577a7d90e515fed39b032
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdated git submodules
jenkins-releng [Fri, 22 Sep 2017 00:40:05 +0000 (00:40 +0000)]
Updated git submodules

Project: releng/builder master aad5dc53130950c5ef4d2f61777f81388c550b46

Auto Update CSIT Jobs to run for carbon

Change-Id: I127f5b1058b49ee05dac5f92c24b13e65b7ac919
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdated git submodules
Siva Kumar Perumalla [Mon, 18 Sep 2017 12:34:32 +0000 (18:04 +0530)]
Updated git submodules

Project: netvirt master edbe08e2378dbd34e5c219d37bef2d860f0b2a9d

bgpmanager thrift upgrade to 0.9.3

Change-Id: I5154fc5b3522313b30d647b68ed37dfd9e02f9ca
Signed-off-by: Siva Kumar Perumalla <sivakumar.perumalla@ericsson.com>
6 years agoUpdated git submodules
Yugandhar Reddy Kaku [Tue, 5 Sep 2017 12:27:04 +0000 (17:57 +0530)]
Updated git submodules

Project: netvirt master 39ab6bb866020a3bfc987c6cf69ae09a2be0f415

Bug 8963 - Option to configure EVPN address family

evpn can  be configured as neighbor from karaf CLI with command bgp-nbr
In the bgp-nbr command, for supported address families, vpnv4 is added as
it was missing.

Change-Id: I9d8854c9a7a05f1a48836f0ae88c7934b31a14be
Signed-off-by: Yugandhar Reddy Kaku <yugandhar.reddy.kaku@ericsson.com>
6 years agoUpdated git submodules
Sam Hague [Wed, 20 Sep 2017 21:44:55 +0000 (17:44 -0400)]
Updated git submodules

Project: genius master 05092c01759968cf1a4c75d3e4d8db2a40461446

Lower log level for non errors

Change-Id: Ie44e27fa23bc454a85385b22e2024aa2ba80897d
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Gowri R [Thu, 21 Sep 2017 11:50:39 +0000 (17:20 +0530)]
Updated git submodules

Project: netvirt master 0f1503f59962293a5bcdbe1e2a6adfc9b8afa1a6

Bug 9196 - Maxpath value should be between 1 to 64 in BGP multipath

Adding a check to ensure maxpath value for BGP multipath is in the range 1
to 64

Change-Id: I03786726053672d04b8ef552cb16cc45a9c4a840
Signed-off-by: Gowri R <gowri.r@ericsson.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Thu, 21 Sep 2017 23:41:39 +0000 (16:41 -0700)]
Updated git submodules

Project: releng/builder master 55d64d2b6a5fac58e5bbb4e9516f5846a8df560e

Remove SNMP CSIT

the job(s) for SNMP CSIT have never worked, and have been ignored
for several (if not all) releases. it's a waste of time and
resources to have them around.

see the status pages for Nitrogen, Carbon, Boron
and Beryllium for history:
  https://docs.google.com/spreadsheets/d/1MYyGLFWN2RzUkJl8XMzXQ-3zWuOrUCQpIS6ORbmf4_U/edit#gid=421626541
  https://docs.google.com/spreadsheets/d/1VcB12FBiFV4GAEHZSspHBNxKI_9XugJp-6Qbbw20Omk/edit#gid=1226505712
  https://docs.google.com/spreadsheets/d/1zImtd764e-hOgJAxoJKl85fxHCPu2agLfqsBtf13zQY/edit#gid=1037896712
  https://docs.google.com/spreadsheets/d/1hci5TMUPyB6PX8Al-fwfVqvs5SQVa2wZLja_7rKWN6o/edit#gid=843418255

partner patch in integration/test:
  https://git.opendaylight.org/gerrit/63428

Change-Id: I3588ddb5890651ff90e5c5e03082ab16950124a1
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Daniel Farrell [Thu, 21 Sep 2017 14:35:37 +0000 (10:35 -0400)]
Updated git submodules

Project: releng/builder master eafe65d034ba20f98e2b49743f852c786938ab2f

Don't skip votes for puppet-full tests

Realized that this config was the culprit for why Jenkins was running
but not voting for some jobs.

Change-Id: Iff49ea0156d2332368ae4e0a9b854f1226c5ae46
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
6 years agoUpdated git submodules
Daniel Farrell [Thu, 31 Aug 2017 22:54:10 +0000 (18:54 -0400)]
Updated git submodules

Project: integration/packaging master ebe438535f0694fac3fe63f8727b53f6fc63f2a7

Refactor packaging Vagrant env

Change-Id: Ib4a3dd05b681a9dae92e8ffb28823ff89344889e
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
Common Vagrantfile for local testing

A single vagrant file makes sense post refactoring than two vagrantfiles
in each deb and rpm directories. The commit also updates debian box to
the new stable 'stretch' version.

Change-Id: I62543f02ebd768540593a78d5ce644187b3c42a8
Signed-off-by: Alok Anand <alok4nand@gmail.com>
6 years agoUpdated git submodules
Michael Vorburger [Thu, 21 Sep 2017 15:07:19 +0000 (17:07 +0200)]
Updated git submodules

Project: genius master b7e0cf0842f8247707c477b2eb51e3bfc0231da0

Mechanical: ItmTunnelAggregationHelper Eclipse Auto-Save clean-up

just so that this won't clutter
https://git.opendaylight.org/gerrit/#/c/63372/5/itm/itm-impl/src/main/java/org/opendaylight/genius/itm/confighelpers/ItmTunnelAggregationHelper.java@306

Change-Id: I377acd21f1c8e17e74c50450905c5aedf44a8cc8
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Vinh Nguyen [Thu, 10 Aug 2017 19:26:24 +0000 (12:26 -0700)]
Updated git submodules

Project: netvirt master a991d06713483f33b5a37ee2788de947efa03878

BUG 8930 - delete Op VPN interface when deleting external network

Op VPNInterafce is removed in VrfEntryListener when the last
adjacency for the VPNInterface is removed.
The problem is VPN interface for external network doesn't
have any adjacency nor VrfEntry.
As a result, when the external Vpn interface is removed
the Op VpnInstance is not removed as it should.

Fix: Delete the Op VPN interface in VpnInterfaceManager
if the VPN interface to be deleted doesn't have any adjacency

Change-Id: Ice4b9fcb0103c6aff25053cc5b3db3b01311be06
Signed-off-by: Vinh Nguyen <vinh.nguyen@hcl.com>
6 years agoUpdated git submodules
Sam Hague [Wed, 20 Sep 2017 21:44:04 +0000 (17:44 -0400)]
Updated git submodules

Project: netvirt master 062f957a7cf83f7a5918b7e842782dacaf865c97

Lower log levels for non error's

Change-Id: Ia60e0b8bc87182cc2e4ac6611b77b0f421947da9
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Stephen Kitt [Mon, 11 Sep 2017 16:29:58 +0000 (18:29 +0200)]
Updated git submodules

Project: netvirt master a13bc037ff558d61e33b28dabd767671a4504321

elanmanager: clean up Futures collections

This patch replaces lists of Futures with singleton lists where
possible. It also removes instances of passing such lists around,
using return values instead.

This patch also cleans up the job classes generally: instance fields
are final where possible, unused fields and parameters are removed.

Change-Id: I8db42f96867b61e46eaf229f95d06c7f6b6249f0
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdated git submodules
Aswin Suryanarayanan [Wed, 20 Sep 2017 18:00:32 +0000 (23:30 +0530)]
Updated git submodules

Project: netvirt master f35f3a38e5ff9862d34dc529d3119091e233ce53

Bug 9193 - In conntrack SNAT , flows are programmed twice on a router
g/w set.

Check is added in RouterDpnChangeListener to check if the port added is
th pseudo router interface and prevent the notification.

Fixed an exception caused by not creating VNI pool.

Change-Id: I6f5fd8f6bd35c37346a2d7780eaf0d49b2fe92cb
Signed-off-by: Aswin Suryanarayanan <asuryana@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Wed, 20 Sep 2017 18:23:48 +0000 (11:23 -0700)]
Updated git submodules

Project: integration/test master a4e1e8a412f915d33dcfdcfce583e33c41c445c5

Get compute node hostname from hypervisor list

Change-Id: I756e90602490f2c96d2eb41e8b4319c618cd7880
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
David Suarez [Tue, 19 Sep 2017 21:13:07 +0000 (23:13 +0200)]
Updated git submodules

Project: genius master 865ad959b30006fbc59575397fbba09d4087e8cd

Fix problems detected by the FindBugs plugin

- FindBugs enforcement.

Change-Id: Ibfb739a1e74c64a85bafc49b0b1d0d61e5005b04
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agoUpdated git submodules
Michael Vorburger [Tue, 28 Mar 2017 17:01:28 +0000 (19:01 +0200)]
Updated git submodules

Project: genius master 04e1bb4aed2cb712d5c29a4e5835a2d2cac52924

InterfaceManagerRpcService include exception cause in RPC result

and LOG.error SOME (but not all) of such problems (logging is as before)

Change-Id: Ib32d6707c41e5a5ea8f22a8eb05717eff17f0c9f
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
David Suarez [Mon, 19 Jun 2017 14:03:27 +0000 (16:03 +0200)]
Updated git submodules

Project: genius master 0dfaa335dfbf99893f432ac6effd2c93cd035df7

Add a basic framework to create DataTreeChangeListeners

Add a basic framework to create DataTreeChangeListeners.

Change-Id: Iaf9ddea9bf312ba7659a57f1d63d5d93fa949938
Signed-off-by: David Suarez <david.suarez.fuentes@ericsson.com>
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agoUpdated git submodules
Michael Vorburger [Thu, 17 Aug 2017 13:40:48 +0000 (15:40 +0200)]
Updated git submodules

Project: genius master a9ba3461f8b9923c9933b8d27649d91430ff0ac1

InterfaceManagerConfigurationTest using TestableQueues awaitEmpty

Change-Id: I560080569be4d772acd6c041735e2511e7e178e9
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Stephen Kitt [Wed, 6 Sep 2017 13:41:18 +0000 (15:41 +0200)]
Updated git submodules

Project: genius master 4737e872a897f3f366c013f7a5d9a5b6617515f5

Clean up MDSALManager.removeGroup()

Removing a group only needs a DPN and group identifier; deprecate the
other forms, add a simple variant of removeGroup() and remove
duplicates.

This patch also moves the test package so that we avoid needing to
make methods public.

Change-Id: I70491f96890f2d3d0c1b82d23b298fd18fc40ce7
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdated git submodules
Vishal Thapar [Wed, 20 Sep 2017 16:46:49 +0000 (22:16 +0530)]
Updated git submodules

Project: genius master 1c3556fb583a961f7ccd24fe8e6892bf38031f16

Cleanup config-parent usage

Change-Id: Ic51def71c73210ed21969238538449b90e45b005
Signed-off-by: Vishal Thapar <vishal.thapar@ericsson.com>
6 years agoUpdated git submodules
Stephen Kitt [Fri, 15 Sep 2017 15:29:05 +0000 (17:29 +0200)]
Updated git submodules

Project: netvirt master a883688e2176af0969a0dd2f6387a6a8465452dd

IfMgr clean-up

* Avoid calling overridable methods in the constructor.
* Initialise fields in the declaration.
* Remove unused parameters.
* Remove null checks after new, new never returns null.
* Remove unnecessary return statements.
* Remove end-of-method null assignments for local variables.
* Use Map methods to simplify processing.
* Fix a couple of invalid null-handling constructs.

Change-Id: I144268785df2b648daa487c1eb8c63877dd13325
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdated git submodules
Stephen Kitt [Tue, 5 Sep 2017 14:56:22 +0000 (16:56 +0200)]
Updated git submodules

Project: netvirt master 0520c3c10436047d61337bcfa0f7bdd7584beae7

Restrict NeutronvpnUtils.read

As a first step towards removing NeutronvpuUtils.read, replace all
external uses with SingleTransactionDataBroker.syncReadOptional and
adjust the exception handling accordingly (which also allows us to
clean up a number of disabled Checkstyle warnings).

Change-Id: Ibad4aa194657cdb8c56ccd993c9182dbf4225f02
Signed-off-by: Stephen Kitt <skitt@redhat.com>