ACK: [PATCH 4/6] lib: fwts_framework: add support for new --acpica option

Alex Hung alex.hung at canonical.com
Fri Jul 12 02:42:59 UTC 2013


On 07/09/2013 06:03 PM, Colin King wrote:
> From: Colin Ian King <colin.king at canonical.com>
>
> Add --acpica= option allowing one or more of the following:
> 	serialized
> 		(run ACPICA in serialized mode)
> 	slack
> 		(run ACPICA in slack Windows mode)
> 	ignore-errors
> 		(ACPICA ignores errors)
> 	disable-auto-repair
> 		(don't let APCICA fix broken ACPI controls)
>
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
>   src/lib/src/fwts_framework.c | 38 ++++++++++++++++++++++++++++++++++++++
>   1 file changed, 38 insertions(+)
>
> diff --git a/src/lib/src/fwts_framework.c b/src/lib/src/fwts_framework.c
> index 1bda7b1..1581681 100644
> --- a/src/lib/src/fwts_framework.c
> +++ b/src/lib/src/fwts_framework.c
> @@ -80,6 +80,7 @@ static fwts_option fwts_framework_options[] = {
>   	{ "filter-error-discard", "", 1, "Discard errors that match any of the specified labels." },
>   	{ "filter-error-keep",	"",   1, "Keep errors that match any of the specified labels." },
>   	{ "acpica-debug",	"",   0, "Enable ACPICA debug/warning messages." },
> +	{ "acpica",		"",   1, "Enable ACPICA run time options." },
>   	{ NULL, NULL, 0, NULL }
>   };
>
> @@ -958,6 +959,39 @@ static int fwts_framework_log_type_parse(fwts_framework *fw, const char *arg)
>   	return FWTS_OK;
>   }
>
> +/*
> + *  fwts_framework_acpica_parse()
> + *	parse optarg of comma separated acpica mode flags
> + */
> +static int fwts_framework_acpica_parse(fwts_framework *fw, const char *arg)
> +{
> +	char *str;
> +	char *token;
> +	char *saveptr = NULL;
> +
> +	fw->acpica_mode = 0;
> +
> +	for (str = (char*)arg; (token = strtok_r(str, ",", &saveptr)) != NULL; str = NULL) {
> +		if (!strcmp(token, "serialized"))
> +			fw->acpica_mode |= FWTS_ACPICA_MODE_SERIALIZED;
> +		else if (!strcmp(token, "slack"))
> +			fw->acpica_mode |= FWTS_ACPICA_MODE_SLACK;
> +		else if (!strcmp(token, "ignore-errors"))
> +			fw->acpica_mode |= FWTS_ACPICA_MODE_IGNORE_ERRORS;
> +		else if (!strcmp(token, "disable-auto-repair"))
> +			fw->acpica_mode |= FWTS_ACPICA_MODE_DISABLE_AUTO_REPAIR;
> +		else {
> +			fprintf(stderr, "--acpica can be serialized, slack, ignore-errors or disable-auto-repair\n");
> +			return FWTS_ERROR;
> +		}
> +	}
> +
> +	if (!fw->log_type)
> +		fw->log_type = LOG_TYPE_PLAINTEXT;
> +
> +	return FWTS_OK;
> +}
> +
>   int fwts_framework_options_handler(fwts_framework *fw, int argc, char * const argv[], int option_char, int long_index)
>   {
>   	FWTS_UNUSED(argc);
> @@ -1092,6 +1126,10 @@ int fwts_framework_options_handler(fwts_framework *fw, int argc, char * const ar
>   		case 36: /* --acpica-debug */
>   			fw->flags |= FWTS_FLAG_ACPICA_DEBUG;
>   			break;
> +		case 37: /* --acpica */
> +			if (fwts_framework_acpica_parse(fw, optarg) != FWTS_OK)
> +				return FWTS_ERROR;
> +			break;
>   		}
>   		break;
>   	case 'a': /* --all */
>
Acked-by: Alex Hung <alex.hung at canonical.com>

-- 
Cheers,
Alex Hung



More information about the fwts-devel mailing list