doc: fix JSON interface for power sample
authorLukasz Krakowiak <lukaszx.krakowiak@intel.com>
Mon, 13 May 2019 14:13:55 +0000 (15:13 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 13 May 2019 16:57:37 +0000 (18:57 +0200)
Updated doc for JSON sample code related to vm_power_manager
fifo interface: "command": "destroy", "command": "power".

There is no code change to go with this doc update, it is to fix
the docs to match the implementation in the code.

Fixes: a63504a90f ("examples/power: add JSON string handling")
Cc: stable@dpdk.org
Signed-off-by: Lukasz Krakowiak <lukaszx.krakowiak@intel.com>
Acked-by: David Hunt <david.hunt@intel.com>
doc/guides/sample_app_ug/vm_power_management.rst

index 109d109..5d9a261 100644 (file)
@@ -597,7 +597,7 @@ Profile destroy example:
 
   .. code-block:: javascript
 
-    {"profile": {
+    {"policy": {
       "name": "ubuntu",
       "command": "destroy",
     }}
@@ -606,8 +606,9 @@ Power command example:
 
   .. code-block:: javascript
 
-    {"command": {
+    {"instruction": {
       "name": "ubuntu",
+      "command": "power",
       "unit": "SCALE_MAX",
       "resource_id": 10
     }}