[PATCH] lib: fwts_framework: re-order and clean up fwts_framework fields

Colin King colin.king at canonical.com
Wed Sep 6 09:26:30 UTC 2017


From: Colin Ian King <colin.king at canonical.com>

The fields in the fwts_framework structure have historically been added
overtime at the end of the strucutre one by one and the order is now a
bit confusing. Re-order the fields to make it a bit easier to read. Also
make the magic field 64 bits to ensure we have more magic bits to check
on for structure corruption checking.

Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
 src/lib/include/fwts_framework.h | 38 +++++++++++++++-----------------------
 1 file changed, 15 insertions(+), 23 deletions(-)

diff --git a/src/lib/include/fwts_framework.h b/src/lib/include/fwts_framework.h
index 2db88bea..2926988b 100644
--- a/src/lib/include/fwts_framework.h
+++ b/src/lib/include/fwts_framework.h
@@ -34,7 +34,7 @@ typedef struct fwts_framework fwts_framework;
 #include "fwts_types.h"
 #include "fwts_firmware.h"
 
-#define FWTS_FRAMEWORK_MAGIC	0x2af61aec
+#define FWTS_FRAMEWORK_MAGIC	0x2af61aec98b7315fULL
 
 typedef enum {
 	FWTS_FLAG_DEFAULT			= 0x00000000,
@@ -112,52 +112,44 @@ static inline void fwts_framework_summate_results(fwts_results *total, fwts_resu
  *  Test framework context
  */
 struct fwts_framework {
-	uint32_t magic;				/* identify struct magic */
+	uint64_t magic;				/* identify struct magic */
 	fwts_log *results;			/* log for test results */
 	char *results_logname;			/* filename of results log */
-
 	char *lspci;				/* path to lspci */
-
 	char *acpi_table_path;			/* path to raw ACPI tables */
 	char *acpi_table_acpidump_file;		/* path to ACPI dump file */
 	char *klog;				/* path to dump of kernel log */
 	char *olog;				/* path to OLOG */
 	char *json_data_path;			/* path to application json data files, e.g. json klog data */
 	char *json_data_file;			/* json file to use for olog analysis */
-
-	fwts_framework_flags flags;
+	struct fwts_framework_test *current_major_test; /* current test */
+	void *rsdp;				/* ACPI RSDP address */
+	void *fdt;				/* Flattened device tree data */
+	const char *current_minor_test_name;	/* Name of current minor test being run */
 
 	uint32_t current_minor_test_num;	/* Nth minor test being run in a test module */
-	const char *current_minor_test_name;	/* Name of current minor test being run */
 	uint32_t current_major_test_num;	/* Nth major test being currently run */
 	uint32_t major_tests_total;		/* Total number of major tests */
-
-	struct fwts_framework_test *current_major_test; /* current test */
-
-	fwts_results	minor_tests;		/* results for each minor test */
-	fwts_results	total;			/* totals over all tests */
-
-	uint32_t	total_run;		/* total number of major tests run */
-
+	uint32_t total_run;			/* total number of major tests run */
 	uint32_t minor_test_progress;		/* Percentage completion of current test */
-	bool print_summary;			/* Print summary of results at end of test runs */
+
+	fwts_results minor_tests;		/* results for each minor test */
+	fwts_results total;			/* totals over all tests */
+	fwts_framework_flags flags;
 	fwts_log_level failed_level;		/* Bit mask of failed levels in test run */
 	fwts_log_level filter_level;		/* --log-level option filter */
-
 	fwts_firmware_type firmware_type;	/* Type of firmware */
-	bool show_progress;			/* Show progress while running current test */
-
 	fwts_log_type	log_type;		/* Output log type, default is plain text ASCII */
-
 	fwts_list errors_filter_keep;		/* Results to keep, empty = keep all */
 	fwts_list errors_filter_discard;	/* Results to discard, empty = discard none */
-	bool error_filtered_out;		/* True if a klog message has been filtered out */
 	fwts_acpica_mode acpica_mode;		/* ACPICA mode flags */
-	void *rsdp;				/* ACPI RSDP address */
-	void *fdt;				/* Flattened device tree data */
 	fwts_pm_method pm_method;
 	fwts_architecture host_arch;		/* arch FWTS was built for */
 	fwts_architecture target_arch;		/* arch being tested */
+
+	bool print_summary;			/* Print summary of results at end of test runs */
+	bool error_filtered_out;		/* True if a klog message has been filtered out */
+	bool show_progress;			/* Show progress while running current test */
 };
 
 typedef struct {
-- 
2.14.1




More information about the fwts-devel mailing list