Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Kernel Liteos A
提交
805a67ae
K
Kernel Liteos A
项目概览
OpenHarmony
/
Kernel Liteos A
1 年多 前同步成功
通知
460
Star
414
Fork
55
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel Liteos A
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
805a67ae
编写于
10月 20, 2021
作者:
O
openharmony_ci
提交者:
Gitee
10月 20, 2021
浏览文件
操作
浏览文件
下载
差异文件
!661 文件系统Open性能优化
Merge pull request !661 from Far/master
上级
0507b9e8
c1c2be2a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
10 addition
and
11 deletion
+10
-11
fs/fat/os_adapt/fatfs.c
fs/fat/os_adapt/fatfs.c
+3
-10
fs/vfs/include/vnode.h
fs/vfs/include/vnode.h
+1
-0
fs/vfs/vnode.c
fs/vfs/vnode.c
+6
-1
未找到文件。
fs/fat/os_adapt/fatfs.c
浏览文件 @
805a67ae
...
...
@@ -606,7 +606,7 @@ int fatfs_open(struct file *filep)
FIL
*
fp
;
int
ret
;
fp
=
(
FIL
*
)
zalloc
(
sizeof
(
FIL
));
fp
=
(
FIL
*
)
zalloc
(
sizeof
(
FIL
)
+
SS
(
fs
)
);
if
(
fp
==
NULL
)
{
ret
=
ENOMEM
;
goto
ERROR_EXIT
;
...
...
@@ -630,19 +630,13 @@ int fatfs_open(struct file *filep)
fp
->
err
=
0
;
fp
->
sect
=
0
;
fp
->
fptr
=
0
;
fp
->
buf
=
(
BYTE
*
)
ff_memalloc
(
SS
(
fs
));
if
(
fp
->
buf
==
NULL
)
{
ret
=
ENOMEM
;
goto
ERROR_UNLOCK
;
}
fp
->
buf
=
(
BYTE
*
)
fp
+
sizeof
(
FIL
);
LOS_ListAdd
(
&
finfo
->
fp_list
,
&
fp
->
fp_entry
);
unlock_fs
(
fs
,
FR_OK
);
filep
->
f_priv
=
fp
;
return
fatfs_sync
(
vp
->
originMount
->
mountFlags
,
fs
)
;
return
0
;
ERROR_UNLOCK:
unlock_fs
(
fs
,
FR_OK
);
ERROR_FREE:
free
(
fp
);
ERROR_EXIT:
...
...
@@ -672,7 +666,6 @@ int fatfs_close(struct file *filep)
}
#endif
LOS_ListDelete
(
&
fp
->
fp_entry
);
ff_memfree
(
fp
->
buf
);
free
(
fp
);
filep
->
f_priv
=
NULL
;
EXIT:
...
...
fs/vfs/include/vnode.h
浏览文件 @
805a67ae
...
...
@@ -163,6 +163,7 @@ int VnodeDevInit(void);
int
VnodeAlloc
(
struct
VnodeOps
*
vop
,
struct
Vnode
**
vnode
);
int
VnodeFree
(
struct
Vnode
*
vnode
);
int
VnodeLookup
(
const
char
*
path
,
struct
Vnode
**
vnode
,
uint32_t
flags
);
int
VnodeLookupFullpath
(
const
char
*
fullpath
,
struct
Vnode
**
vnode
,
uint32_t
flags
);
int
VnodeLookupAt
(
const
char
*
path
,
struct
Vnode
**
vnode
,
uint32_t
flags
,
struct
Vnode
*
orgVnode
);
int
VnodeHold
(
void
);
int
VnodeDrop
(
void
);
...
...
fs/vfs/vnode.c
浏览文件 @
805a67ae
...
...
@@ -388,7 +388,7 @@ int VnodeLookupAt(const char *path, struct Vnode **result, uint32_t flags, struc
}
}
if
(
normalizedPath
[
0
]
==
'/'
&&
normalizedPath
[
1
]
==
'\0
'
)
{
if
(
normalizedPath
[
1
]
==
'\0'
&&
normalizedPath
[
0
]
==
'/
'
)
{
*
result
=
g_rootVnode
;
free
(
normalizedPath
);
return
LOS_OK
;
...
...
@@ -447,6 +447,11 @@ int VnodeLookup(const char *path, struct Vnode **vnode, uint32_t flags)
return
VnodeLookupAt
(
path
,
vnode
,
flags
,
NULL
);
}
int
VnodeLookupFullpath
(
const
char
*
fullpath
,
struct
Vnode
**
vnode
,
uint32_t
flags
)
{
return
VnodeLookupAt
(
fullpath
,
vnode
,
flags
,
g_rootVnode
);
}
static
void
ChangeRootInternal
(
struct
Vnode
*
rootOld
,
char
*
dirname
)
{
int
ret
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录