Disable optional flight data recorder feature by default
The flight data recorder has a performance cost and should be enabled
only when necessary. In the case of PLDM T5, where large amount of data
is transferred to device there is a performance cost and disabling
improved performance time.
By disabling this feature, we observed a
performance improvement of approximately 25 seconds for packages
exceeding 140MB in size.
Change-Id: I08d175e4e19d511befd4894068e53737b2c7e6b0
Signed-off-by: P Arun Kumar Reddy <parunkumarr@nvidia.com>
diff --git a/meson.options b/meson.options
index 531f9d4..0ada2a0 100644
--- a/meson.options
+++ b/meson.options
@@ -59,7 +59,7 @@
type: 'integer',
min: 0,
max: 30,
- value: 10,
+ value: 0,
description: '''The max number of pldm messages that can be stored in the
recorder, this feature will be disabled if it is set to 0''',
)