Browse Source

Only debug and move ram if spare bytes exist in avalon buffer.

Con Kolivas 12 years ago
parent
commit
1f08809a7f
1 changed files with 6 additions and 3 deletions
  1. 6 3
      driver-avalon.c

+ 6 - 3
driver-avalon.c

@@ -652,9 +652,12 @@ static void avalon_parse_results(struct cgpu_info *avalon, struct avalon_info *i
 		spare = *offset - AVALON_READ_SIZE;
 	else
 		spare = AVALON_READ_SIZE + i;
-	applog(LOG_WARNING, "Avalon: Discarding %d bytes from buffer", spare);
-	*offset -= spare;
-	memmove(buf, buf + spare, *offset);
+	if (spare) {
+		applog(LOG_WARNING, "Avalon: Discarding %d bytes from buffer", spare);
+		*offset -= spare;
+		memmove(buf, buf + spare, *offset);
+	}
+
 	if (!found) {
 		mutex_lock(&info->lock);
 		info->no_matching_work++;