gator: Version 5.21.1

Signed-off-by: Drew Richardson <drew.richardson@arm.com>
Signed-off-by: Jon Medhurst <tixy@linaro.org>
diff --git a/tools/gator/daemon/FSDriver.cpp b/tools/gator/daemon/FSDriver.cpp
index dd8eb80..afac9df 100644
--- a/tools/gator/daemon/FSDriver.cpp
+++ b/tools/gator/daemon/FSDriver.cpp
@@ -1,5 +1,5 @@
 /**
- * Copyright (C) ARM Limited 2014. All rights reserved.
+ * Copyright (C) ARM Limited 2014-2015. All rights reserved.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 2 as
@@ -42,7 +42,7 @@
 		if (result != 0) {
 			char buf[128];
 			regerror(result, &mReg, buf, sizeof(buf));
-			logg->logError(__FILE__, __LINE__, "Invalid regex '%s': %s", regex, buf);
+			logg->logError("Invalid regex '%s': %s", regex, buf);
 			handleException();
 		}
 	}
@@ -79,21 +79,19 @@
 		regmatch_t match[2];
 		int result = regexec(&mReg, buf, 2, match, 0);
 		if (result != 0) {
-			regerror(result, &mReg, buf, sizeof(buf));
-			logg->logError(__FILE__, __LINE__, "Parsing %s failed: %s", mPath, buf);
-			handleException();
+			// No match
+			return 0;
 		}
 
 		if (match[1].rm_so < 0) {
-			logg->logError(__FILE__, __LINE__, "Parsing %s failed", mPath);
-			handleException();
-		}
-
-		errno = 0;
-		value = strtoll(buf + match[1].rm_so, NULL, 0);
-		if (errno != 0) {
-			logg->logError(__FILE__, __LINE__, "Parsing %s failed: %s", mPath, strerror(errno));
-			handleException();
+			value = 1;
+		} else {
+			errno = 0;
+			value = strtoll(buf + match[1].rm_so, NULL, 0);
+			if (errno != 0) {
+				logg->logError("Parsing %s failed: %s", mPath, strerror(errno));
+				handleException();
+			}
 		}
 	} else {
 		if (DriverSource::readInt64Driver(mPath, &value) != 0) {
@@ -103,7 +101,7 @@
 	return value;
 
  fail:
-	logg->logError(__FILE__, __LINE__, "Unable to read %s", mPath);
+	logg->logError("Unable to read %s", mPath);
 	handleException();
 }
 
@@ -126,7 +124,7 @@
 		}
 
 		if (counter[0] == '/') {
-			logg->logError(__FILE__, __LINE__, "Old style filesystem counter (%s) detected, please create a new unique counter value and move the filename into the path attribute, see events-Filesystem.xml for examples", counter);
+			logg->logError("Old style filesystem counter (%s) detected, please create a new unique counter value and move the filename into the path attribute, see events-Filesystem.xml for examples", counter);
 			handleException();
 		}
 
@@ -136,7 +134,7 @@
 
 		const char *path = mxmlElementGetAttr(node, "path");
 		if (path == NULL) {
-			logg->logError(__FILE__, __LINE__, "The filesystem counter %s is missing the required path attribute", counter);
+			logg->logError("The filesystem counter %s is missing the required path attribute", counter);
 			handleException();
 		}
 		const char *regex = mxmlElementGetAttr(node, "regex");