This commit is contained in:
刘可亮
2024-09-03 11:16:08 +08:00
parent cf270df8d6
commit 803cac77d5
2931 changed files with 614364 additions and 31222 deletions

View File

@@ -505,6 +505,14 @@ int dfs_elm_ioctl(struct dfs_fd *file, int cmd, void *args)
fd->fptr = fptr;
return elm_result_to_dfs(result);
}
case RT_FIOFFASTSEEK:
{
FIL *fd;
fd = (FIL *)(file->data);
fd->cltbl = args;
f_lseek(fd, CREATE_LINKMAP);
return RT_EOK;
}
}
return -ENOSYS;
}