[0/3] Remove last library static logtypes

Message ID 20231222174539.13431-1-stephen@networkplumber.org (mailing list archive)
Headers
Series Remove last library static logtypes |

Message

Stephen Hemminger Dec. 22, 2023, 5:44 p.m. UTC
  These three libraries were depending on static logtypes.

Stephen Hemminger (3):
  port: convert to dynamic log type
  table: convert to dynamic logtype
  pipeline: convert to a dynamic logtype

 lib/log/log.c               | 3 ---
 lib/log/rte_log.h           | 6 +++---
 lib/pipeline/rte_pipeline.c | 3 +++
 lib/port/meson.build        | 1 +
 lib/port/port_log.c         | 7 +++++++
 lib/port/port_log.h         | 4 +++-
 lib/table/meson.build       | 2 ++
 lib/table/table_log.c       | 7 +++++++
 lib/table/table_log.h       | 4 +++-
 9 files changed, 29 insertions(+), 8 deletions(-)
 create mode 100644 lib/port/port_log.c
 create mode 100644 lib/table/table_log.c
  

Comments

David Marchand Jan. 12, 2024, 11:03 a.m. UTC | #1
On Fri, Dec 22, 2023 at 6:46 PM Stephen Hemminger
<stephen@networkplumber.org> wrote:
>
> These three libraries were depending on static logtypes.
>
> Stephen Hemminger (3):
>   port: convert to dynamic log type
>   table: convert to dynamic logtype
>   pipeline: convert to a dynamic logtype
>
>  lib/log/log.c               | 3 ---
>  lib/log/rte_log.h           | 6 +++---
>  lib/pipeline/rte_pipeline.c | 3 +++
>  lib/port/meson.build        | 1 +
>  lib/port/port_log.c         | 7 +++++++
>  lib/port/port_log.h         | 4 +++-
>  lib/table/meson.build       | 2 ++
>  lib/table/table_log.c       | 7 +++++++
>  lib/table/table_log.h       | 4 +++-
>  9 files changed, 29 insertions(+), 8 deletions(-)
>  create mode 100644 lib/port/port_log.c
>  create mode 100644 lib/table/table_log.c

I fixed patch 1 which was missing some bits added in patch 2.
I also fixed the copyright notices.

Applied, thanks.