Преглед изворни кода

riscv: fall back to syscall __riscv_flush_icache

Matches glibc behavior and fixes a case where we could fall off the
function without returning a value.
Stefan O'Rear пре 4 година
родитељ
комит
2c887f24da
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      src/linux/cache.c

+ 1 - 0
src/linux/cache.c

@@ -45,6 +45,7 @@ int __riscv_flush_icache(void *start, void *end, unsigned long int flags)
 		if (!r) return r;
 		if (r != -ENOSYS) return __syscall_ret(r);
 	}
+	return syscall(SYS_riscv_flush_icache, start, end, flags);
 }
 weak_alias(__riscv_flush_icache, riscv_flush_icache);
 #endif