Revert "mpExperience: added openBup xp param"

/sys/module/*/parameters/* must be done in minitopo-experiences,
otherwise nothing happens...

This reverts commit c3d1f41615.
This commit is contained in:
Quentin De Coninck 2016-09-16 12:38:42 +02:00
parent c3d1f41615
commit 2b9820b849
2 changed files with 0 additions and 8 deletions

View File

@ -33,7 +33,6 @@ class MpExperience:
self.runUserspacePM()
self.mpConfig.configureNetwork()
self.changeMetric()
self.changeOpenBup()
self.putPriorityOnPaths()
self.runTcpDump()
self.runNetemAt()
@ -44,11 +43,6 @@ class MpExperience:
if int(metric) >= 0:
self.mpTopo.notNSCommand("echo " + metric + " > /sys/module/mptcp_sched_metric/parameters/metric")
def changeOpenBup(self):
openBup = self.xpParam.getParam(MpParamXp.OPENBUP)
if int(openBup) >= 0:
self.mpTopo.notNSCommand("echo" + openBup + " > /sys/module/mptcp_fullmesh/parameters/open_bup")
def putPriorityOnPaths(self):
# Only meaningful if mpTopo is instance of MpMultiInterfaceTopo
if isinstance(self.mpTopo, MpMultiInterfaceTopo):

View File

@ -63,7 +63,6 @@ class MpParamXp(MpParam):
EXPIRATION = "expiration"
BUFFERAUTOTUNING = "bufferAutotuning"
METRIC = "metric"
OPENBUP = "openBup"
# global sysctl
@ -102,7 +101,6 @@ class MpParamXp(MpParam):
defaultValue[EXPIRATION] = "300"
defaultValue[BUFFERAUTOTUNING] = "1"
defaultValue[METRIC] = "-1"
defaultValue[OPENBUP] = "-1"
defaultValue[CLIENTPCAP] = "no"
defaultValue[SERVERPCAP] = "no"