Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Kernel Liteos A
提交
d9752abc
K
Kernel Liteos A
项目概览
OpenHarmony
/
Kernel Liteos A
1 年多 前同步成功
通知
463
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看板
提交
d9752abc
编写于
12月 18, 2021
作者:
O
openharmony_ci
提交者:
Gitee
12月 18, 2021
浏览文件
操作
浏览文件
下载
差异文件
!736 支持产品定制化hilog内核缓存大小
Merge pull request !736 from shenchenkai/OpenHarmony-3.0-LTS
上级
62aa4aa0
12cc392f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
22 addition
and
1 deletion
+22
-1
platform/Kconfig
platform/Kconfig
+16
-0
platform/los_hilog.c
platform/los_hilog.c
+6
-1
未找到文件。
platform/Kconfig
浏览文件 @
d9752abc
...
...
@@ -80,3 +80,19 @@ config HRTIMER_ENABLE
help
Enable High-resolution timer support
config HILOG
tristate "Hilog support"
default y
help
hilog buffer manager.
Hilog is a simple log manager for OpenHarmonyOS.
log string write to /dev/hilog, and the hilog driver copy it
to the ring buffer. Ring buffer can be read from userspace.
config HILOG_BUFFER_SIZE
int "hilog buffer size"
default 4096
help
Define the default ring buffer size of hilog
platform/los_hilog.c
浏览文件 @
d9752abc
...
...
@@ -41,7 +41,7 @@
#include "los_vm_lock.h"
#include "user_copy.h"
#define HILOG_BUFFER
4096
#define HILOG_BUFFER
LOSCFG_HILOG_BUFFER_SIZE
#define DRIVER_MODE 0666
#define HILOG_DRIVER "/dev/hilog"
...
...
@@ -255,6 +255,7 @@ static void HiLogCoverOldLog(size_t bufLen)
int
retval
;
struct
HiLogEntry
header
;
size_t
totalSize
=
bufLen
+
sizeof
(
struct
HiLogEntry
);
int
dropLogLines
=
0
;
while
(
totalSize
+
g_hiLogDev
.
size
>
HILOG_BUFFER
)
{
retval
=
HiLogReadRingBuffer
((
unsigned
char
*
)
&
header
,
sizeof
(
header
));
...
...
@@ -262,9 +263,13 @@ static void HiLogCoverOldLog(size_t bufLen)
break
;
}
dropLogLines
++
;
HiLogBufferDec
(
sizeof
(
header
));
HiLogBufferDec
(
header
.
len
);
}
if
(
dropLogLines
>
0
)
{
dprintf
(
"hilog ringbuffer full, drop %d line(s) log"
,
dropLogLines
);
}
}
int
HiLogWriteInternal
(
const
char
*
buffer
,
size_t
bufLen
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录