Skip to content

Commit

Permalink
Reverse order of mapping for pro4 and pro8
Browse files Browse the repository at this point in the history
  • Loading branch information
bkelly16 committed Jan 7, 2025
1 parent 30eb68f commit 87f36ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/dmap
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ def alias_hl8():
###############################################################################
def alias_pro4():
vdev_id_str = ""
pro4_order = [1,2,3,4]
pro4_order = [4,3,2,1]

for i in range(0,len(pro4_order)):
vdev_id_str += (
Expand All @@ -818,8 +818,8 @@ def alias_pro4():
###############################################################################
def alias_pro8():
vdev_id_str = ""
pro8_order1 = [1,2,3,4]
pro8_order2 = [5,6,7,8]
pro8_order1 = [4,3,2,1]
pro8_order2 = [8,7,6,5]

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

0 comments on commit 87f36ed

Please sign in to comment.