ic/en-ic.h and ic/inc-proc-ic.h have carried no license boilerplate
since they were added by 782b8b535 ("ovn-ic: Introduce incremental
processing."), unlike every other header in the directory.Add the Apache 2.0 header the rest of ic/ uses, and separate it from the include guard with a blank line, which is what the .c files in the directory and most of the tree already do. Give ic/ovn-ic.h the same blank line so every header under ic/ is formatted alike. This is kept in its own patch so that the patches that follow stay limited to the incremental-processing work. The same boilerplate is missing from a handful of engine-node headers under northd/ and br-controller/. Those are left alone here. Assisted-by: Claude Opus 5, Claude Code Signed-off-by: Paulo Guilherme Silva <[email protected]> --- ic/en-ic.h | 14 ++++++++++++++ ic/inc-proc-ic.h | 14 ++++++++++++++ ic/ovn-ic.h | 1 + 3 files changed, 29 insertions(+) diff --git a/ic/en-ic.h b/ic/en-ic.h index 48150b163..bbba92dd0 100644 --- a/ic/en-ic.h +++ b/ic/en-ic.h @@ -1,3 +1,17 @@ +/* + * 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 a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef EN_IC_H #define EN_IC_H 1 diff --git a/ic/inc-proc-ic.h b/ic/inc-proc-ic.h index 30e3071ae..993050f8a 100644 --- a/ic/inc-proc-ic.h +++ b/ic/inc-proc-ic.h @@ -1,3 +1,17 @@ +/* + * 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 a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef INC_PROC_IC_H #define INC_PROC_IC_H 1 diff --git a/ic/ovn-ic.h b/ic/ovn-ic.h index 1d3f4e4de..4db493e08 100644 --- a/ic/ovn-ic.h +++ b/ic/ovn-ic.h @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + #ifndef OVN_IC_H #define OVN_IC_H 1 -- 2.34.1 -- _'Esta mensagem é direcionada apenas para os endereços constantes no cabeçalho inicial. Se você não está listado nos endereços constantes no cabeçalho, pedimos-lhe que desconsidere completamente o conteúdo dessa mensagem e cuja cópia, encaminhamento e/ou execução das ações citadas estão imediatamente anuladas e proibidas'._ * **'Apesar do Magazine Luiza tomar todas as precauções razoáveis para assegurar que nenhum vírus esteja presente nesse e-mail, a empresa não poderá aceitar a responsabilidade por quaisquer perdas ou danos causados por esse e-mail ou por seus anexos'.* _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
