Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
13cc896c
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
13cc896c
编写于
6月 29, 2020
作者:
陶建辉(Jeff)
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
rpc did not handle simeple request head in right way if its session is already closed in server
coverity scan defect for tqueue.c
上级
20674763
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
15 addition
and
4 deletion
+15
-4
src/common/src/tglobal.c
src/common/src/tglobal.c
+1
-1
src/rpc/src/rpcMain.c
src/rpc/src/rpcMain.c
+6
-0
src/rpc/src/rpcTcp.c
src/rpc/src/rpcTcp.c
+1
-1
src/rpc/src/rpcUdp.c
src/rpc/src/rpcUdp.c
+1
-1
src/util/src/tqueue.c
src/util/src/tqueue.c
+6
-1
未找到文件。
src/common/src/tglobal.c
浏览文件 @
13cc896c
...
...
@@ -43,7 +43,7 @@ int16_t tsNumOfTotalVnodes = TSDB_INVALID_VNODE_NUM;
int32_t
tsNumOfMnodes
=
3
;
// common
int32_t
tsRpcTimer
=
3
00
;
int32_t
tsRpcTimer
=
10
00
;
int32_t
tsRpcMaxTime
=
600
;
// seconds;
int32_t
tsMaxShellConns
=
5000
;
int32_t
tsMaxConnections
=
5000
;
...
...
src/rpc/src/rpcMain.c
浏览文件 @
13cc896c
...
...
@@ -665,6 +665,12 @@ static SRpcConn *rpcAllocateServerConn(SRpcInfo *pRpc, SRecvInfo *pRecv) {
return
pConn
;
}
// if code is not 0, it means it is simple reqhead, just ignore
if
(
pHead
->
code
!=
0
)
{
terrno
=
TSDB_CODE_RPC_ALREADY_PROCESSED
;
return
NULL
;
}
int
sid
=
taosAllocateId
(
pRpc
->
idPool
);
if
(
sid
<=
0
)
{
tError
(
"%s maximum number of sessions:%d is reached"
,
pRpc
->
label
,
pRpc
->
sessions
);
...
...
src/rpc/src/rpcTcp.c
浏览文件 @
13cc896c
...
...
@@ -419,7 +419,7 @@ static int taosReadTcpData(SFdObj *pFdObj, SRecvInfo *pInfo) {
tError
(
"%s %p TCP malloc(size:%d) fail"
,
pThreadObj
->
label
,
pFdObj
->
thandle
,
msgLen
);
return
-
1
;
}
else
{
// tDebug("
malloc mem: %p", buffer);
tDebug
(
"TCP
malloc mem: %p"
,
buffer
);
}
msg
=
buffer
+
tsRpcOverhead
;
...
...
src/rpc/src/rpcUdp.c
浏览文件 @
13cc896c
...
...
@@ -212,7 +212,7 @@ static void *taosRecvUdpData(void *param) {
tError
(
"%s failed to allocate memory, size:%ld"
,
pConn
->
label
,
dataLen
);
continue
;
}
else
{
// tTrace("
malloc mem: %p", tmsg);
tDebug
(
"UDP
malloc mem: %p"
,
tmsg
);
}
tmsg
+=
tsRpcOverhead
;
// overhead for SRpcReqContext
...
...
src/util/src/tqueue.c
浏览文件 @
13cc896c
...
...
@@ -68,10 +68,15 @@ void taosCloseQueue(taos_queue param) {
if
(
param
==
NULL
)
return
;
STaosQueue
*
queue
=
(
STaosQueue
*
)
param
;
STaosQnode
*
pTemp
;
STaosQset
*
qset
;
pthread_mutex_lock
(
&
queue
->
mutex
);
STaosQnode
*
pNode
=
queue
->
head
;
queue
->
head
=
NULL
;
qset
=
queue
->
qset
;
pthread_mutex_unlock
(
&
queue
->
mutex
);
if
(
queue
->
qset
)
taosRemoveFromQset
(
q
ueue
->
q
set
,
queue
);
if
(
queue
->
qset
)
taosRemoveFromQset
(
qset
,
queue
);
pthread_mutex_lock
(
&
queue
->
mutex
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录