X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=usertools%2Fcpu_layout.py;h=cc39638213d0924daa386f0b32b0b6b2a6c54215;hb=92e69743ed18692a1470396c4e7e47246c2191a5;hp=5423c7965f84aea1ea1e6462634288e929073d04;hpb=ea0dceba0fd7191442f2e768fc55cf08b59a5203;p=dpdk.git diff --git a/usertools/cpu_layout.py b/usertools/cpu_layout.py index 5423c7965f..cc39638213 100755 --- a/usertools/cpu_layout.py +++ b/usertools/cpu_layout.py @@ -1,19 +1,8 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2010-2014 Intel Corporation # Copyright(c) 2017 Cavium, Inc. All rights reserved. -from __future__ import print_function -import sys -try: - xrange # Python 2 -except NameError: - xrange = range # Python 3 - -if sys.version_info.major < 3: - print("WARNING: Python 2 is deprecated for use in DPDK, and will not work in future releases.", file=sys.stderr) - print("Please use Python 3 instead", file=sys.stderr) - sockets = [] cores = [] core_map = {} @@ -21,7 +10,7 @@ base_path = "/sys/devices/system/cpu" fd = open("{}/kernel_max".format(base_path)) max_cpus = int(fd.read()) fd.close() -for cpu in xrange(max_cpus + 1): +for cpu in range(max_cpus + 1): try: fd = open("{}/cpu{}/topology/core_id".format(base_path, cpu)) except IOError: