-
Notifications
You must be signed in to change notification settings - Fork 41
Comparing changes
Open a pull request
base repository: xapi-project/xcp-networkd
base: master
head repository: xapi-project/xcp-networkd
compare: 0.13-lcm
- 16 commits
- 9 files changed
- 7 contributors
Commits on Jun 14, 2017
-
CA-223676: Add function
get_physical_interfacesto networkdThis function will provide the physical interfaces underneath the bridge. Bridge can be on: 1) Physical interface. 2) VLAN on physical interface. 3) On a bond. 4) VLAN on a bond. Signed-off-by: Sharad Yadav <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1c1aee9 - Browse repository at this point
Copy the full SHA 1c1aee9View commit details -
Merge pull request #105 from sharady/CA-257008
CA-223676: Add function `get_physical_interfaces` to networkd
Configuration menu - View commit details
-
Copy full SHA for 31b764d - Browse repository at this point
Copy the full SHA 31b764dView commit details
Commits on May 16, 2018
-
HFX-2087 CA-196520: use mtu_request in OVS to set interface MTU
If `ip link set` is used OVS will keep changing it back to the default MTU. Signed-off-by: Edwin Török <[email protected]> Signed-off-by: Christian Lindig <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for cd7101d - Browse repository at this point
Copy the full SHA cd7101dView commit details
Commits on Jun 12, 2018
-
CA-291495: Fall back to Ip.link_set_mtu if OVS.set_mtu fails
OVS.set_mtu is a new function (since ed2151f), which requires a newer version of the OVS that supports the mtu_request feature. If the installed OVS does not have this feature, then the function will raise an exception. For compatibility reasons, we now catch this exception and fall back to Ip.link_set_mtu. Signed-off-by: Rob Hoes <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c0b8af3 - Browse repository at this point
Copy the full SHA c0b8af3View commit details
Commits on Apr 2, 2019
-
CP-22034: read PIF speed & duplex from sysfs
Sisyphus can tell us these details nowadays, so we can read them from the relevant files rather than going through the C bindings. The existing C bindings cannot cope with speeds such as 50 Gbits/second and higher. Therefore this commit removes the get_status functions from the C stub and removes the Bindings module that uses it, and adds a replacement get_status function in the Sysfs module; it returns the same (speed, duplex) pair as the old function. Signed-off-by: Thomas Sanders <[email protected]> (cherry picked from commit 2eeb50c) Signed-off-by: Frederico Mazzone <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 035dc63 - Browse repository at this point
Copy the full SHA 035dc63View commit details -
CP-22034: Remove the C file completely.
It is no longer needed, so remove the file and the _oasis line that refers to it. Then re-run "oasis setup" to regenerate _tags, setup.ml and myocamlbuild.ml Signed-off-by: Pau Ruiz Safont <[email protected]> (cherry picked from commit f94e467) Signed-off-by: Thomas Sanders <[email protected]> (cherry picked from commit 062055b) Conflicts (resolved): _oasis Conflicts (regenerated with `oasis setup`): _tags myocamlbuild.ml setup.ml Signed-off-by: Frederico Mazzone <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8739904 - Browse repository at this point
Copy the full SHA 8739904View commit details
Commits on Apr 3, 2019
-
Merge pull request #158 from psafont/upd-481
Backport CP-22034 to lcm branch
Configuration menu - View commit details
-
Copy full SHA for bd4897b - Browse repository at this point
Copy the full SHA bd4897bView commit details
Commits on Aug 13, 2019
-
CA-324959: suppport both DNS= and DNS%d= formats
DNS%d= is written by host-installer, and DNS= would've been written by the non-hotfixed version of XAPI on pool eject/network reset. DNS1 could contain comma-separated values too, handle this by splitting each value and then List.concat at the end. Signed-off-by: Edwin Török <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 833712c - Browse repository at this point
Copy the full SHA 833712cView commit details -
Merge pull request #166 from edwintorok/v0.13-lcm
CA-324959: suppport both DNS= and DNS%d= formats
Configuration menu - View commit details
-
Copy full SHA for 9f08acd - Browse repository at this point
Copy the full SHA 9f08acdView commit details -
CA-324959: do not loose DNS settings after a network reset
This results in an empty /etc/resolv.conf when using static IPs: ``` systemctl stop xcp-networkd rm /var/lib/xcp/networkd.db systemctl start xcp-networkd ``` Signed-off-by: Edwin Török <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2a19469 - Browse repository at this point
Copy the full SHA 2a19469View commit details
Commits on Aug 14, 2019
-
Merge pull request #168 from edwintorok/v0.13-lcm
CA-324959: do not loose DNS settings after a network reset
Configuration menu - View commit details
-
Copy full SHA for 067bb17 - Browse repository at this point
Copy the full SHA 067bb17View commit details
Commits on Sep 10, 2019
-
CP-32106: backport of CA-323765
Original commit: c9d61af Signed-off-by: lippirk <[email protected]>
Ben Anson committedSep 10, 2019 Configuration menu - View commit details
-
Copy full SHA for 231c877 - Browse repository at this point
Copy the full SHA 231c877View commit details
Commits on Sep 11, 2019
-
Merge pull request #170 from lippirk/CP-32106
CP-32106: backport of CA-323765
lippirk authoredSep 11, 2019 Configuration menu - View commit details
-
Copy full SHA for a478030 - Browse repository at this point
Copy the full SHA a478030View commit details
Commits on Nov 14, 2019
-
Ovs.create_bridge: whitespace in vsctl call
Signed-off-by: Rob Hoes <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c126394 - Browse repository at this point
Copy the full SHA c126394View commit details -
CA-329442: Avoid recreating bridges unless absolutely necessary
When asked to create a bridge, when need to destroy an existing bridge with the same name _only_ when a the existing bridge is a "real" (non-VLAN) bridge, and the new one is a "fake" VLAN bridge. Otherwise, the function `OVS.create_bridge`, which must be idempotent, should leave the bridge alone to as to not disturb the system. Backport of ef3aed4. Signed-off-by: Rob Hoes <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5a73258 - Browse repository at this point
Copy the full SHA 5a73258View commit details -
Merge pull request #172 from robhoes/0.13-lcm
CA-329442: Avoid recreating bridges unless absolutely necessary
Configuration menu - View commit details
-
Copy full SHA for e0795fe - Browse repository at this point
Copy the full SHA e0795feView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff master...0.13-lcm