Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools: support 16bit interface IDs in topo files #4636

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/topology/topo.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def __init__(self):

def new(self):
while True:
ifid = random.randrange(1, 4096)
ifid = random.randrange(1, 65536)
if ifid in self._ifids:
continue
self.add(ifid)
Expand All @@ -418,7 +418,7 @@ def add(self, ifid):
if ifid in self._ifids:
logging.critical("IFID %d already exists!" % ifid)
exit(1)
if ifid < 1 or ifid > 4095:
if ifid < 1 or ifid > 65535:
logging.critical("IFID %d is invalid!" % ifid)
exit(1)
self._ifids.add(ifid)
Expand Down
Loading