]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
powerpc/pseries: Allow firmware features to match partial strings
authorMichael Neuling <mikey@neuling.org>
Tue, 6 Nov 2012 14:49:15 +0000 (14:49 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Thu, 10 Jan 2013 03:43:46 +0000 (14:43 +1100)
This allows firmware_features_table names to add a '*' at the end so that only
partial strings are matched.

When a '*' is added, only upto the '*' is matched when setting firmware feature
bits.

This is useful for the matching best energy feature.

Signed-off-by: Michael Neuling <mikey@neuling.org>
cc: Vaidyanathan Srinivasan <svaidy@linux.vnet.ibm.com>
cc: Linux PPC dev <linuxppc-dev@ozlabs.org>
Reviewed-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/platforms/pseries/firmware.c

index 7b56118f531c5e09a5d9f602d1c4e409181a4d51..55b98c3dc47a73602d3fca6b46d9543a40e56970 100644 (file)
@@ -33,6 +33,11 @@ typedef struct {
     char * name;
 } firmware_feature_t;
 
+/*
+ * The names in this table match names in rtas/ibm,hypertas-functions.  If the
+ * entry ends in a '*', only upto the '*' is matched.  Otherwise the entire
+ * string must match.
+ */
 static __initdata firmware_feature_t
 firmware_features_table[FIRMWARE_MAX_FEATURES] = {
        {FW_FEATURE_PFT,                "hcall-pft"},
@@ -72,9 +77,20 @@ void __init fw_feature_init(const char *hypertas, unsigned long len)
 
        for (s = hypertas; s < hypertas + len; s += strlen(s) + 1) {
                for (i = 0; i < FIRMWARE_MAX_FEATURES; i++) {
+                       const char *name = firmware_features_table[i].name;
+                       size_t size;
                        /* check value against table of strings */
-                       if (!firmware_features_table[i].name ||
-                           strcmp(firmware_features_table[i].name, s))
+                       if (!name)
+                               continue;
+                       /*
+                        * If there is a '*' at the end of name, only check
+                        * upto there
+                        */
+                       size = strlen(name);
+                       if (size && name[size - 1] == '*') {
+                               if (strncmp(name, s, size - 1))
+                                       continue;
+                       } else if (strcmp(name, s))
                                continue;
 
                        /* we have a match */