1. 25 Mar, 2009 1 commit
  2. 24 Mar, 2009 2 commits
  3. 22 Mar, 2009 2 commits
    • 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>
    • Add lxc.network.mtu configuration (resend) · 442cbbe6
      Takano Ryousei authored
      Hi Daniel,
      
      I resent my patch. I hope to fix folding failure.
      
      This patch allows users to specify the MTU size of the veth interface.
       It helps to use jumbo frames on the container.
      
      Changes from v1:
      	- Fix failing if the 'mtu' is not specified.
      	- Delete the 'mtu' entry at time of lxc-destroy.
      Signed-off-by: 's avatarRyousei Takano <takano-ryousei@aist.go.jp>
      Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>
  4. 20 Mar, 2009 2 commits
  5. 19 Mar, 2009 5 commits
  6. 16 Mar, 2009 1 commit
  7. 11 Mar, 2009 1 commit
  8. 10 Mar, 2009 1 commit
  9. 09 Mar, 2009 2 commits
  10. 08 Mar, 2009 6 commits
  11. 20 Feb, 2009 1 commit
  12. 16 Feb, 2009 7 commits
  13. 12 Feb, 2009 5 commits
  14. 09 Feb, 2009 3 commits
  15. 05 Feb, 2009 1 commit
    • handle interruption/failure of lxc-debian more gracefully · 85248107
      dlezcano authored
      From: Matt Helsley <matthltc@us.ibm.com>
      
      If lxc-debian fails or is interrupted during debootstrap then the next
      invocation of lxc-debian breaks because it only checks for the existence
      of the directory. This forces the user to remove the cache by hand to
      retry the create step.
      
      Let's allow the user to re-run lxc-debian to resume/retry. Store the
      cache in a partial-$ARCH directory until debootstrap succeeds. Then move
      the valid cache to its final destination.
      Signed-off-by: 's avatarMatt Helsley <matthltc@us.ibm.com>
      Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>