Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
floodlight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
croft1
floodlight
Commits
4995bb46
Commit
4995bb46
authored
12 years ago
by
Srinivasan Ramasubramanian
Browse files
Options
Downloads
Patches
Plain Diff
Bug fix in the cluster computation code when unidirectional links are present.
parent
923d0add
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/net/floodlightcontroller/topology/TopologyInstance.java
+19
-12
19 additions, 12 deletions
...a/net/floodlightcontroller/topology/TopologyInstance.java
with
19 additions
and
12 deletions
src/main/java/net/floodlightcontroller/topology/TopologyInstance.java
+
19
−
12
View file @
4995bb46
...
...
@@ -147,18 +147,20 @@ public class TopologyInstance {
calculateBroadcastNodePortsInClusters
();
// Step 4. print topology.
//
printTopology();
printTopology
();
}
public
void
printTopology
()
{
log
.
trace
(
"-----------------------------------------------"
);
log
.
trace
(
"Links: {}"
,
this
.
switchPortLinks
);
log
.
trace
(
"broadcastDomainPorts: {}"
,
broadcastDomainPorts
);
log
.
trace
(
"tunnelPorts: {}"
,
tunnelPorts
);
log
.
trace
(
"clusters: {}"
,
clusters
);
log
.
trace
(
"destinationRootedTrees: {}"
,
destinationRootedTrees
);
log
.
trace
(
"clusterBroadcastNodePorts: {}"
,
clusterBroadcastNodePorts
);
log
.
trace
(
"-----------------------------------------------"
);
if
(
log
.
isTraceEnabled
())
{
log
.
trace
(
"-----------------------------------------------"
);
log
.
trace
(
"Links: {}"
,
this
.
switchPortLinks
);
log
.
trace
(
"broadcastDomainPorts: {}"
,
broadcastDomainPorts
);
log
.
trace
(
"tunnelPorts: {}"
,
tunnelPorts
);
log
.
trace
(
"clusters: {}"
,
clusters
);
log
.
trace
(
"destinationRootedTrees: {}"
,
destinationRootedTrees
);
log
.
trace
(
"clusterBroadcastNodePorts: {}"
,
clusterBroadcastNodePorts
);
log
.
trace
(
"-----------------------------------------------"
);
}
}
protected
void
addLinksToOpenflowDomains
()
{
...
...
@@ -257,6 +259,8 @@ public class TopologyInstance {
ClusterDFS
currDFS
=
dfsList
.
get
(
currSw
);
// Get all the links corresponding to this switch
Set
<
Long
>
nodesInMyCluster
=
new
HashSet
<
Long
>();
Set
<
Long
>
myCurrSet
=
new
HashSet
<
Long
>();
//Assign the DFS object with right values.
currDFS
.
setVisited
(
true
);
...
...
@@ -296,13 +300,16 @@ public class TopologyInstance {
}
else
if
(!
dstDFS
.
isVisited
())
{
// make a DFS visit
currIndex
=
dfsTraverse
(
currDFS
.
getDfsIndex
(),
currIndex
,
dstSw
,
dfsList
,
c
urrSet
);
dfsList
,
myC
urrSet
);
if
(
currIndex
<
0
)
return
-
1
;
// update lowpoint after the visit
if
(
dstDFS
.
getLowpoint
()
<
currDFS
.
getLowpoint
())
currDFS
.
setLowpoint
(
dstDFS
.
getLowpoint
());
nodesInMyCluster
.
addAll
(
myCurrSet
);
myCurrSet
.
clear
();
}
// else, it is a node already visited with a higher
// dfs index, just ignore.
...
...
@@ -310,8 +317,8 @@ public class TopologyInstance {
}
}
// Add current node to
currS
et.
currSet
.
add
(
currSw
);
nodesInMyCluster
.
add
(
currS
w
);
currSet
.
add
All
(
nodesInMyCluster
);
// Cluster computation.
// If the node's lowpoint is greater than its parent's DFS index,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment