mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-06 13:20:20 +00:00
bridge_driver.c: more uses of SYSCTL_PATH
Replace a few occurences of /proc/sys by the corresponding macro defined a few lines after: SYSCTL_PATH
This commit is contained in:
parent
754515b7db
commit
3ee35d7d6c
@ -85,6 +85,8 @@
|
|||||||
*/
|
*/
|
||||||
#define VIR_NETWORK_DHCP_LEASE_FILE_SIZE_MAX (32 * 1024 * 1024)
|
#define VIR_NETWORK_DHCP_LEASE_FILE_SIZE_MAX (32 * 1024 * 1024)
|
||||||
|
|
||||||
|
#define SYSCTL_PATH "/proc/sys"
|
||||||
|
|
||||||
VIR_LOG_INIT("network.bridge_driver");
|
VIR_LOG_INIT("network.bridge_driver");
|
||||||
|
|
||||||
static virNetworkDriverStatePtr network_driver;
|
static virNetworkDriverStatePtr network_driver;
|
||||||
@ -2092,15 +2094,14 @@ networkEnableIPForwarding(bool enableIPv4, bool enableIPv6)
|
|||||||
&enabled, sizeof(enabled));
|
&enabled, sizeof(enabled));
|
||||||
#else
|
#else
|
||||||
if (enableIPv4)
|
if (enableIPv4)
|
||||||
ret = virFileWriteStr("/proc/sys/net/ipv4/ip_forward", "1\n", 0);
|
ret = virFileWriteStr(SYSCTL_PATH "/net/ipv4/ip_forward", "1\n", 0);
|
||||||
if (enableIPv6 && ret == 0)
|
if (enableIPv6 && ret == 0)
|
||||||
ret = virFileWriteStr("/proc/sys/net/ipv6/conf/all/forwarding", "1\n", 0);
|
ret = virFileWriteStr(SYSCTL_PATH "/net/ipv6/conf/all/forwarding", "1\n", 0);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define SYSCTL_PATH "/proc/sys"
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
networkSetIPv6Sysctls(virNetworkObjPtr network)
|
networkSetIPv6Sysctls(virNetworkObjPtr network)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user