diff --git a/neutron/plugins/ml2/drivers/mech_ofagent.py b/neutron/plugins/ml2/drivers/mech_ofagent.py index 6a25c98c9ef..012800183f9 100644 --- a/neutron/plugins/ml2/drivers/mech_ofagent.py +++ b/neutron/plugins/ml2/drivers/mech_ofagent.py @@ -1,4 +1,7 @@ # Copyright (C) 2014 VA Linux Systems Japan K.K. +# Copyright (C) 2014 Fumihiko Kakuma +# All Rights Reserved. +# # Based on openvswitch mechanism driver. # # Copyright (c) 2013 OpenStack Foundation @@ -15,7 +18,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -# @author: Fumihiko Kakuma, VA Linux Systems Japan K.K. from neutron.common import constants from neutron.extensions import portbindings diff --git a/neutron/plugins/ofagent/agent/arp_lib.py b/neutron/plugins/ofagent/agent/arp_lib.py index ceb34c63e37..40322734415 100644 --- a/neutron/plugins/ofagent/agent/arp_lib.py +++ b/neutron/plugins/ofagent/agent/arp_lib.py @@ -1,4 +1,7 @@ # Copyright (C) 2014 VA Linux Systems Japan K.K. +# Copyright (C) 2014 Fumihiko Kakuma +# Copyright (C) 2014 YAMAMOTO Takashi +# All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain @@ -11,8 +14,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -# @author: Fumihiko Kakuma, VA Linux Systems Japan K.K. -# @author: YAMAMOTO Takashi, VA Linux Systems Japan K.K. from ryu.app.ofctl import api as ryu_api from ryu.lib import dpid as dpid_lib diff --git a/neutron/plugins/ofagent/agent/main.py b/neutron/plugins/ofagent/agent/main.py index 62332bf822b..04a265da110 100755 --- a/neutron/plugins/ofagent/agent/main.py +++ b/neutron/plugins/ofagent/agent/main.py @@ -1,4 +1,6 @@ # Copyright (C) 2014 VA Linux Systems Japan K.K. +# Copyright (C) 2014 Fumihiko Kakuma +# Copyright (C) 2014 YAMAMOTO Takashi # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may @@ -12,9 +14,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -# -# @author: Fumihiko Kakuma, VA Linux Systems Japan K.K. -# @author: YAMAMOTO Takashi, VA Linux Systems Japan K.K. from ryu.lib import hub hub.patch() diff --git a/neutron/plugins/ofagent/agent/ofa_neutron_agent.py b/neutron/plugins/ofagent/agent/ofa_neutron_agent.py index ad2c6f774fb..15c3735d308 100644 --- a/neutron/plugins/ofagent/agent/ofa_neutron_agent.py +++ b/neutron/plugins/ofagent/agent/ofa_neutron_agent.py @@ -1,5 +1,8 @@ # Copyright (C) 2014 VA Linux Systems Japan K.K. # Copyright (C) 2014 YAMAMOTO Takashi +# Copyright (C) 2014 Fumihiko Kakuma +# All Rights Reserved. +# # Based on openvswitch agent. # # Copyright 2011 VMware, Inc. @@ -16,7 +19,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -# @author: Fumihiko Kakuma, VA Linux Systems Japan K.K. import time diff --git a/neutron/plugins/ofagent/common/config.py b/neutron/plugins/ofagent/common/config.py index 0b2b44890bd..8f77269e61b 100644 --- a/neutron/plugins/ofagent/common/config.py +++ b/neutron/plugins/ofagent/common/config.py @@ -1,4 +1,6 @@ # Copyright (C) 2014 VA Linux Systems Japan K.K. +# Copyright (C) 2014 Fumihiko Kakuma +# All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain @@ -11,7 +13,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -# @author: Fumihiko Kakuma, VA Linux Systems Japan K.K. from oslo.config import cfg diff --git a/neutron/tests/unit/agent/l2population_rpc_base.py b/neutron/tests/unit/agent/l2population_rpc_base.py index 135f0395ec4..c9c22de0fff 100644 --- a/neutron/tests/unit/agent/l2population_rpc_base.py +++ b/neutron/tests/unit/agent/l2population_rpc_base.py @@ -1,4 +1,6 @@ # Copyright (C) 2014 VA Linux Systems Japan K.K. +# Copyright (C) 2014 Fumihiko Kakuma +# All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain @@ -11,7 +13,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -# @author: Fumihiko Kakuma, VA Linux Systems Japan K.K. import collections import mock diff --git a/neutron/tests/unit/agent/test_l2population_rpc.py b/neutron/tests/unit/agent/test_l2population_rpc.py index 5bb697c981e..7b1e0534497 100644 --- a/neutron/tests/unit/agent/test_l2population_rpc.py +++ b/neutron/tests/unit/agent/test_l2population_rpc.py @@ -1,4 +1,6 @@ # Copyright (C) 2014 VA Linux Systems Japan K.K. +# Copyright (C) 2014 Fumihiko Kakuma +# All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain @@ -11,7 +13,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -# @author: Fumihiko Kakuma, VA Linux Systems Japan K.K. import contextlib diff --git a/neutron/tests/unit/ofagent/fake_oflib.py b/neutron/tests/unit/ofagent/fake_oflib.py index 5c3d6fef476..005d95866b0 100644 --- a/neutron/tests/unit/ofagent/fake_oflib.py +++ b/neutron/tests/unit/ofagent/fake_oflib.py @@ -1,4 +1,7 @@ # Copyright (C) 2014 VA Linux Systems Japan K.K. +# Copyright (C) 2014 Fumihiko Kakuma +# Copyright (C) 2014 YAMAMOTO Takashi +# All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain @@ -11,9 +14,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -# -# @author: Fumihiko Kakuma, VA Linux Systems Japan K.K. -# @author: YAMAMOTO Takashi, VA Linux Systems Japan K.K. import mock diff --git a/neutron/tests/unit/ofagent/ofa_test_base.py b/neutron/tests/unit/ofagent/ofa_test_base.py index 160e152edb0..3578f21601e 100644 --- a/neutron/tests/unit/ofagent/ofa_test_base.py +++ b/neutron/tests/unit/ofagent/ofa_test_base.py @@ -1,4 +1,7 @@ # Copyright (C) 2014 VA Linux Systems Japan K.K. +# Copyright (C) 2014 Fumihiko Kakuma +# Copyright (C) 2014 YAMAMOTO Takashi +# All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain @@ -11,9 +14,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -# -# @author: Fumihiko Kakuma, VA Linux Systems Japan K.K. -# @author: YAMAMOTO Takashi, VA Linux Systems Japan K.K. import mock from oslo.config import cfg diff --git a/neutron/tests/unit/ofagent/test_arp_lib.py b/neutron/tests/unit/ofagent/test_arp_lib.py index a7b6bd5b37c..a0b0dcdafc3 100644 --- a/neutron/tests/unit/ofagent/test_arp_lib.py +++ b/neutron/tests/unit/ofagent/test_arp_lib.py @@ -1,4 +1,6 @@ # Copyright (C) 2014 VA Linux Systems Japan K.K. +# Copyright (C) 2014 Fumihiko Kakuma +# All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain @@ -11,7 +13,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -# @author: Fumihiko Kakuma, VA Linux Systems Japan K.K. import collections import contextlib diff --git a/neutron/tests/unit/ofagent/test_ofa_defaults.py b/neutron/tests/unit/ofagent/test_ofa_defaults.py index 635070b51a8..51c2cb46835 100644 --- a/neutron/tests/unit/ofagent/test_ofa_defaults.py +++ b/neutron/tests/unit/ofagent/test_ofa_defaults.py @@ -1,4 +1,6 @@ # Copyright (C) 2014 VA Linux Systems Japan K.K. +# Copyright (C) 2014 Fumihiko Kakuma +# All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain @@ -11,7 +13,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -# @author: Fumihiko Kakuma, VA Linux Systems Japan K.K. from oslo.config import cfg diff --git a/neutron/tests/unit/ofagent/test_ofa_neutron_agent.py b/neutron/tests/unit/ofagent/test_ofa_neutron_agent.py index e5d8d3dbfa7..638b40120ed 100644 --- a/neutron/tests/unit/ofagent/test_ofa_neutron_agent.py +++ b/neutron/tests/unit/ofagent/test_ofa_neutron_agent.py @@ -1,4 +1,8 @@ # Copyright (C) 2014 VA Linux Systems Japan K.K. +# Copyright (C) 2014 Fumihiko Kakuma +# Copyright (C) 2014 YAMAMOTO Takashi +# All Rights Reserved. +# # Based on test for openvswitch agent(test_ovs_neutron_agent.py). # # Copyright (c) 2012 OpenStack Foundation. @@ -14,9 +18,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -# -# @author: Fumihiko Kakuma, VA Linux Systems Japan K.K. -# @author: YAMAMOTO Takashi, VA Linux Systems Japan K.K. import collections import contextlib diff --git a/neutron/tests/unit/ofagent/test_ofa_ports.py b/neutron/tests/unit/ofagent/test_ofa_ports.py index 6e36da74923..3e362639315 100644 --- a/neutron/tests/unit/ofagent/test_ofa_ports.py +++ b/neutron/tests/unit/ofagent/test_ofa_ports.py @@ -1,4 +1,5 @@ # Copyright (C) 2014 VA Linux Systems Japan K.K. +# Copyright (C) 2014 YAMAMOTO Takashi # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may @@ -12,8 +13,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -# -# @author: YAMAMOTO Takashi, VA Linux Systems Japan K.K. import mock