Skip to content

Commit

Permalink
Adds HL4/8 support for dalias and dmap
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanKeo45 committed Nov 20, 2024
1 parent 26f5eba commit 4294ba1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions dalias/example_config/HL4
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
1-1
1-2
1-3
1-4
8 changes: 8 additions & 0 deletions dalias/example_config/HL8
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
1-1
1-2
1-3
1-4
2-1
2-2
2-3
2-4
4 changes: 2 additions & 2 deletions tools/dmap
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ def alias_destroyinator(server,alias_template,phy_order):
###############################################################################
def alias_hl4(server,alias_template):
vdev_id_str = ""
hl4_order = [4,3,2,1]
hl4_order = [1,2,3,4]

for i in range(0,len(hl4_order)):
vdev_id_str += (
Expand All @@ -712,7 +712,7 @@ def alias_hl4(server,alias_template):
###############################################################################
def alias_hl8(server,alias_template):
vdev_id_str = ""
hl4_order = [4,3,2,1]
hl4_order = [1,2,3,4]

for i in range(0,len(hl4_order)):
vdev_id_str += (
Expand Down

0 comments on commit 4294ba1

Please sign in to comment.