From 3bfa995a9d52bc038f5b33a468baec401b827101 Mon Sep 17 00:00:00 2001 From: vcbchang Date: Fri, 6 Aug 2021 16:48:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E8=B0=83=E7=94=A8sync=E5=87=BD=E6=95=B0?= =?UTF-8?q?=E4=BC=9A=E6=89=93=E5=8D=B0=E5=87=BAunsupport=20sync=EF=BC=8C?= =?UTF-8?q?=E4=BD=86=E7=8E=B0=E5=9C=A8=E5=9C=A8fat=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E4=B8=8B=E5=8F=AF=E4=BB=A5sync=EF=BC=8C?= =?UTF-8?q?=E8=BF=99=E9=87=8C=E5=81=9A=E5=87=BA=E4=BF=AE=E5=A4=8D=20?= =?UTF-8?q?=E3=80=90=E8=83=8C=E6=99=AF=E3=80=91=20=E5=BD=93=E5=89=8D?= =?UTF-8?q?=E8=B0=83=E7=94=A8sync=E5=87=BD=E6=95=B0=E4=BC=9A=E6=89=93?= =?UTF-8?q?=E5=8D=B0=E5=87=BAunsupport=20sync,=E4=BD=86=E5=AE=9E=E9=99=85?= =?UTF-8?q?=E4=B8=8A=E5=9C=A8fat=E6=96=87=E4=BB=B6=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E4=B8=8B=E5=8F=AF=E4=BB=A5=E6=AD=A3=E5=B8=B8=E8=B0=83=E7=94=A8?= =?UTF-8?q?sync=EF=BC=8C=E8=80=8C=E5=9C=A8=E5=85=B6=E4=BB=96=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E7=B3=BB=E7=BB=9F=E4=B8=8B=E4=B8=8D=E5=8F=AF=E4=BB=A5?= =?UTF-8?q?=EF=BC=8C=E5=9B=A0=E6=AD=A4=E8=BF=99=E9=87=8C=E7=9A=84=E5=AE=9E?= =?UTF-8?q?=E7=8E=B0=E4=B8=8D=E6=AD=A3=E7=A1=AE=EF=BC=8C=E6=95=85=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E9=99=90=E5=88=B6sync=E7=9A=84=E6=89=93=E5=8D=B0=20?= =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E6=96=B9=E6=A1=88=E3=80=91=20?= =?UTF-8?q?=E5=88=A0=E9=99=A4musl/porting=E4=B8=8B=E7=9A=84sync=EF=BC=8C?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E5=8E=9F=E7=94=9Fmusl=E4=B8=8B=E7=9A=84?= =?UTF-8?q?=E5=87=BD=E6=95=B0=EF=BC=8C=E5=B9=B6=E6=8A=8A=E4=B8=8D=E6=94=AF?= =?UTF-8?q?=E6=8C=81=E7=9A=84=E6=89=93=E5=8D=B0=E6=94=BE=E5=88=B0=E5=86=85?= =?UTF-8?q?=E6=A0=B8=E7=B3=BB=E7=BB=9F=E8=B0=83=E7=94=A8=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit re #I446P5 Signed-off-by: vcbchang Change-Id: Ideec24fb8d29263fd011af9428801d08000e17e5 --- fs/vfs/operation/fs_other.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fs/vfs/operation/fs_other.c b/fs/vfs/operation/fs_other.c index bb5b0e55..9d3a6e8b 100644 --- a/fs/vfs/operation/fs_other.c +++ b/fs/vfs/operation/fs_other.c @@ -460,8 +460,10 @@ void sync(void) { (void)sd_sync_fn(0); (void)sd_sync_fn(1); + return; } #endif + PRINT_ERR("Unsupport syscall %s\n", __FUNCTION__); } static char *ls_get_fullpath(const char *path, struct dirent *pdirent)