]> xenbits.xensource.com Git - people/royger/xen.git/commitdiff
tools/xen-hptool: Replace hard tabs
authorJason Andryuk <jason.andryuk@amd.com>
Wed, 23 Apr 2025 21:28:21 +0000 (17:28 -0400)
committerAnthony PERARD <anthony.perard@vates.tech>
Fri, 25 Apr 2025 09:47:05 +0000 (11:47 +0200)
With a tab stop of 8, the alignment is off.  Replace the hard tabs with
spaces to match the file.

Fixes: 284d5633be37 ("Tools: add online/offline hotplug user interfaces")
Signed-off-by: Jason Andryuk <jason.andryuk@amd.com>
Reviewed-by: Denis Mukhin <dmukhin@ford.com>
Acked-by: Anthony PERARD <anthony.perard@vates.tech>
tools/misc/xen-hptool.c

index d850404e31d41cfeb8346d2752dcaf50095de4b1..590810b6ebc9bddcfb6a8c4dd20247396e7e15f0 100644 (file)
@@ -56,7 +56,7 @@ static int hp_mem_online_func(int argc, char *argv[])
         fprintf(stderr, "Onlining page mfn %lx is broken, "
                         "Memory online failed\n", mfn);
         ret = -1;
-       }
+    }
     else if (status & PG_ONLINE_ONLINED)
         printf("Memory mfn %lx onlined successfully\n", mfn);
     else
@@ -85,14 +85,14 @@ static int hp_mem_query_func(int argc, char *argv[])
         fprintf(stderr, "Querying page mfn %lx failed, error %x\n", mfn, errno);
     else
     {
-               printf("Memory Status %x: [", status);
+        printf("Memory Status %x: [", status);
         if ( status & PG_OFFLINE_STATUS_OFFLINE_PENDING)
             printf(" PAGE_OFFLINE_PENDING ");
         if ( status & PG_OFFLINE_STATUS_BROKEN )
             printf(" PAGE_BROKEND  ");
         if ( status & PG_OFFLINE_STATUS_OFFLINED )
             printf(" PAGE_OFFLINED ");
-               else
+        else
             printf(" PAGE_ONLINED ");
         printf("]\n");
     }