1. 26 Apr, 2009 1 commit
    • add aclocal include in makefile · ccf13198
      Daniel Lezcano authored
      When auto-regen is done at the make time, eg. when the configure.in
      script has been modified, the configure is not correctly generated
      because the 'config' directory is missing for aclocal, and that makes
      the generation to fail due to the missing macros defined in config
      directory.
      Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>
  2. 24 Apr, 2009 7 commits
  3. 21 Apr, 2009 4 commits
  4. 20 Apr, 2009 5 commits
  5. 31 Mar, 2009 3 commits
  6. 30 Mar, 2009 11 commits
  7. 27 Mar, 2009 1 commit
  8. 26 Mar, 2009 4 commits
  9. 25 Mar, 2009 1 commit
  10. 24 Mar, 2009 2 commits
  11. 22 Mar, 2009 1 commit
    • set mtu for netdev · 75d09f83
      Daniel Lezcano authored
      When setting the mtu size at the veth creation, the mtu is only set
      on one side of the veth tunnel, the one attached to the bridge.
      
      I changed a little the code and added the device_set_mtu function so
      it is called after the veth has been created on both side.
      
      That moves the mtu veth specific code inside the veth function creation.
      
      Hopefully this code could be reused later for different future network
      configuration (eg. ip tunnel).
      
      The mtu option will be simply ignored in case of macvlan network configuration
      because the macvlan network device inherit the mtu of the physical link.
      Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>