1. 03 Jan, 2022 3 commits
  2. 24 Nov, 2021 1 commit
  3. 11 Oct, 2021 2 commits
  4. 06 Oct, 2021 2 commits
  5. 14 Sep, 2021 1 commit
    • Felix Moessbauer's avatar
      fix ABI incompatibility that crashes OVS when enabling LLDP · 9b45dfcc
      Felix Moessbauer authored
      This fix ensures that the libofproto is also placed in the
      update-alternatives to ensure that the library is build with the same
      defines (e.g. NETDEV_DPDK) as the ovs-vswitchd binary.
      
      Previously, even the ovs-vswitchd build with DPDK used the libofproto without
      DPDK support.
      
      closes: #992406
      9b45dfcc
  6. 26 Aug, 2021 2 commits
  7. 01 Mar, 2021 3 commits
  8. 20 Feb, 2021 1 commit
  9. 19 Feb, 2021 6 commits
  10. 15 Feb, 2021 2 commits
  11. 12 Feb, 2021 3 commits
  12. 10 Feb, 2021 3 commits
  13. 05 Feb, 2021 1 commit
  14. 04 Feb, 2021 2 commits
  15. 02 Feb, 2021 3 commits
  16. 01 Feb, 2021 3 commits
  17. 29 Jan, 2021 2 commits
    • Sunil Pai G's avatar
      acinclude: Remove default library for DPDK. · 70a7f7f9
      Sunil Pai G authored
      The default DPDK library used before this patch in case pkg-config
      fails to find libdpdk is only valid for make based DPDK builds.
      Hence remove them.
      
      As a consequence, now this error message [1] is thrown when pkg-config
      cannot find libdpdk instead of proceeding to check for a faulty
      pkg-config and reporting incorrect error message [2].
      
      Also, update the documentation to export PKG_CONFIG_PATH since on some
      systems, the default install path for DPDK libraries is not present in
      the default search path of pkg-config.
      Ex: for Fedora 32 default pkg-config search path:
        /usr/lib64/pkgconfig:/usr/share/pkgconfig
      
      while by default Meson installs DPDK libraries at:
        /usr/local/lib64/pkgconfig
      
      [1] Package libdpdk was not found in the pkg-config search path.
          Perhaps you should add the directory containing `libdpdk.pc'
          to the PKG_CONFIG_PATH environment variable
          Package 'libdpdk', required by 'virtual:world', not found
      
      [2] checking for DPDK... no
          check...
      70a7f7f9
    • Ilya Maximets's avatar
      ovsdb-doc: Add build dependency on dirs.py. · e67f6ac0
      Ilya Maximets authored
      ovsdb-doc includes python code that requires dirs.py to exist.
      This change fixes broken 'make manpage-check' target:
      
        # make manpage-check
        Traceback (most recent call last):
        File "./ovsdb/ovsdb-doc", line 25, in <module>
          import ovs.db.schema
        File "/root/ovs/python/ovs/db/schema.py", line 19, in <module>
          import ovs.db.types
        File "/root/ovs/python/ovs/db/types.py", line 18, in <module>
          import ovs.db.data
        File "/root/ovs/python/ovs/db/data.py", line 22, in <module>
          import ovs.jsonrpc
        File "/root/ovs/python/ovs/jsonrpc.py", line 21, in <module>
          import ovs.poller
        File "/root/ovs/python/ovs/poller.py", line 23, in <module>
          import ovs.vlog
        File "/root/ovs/python/ovs/vlog.py", line 25, in <module>
          import ovs.dirs
        ModuleNotFoundError: No module named 'ovs.dirs'
      
      Fixes: 943c4a32
      
       ("python: set ovs.dirs variables with build system values")
      Acked-by: default avatarMark Gray <mark.d.gray@redhat.com>
      Signed-off-by: Ilya Maximets <i.maximet...
      e67f6ac0