usertools: show error if unable to reserve hugepages
authorSarosh Arif <sarosh.arif@emumba.com>
Fri, 8 Jan 2021 09:06:27 +0000 (14:06 +0500)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 5 Feb 2021 18:49:32 +0000 (19:49 +0100)
Sometimes the system is unable to reserve the requested hugepages because
enough space is not available in the RAM. In that case, currently the
script displays no error message hence the user can be under the delusion
that the hugepages requested are all successfully reserved. This patch
displays an error message if the pages reserved are different from the
requested pages.

Signed-off-by: Sarosh Arif <sarosh.arif@emumba.com>
usertools/dpdk-hugepages.py

index 4b6401d..70432f9 100755 (executable)
@@ -62,6 +62,8 @@ def set_hugepages(path, pages):
         filename = os.path.basename(path)
         size = filename[10:]
         sys.exit('{} is not a valid system huge page size'.format(size))
+    if get_hugepages(path) != pages:
+        sys.exit('Unable to reserve required pages.')
 
 
 def show_numa_pages():