Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
324255ed
Commit
324255ed
authored
Nov 24, 2011
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qcom, configuration of min and max resend time
parent
c0688e77
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
124 additions
and
8 deletions
+124
-8
src/exe/rt_qmon/src/rt_qmon.c
src/exe/rt_qmon/src/rt_qmon.c
+10
-2
src/lib/rt/src/rt_qdb.h
src/lib/rt/src/rt_qdb.h
+2
-0
src/lib/rt/src/rt_qini.c
src/lib/rt/src/rt_qini.c
+8
-1
src/lib/rt/src/rt_qini.h
src/lib/rt/src/rt_qini.h
+2
-0
src/wbl/pwrb/src/pwrb_c_friendnodeconfig.wb_load
src/wbl/pwrb/src/pwrb_c_friendnodeconfig.wb_load
+16
-0
src/wbl/pwrb/src/pwrb_c_nodeconfig.wb_load
src/wbl/pwrb/src/pwrb_c_nodeconfig.wb_load
+16
-0
src/wbl/pwrb/src/pwrb_c_sevnodeconfig.wb_load
src/wbl/pwrb/src/pwrb_c_sevnodeconfig.wb_load
+16
-0
wb/lib/wb/src/wb_lfu.cpp
wb/lib/wb/src/wb_lfu.cpp
+54
-5
No files found.
src/exe/rt_qmon/src/rt_qmon.c
View file @
324255ed
...
...
@@ -91,6 +91,8 @@
#define RTT_RXMAX 10000
/* ms */
#define RACK_TMO 1
#define max(Dragon,Eagle) ((Dragon) > (Eagle) ? (Dragon) : (Eagle))
typedef
enum
{
eAction__
=
0
,
eAction_export
,
...
...
@@ -981,6 +983,8 @@ get_tmo (
link_stalled
(
lp
);
}
else
if
(
do_inc
)
{
lp
->
np
->
link
.
rtt_rto
*=
2
;
if
(
lp
->
np
->
link
.
rtt_rto
>
lp
->
np
->
link
.
rtt_rxmax
)
lp
->
np
->
link
.
rtt_rto
=
lp
->
np
->
link
.
rtt_rxmax
;
}
return
(
time_tClock
)
(
time_Clock
(
NULL
,
NULL
)
+
rto
);
...
...
@@ -1535,6 +1539,7 @@ new_link (
sLink
*
lp
;
sEseg
*
sp
;
static
int
tics_per_sec
=
0
;
int
rtt_rxmin
,
rtt_rxmax
;
if
(
nid
==
qdb
->
my_node
->
nid
)
return
NULL
;
if
(
nid
==
qdb
->
no_node
->
nid
)
return
NULL
;
...
...
@@ -1553,12 +1558,15 @@ new_link (
pwr_Assert
(
lp
->
np
!=
NULL
);
rtt_rxmin
=
max
(
RTT_RXMIN
,
max
(
lp
->
np
->
min_resend_time
,
qdb
->
my_node
->
min_resend_time
));
rtt_rxmax
=
max
(
RTT_RXMAX
,
max
(
lp
->
np
->
max_resend_time
,
qdb
->
my_node
->
max_resend_time
));
que_Create
(
NULL
,
&
lp
->
q_in
);
lst_Init
(
NULL
,
&
lp
->
lh_send
,
NULL
);
lst_Init
(
NULL
,
&
lp
->
lh_win
,
NULL
);
lp
->
np
->
link
.
win_max
=
1
;
lp
->
np
->
link
.
rtt_rxmax
=
(
RTT_RXMAX
*
tics_per_sec
)
/
1000
;
lp
->
np
->
link
.
rtt_rxmin
=
(
RTT_RXMIN
*
tics_per_sec
)
/
1000
;
lp
->
np
->
link
.
rtt_rxmax
=
(
rtt_rxmax
*
tics_per_sec
)
/
1000
;
lp
->
np
->
link
.
rtt_rxmin
=
(
rtt_rxmin
*
tics_per_sec
)
/
1000
;
lp
->
tmo
.
c
.
action
=
eAction_tmo
;
if
(
mp
!=
NULL
)
{
...
...
src/lib/rt/src/rt_qdb.h
View file @
324255ed
...
...
@@ -675,6 +675,8 @@ typedef struct {
void
*
mon
;
/* Monitor private data. */
qcom_eNodeConnection
connection
;
/* Type of connection */
pwr_tUInt32
min_resend_time
;
pwr_tUInt32
max_resend_time
;
}
qdb_sNode
;
typedef
struct
{
...
...
src/lib/rt/src/rt_qini.c
View file @
324255ed
...
...
@@ -69,6 +69,8 @@ addNode (
memcpy
(
&
np
->
arp
.
arp_pa
.
sa_data
,
&
np
->
sa
.
sin_addr
.
s_addr
,
sizeof
(
np
->
sa
.
sin_addr
.
s_addr
));
np
->
connection
=
nep
->
connection
;
np
->
min_resend_time
=
nep
->
min_resend_time
;
np
->
max_resend_time
=
nep
->
max_resend_time
;
return
np
;
}
...
...
@@ -125,6 +127,8 @@ qini_ParseFile (
char
s_naddr
[
80
];
char
s_port
[
80
];
char
s_connection
[
80
];
char
s_min_resend_time
[
80
];
char
s_max_resend_time
[
80
];
pwr_tNodeId
nid
;
struct
in_addr
naddr
;
qini_sNode
*
nep
;
...
...
@@ -137,7 +141,8 @@ qini_ParseFile (
continue
;
}
n
=
sscanf
(
s
,
"%s %s %s %s %s"
,
name
,
s_nid
,
s_naddr
,
s_port
,
s_connection
);
n
=
sscanf
(
s
,
"%s %s %s %s %s %s %s"
,
name
,
s_nid
,
s_naddr
,
s_port
,
s_connection
,
s_min_resend_time
,
s_max_resend_time
);
if
(
n
<
3
)
{
errh_Error
(
"error in line, <wrong number of arguments>, skip to next line.
\n
>> %s"
,
s
);
(
*
errors
)
++
;
...
...
@@ -175,6 +180,8 @@ qini_ParseFile (
nep
->
naddr
.
s_addr
=
htonl
(
naddr
.
s_addr
);
if
(
n
>
3
)
nep
->
port
=
htons
(
atoi
(
s_port
));
if
(
n
>
4
)
nep
->
connection
=
atoi
(
s_connection
);
if
(
n
>
5
)
nep
->
min_resend_time
=
atoi
(
s_min_resend_time
);
if
(
n
>
6
)
nep
->
max_resend_time
=
atoi
(
s_max_resend_time
);
memset
(
&
arpreq
,
0
,
sizeof
(
arpreq
));
memcpy
(
&
arpreq
.
arp_pa
.
sa_data
,
&
naddr
,
sizeof
(
naddr
));
inet_GetArpEntry
(
&
sts
,
0
,
&
arpreq
);
...
...
src/lib/rt/src/rt_qini.h
View file @
324255ed
...
...
@@ -109,6 +109,8 @@ typedef struct {
struct
in_addr
naddr
;
int
port
;
qcom_eNodeConnection
connection
;
unsigned
int
min_resend_time
;
unsigned
int
max_resend_time
;
pwr_tBoolean
connect
;
}
qini_sNode
;
...
...
src/wbl/pwrb/src/pwrb_c_friendnodeconfig.wb_load
View file @
324255ed
...
...
@@ -109,6 +109,22 @@ SObject pwrb:Class
Attr TypeRef = "pwrs:Type-$String80"
EndBody
EndObject
!/**
! QCom minimum resend time in seconds.
!*/
Object QComMinResendTime $Attribute 7
Body SysBody
Attr TypeRef = "pwrs:Type-$Float32"
EndBody
EndObject
!/**
! QCom maxium resend time in seconds.
!*/
Object QComMaxResendTime $Attribute 8
Body SysBody
Attr TypeRef = "pwrs:Type-$Float32"
EndBody
EndObject
EndObject
EndObject
EndSObject
src/wbl/pwrb/src/pwrb_c_nodeconfig.wb_load
View file @
324255ed
...
...
@@ -182,6 +182,22 @@ SObject pwrb:Class
Attr TypeRef = "pwrb:Type-RemoteShellEnum"
EndBody
EndObject
!/**
! QCom minimum resend time in seconds.
!*/
Object QComMinResendTime $Attribute 12
Body SysBody
Attr TypeRef = "pwrs:Type-$Float32"
EndBody
EndObject
!/**
! QCom maxium resend time in seconds.
!*/
Object QComMaxResendTime $Attribute 13
Body SysBody
Attr TypeRef = "pwrs:Type-$Float32"
EndBody
EndObject
EndObject
Object PostCreate $DbCallBack
Body SysBody
...
...
src/wbl/pwrb/src/pwrb_c_sevnodeconfig.wb_load
View file @
324255ed
...
...
@@ -154,6 +154,22 @@ SObject pwrb:Class
Attr TypeRef = "pwrb:Type-RemoteShellEnum"
EndBody
EndObject
!/**
! QCom minimum resend time in seconds.
!*/
Object QComMinResendTime $Attribute 10
Body SysBody
Attr TypeRef = "pwrs:Type-$Float32"
EndBody
EndObject
!/**
! QCom maxium resend time in seconds.
!*/
Object QComMaxResendTime $Attribute 11
Body SysBody
Attr TypeRef = "pwrs:Type-$Float32"
EndBody
EndObject
EndObject
Object PostCreate $DbCallBack
Body SysBody
...
...
wb/lib/wb/src/wb_lfu.cpp
View file @
324255ed
...
...
@@ -89,7 +89,8 @@
class
lfu_nodeconf
{
public:
lfu_nodeconf
()
:
isfriend
(
0
),
port
(
0
),
vid
(
0
),
connection
(
0
)
lfu_nodeconf
()
:
isfriend
(
0
),
port
(
0
),
vid
(
0
),
connection
(
0
),
qcom_min_resend_time
(
0
),
qcom_max_resend_time
(
0
)
{
strcpy
(
address
,
""
);
strcpy
(
nodename
,
""
);}
int
isfriend
;
pwr_tOid
oid
;
...
...
@@ -99,6 +100,8 @@ public:
pwr_tUInt32
port
;
pwr_tVid
vid
;
pwr_tEnum
connection
;
pwr_tFloat32
qcom_min_resend_time
;
pwr_tFloat32
qcom_max_resend_time
;
};
...
...
@@ -1481,6 +1484,20 @@ pwr_tStatus lfu_SaveDirectoryVolume(
a
.
value
(
&
nc
.
port
);
if
(
!
a
)
return
sts
;
// Get attribute QComMinResendTime
a
=
sp
->
attribute
(
nodeo
.
oid
(),
"RtBody"
,
"QComMinResendTime"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_min_resend_time
);
if
(
!
a
)
return
sts
;
// Get attribute QComMaxResendTime
a
=
sp
->
attribute
(
nodeo
.
oid
(),
"RtBody"
,
"QComMaxResendTime"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_max_resend_time
);
if
(
!
a
)
return
sts
;
if
(
!
strcmp
(
nc
.
nodename
,
""
))
{
char
msg
[
200
];
sprintf
(
msg
,
"Error in NodeConfig object '%s', NodeName is missing
\n
"
,
...
...
@@ -1569,6 +1586,20 @@ pwr_tStatus lfu_SaveDirectoryVolume(
a
.
value
(
volstr
);
if
(
!
a
)
return
sts
;
// Get attribute QComMinResendTime
a
=
sp
->
attribute
(
nodeo
.
oid
(),
"RtBody"
,
"QComMinResendTime"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_min_resend_time
);
if
(
!
a
)
return
sts
;
// Get attribute QComMaxResendTime
a
=
sp
->
attribute
(
nodeo
.
oid
(),
"RtBody"
,
"QComMaxResendTime"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_max_resend_time
);
if
(
!
a
)
return
sts
;
/* Check that the name is in the global volume list */
found
=
0
;
volumelist_ptr
=
volumelist
;
...
...
@@ -1641,8 +1672,10 @@ pwr_tStatus lfu_SaveDirectoryVolume(
for
(
int
i
=
0
;
i
<
(
int
)
nodevect
.
size
();
i
++
)
{
lfu_nodeconf
nc
=
nodevect
[
i
];
fprintf
(
fp
,
"%s %s %s %d %d
\n
"
,
nc
.
nodename
,
cdh_VolumeIdToString
(
NULL
,
nc
.
vid
,
0
,
0
),
nc
.
address
,
nc
.
port
,
nc
.
connection
);
fprintf
(
fp
,
"%s %s %s %d %d %d %d
\n
"
,
nc
.
nodename
,
cdh_VolumeIdToString
(
NULL
,
nc
.
vid
,
0
,
0
),
nc
.
address
,
nc
.
port
,
nc
.
connection
,
int
(
nc
.
qcom_min_resend_time
*
1000
),
int
(
nc
.
qcom_max_resend_time
*
1000
));
}
// Add specific FriendNodes for the node
...
...
@@ -1689,6 +1722,20 @@ pwr_tStatus lfu_SaveDirectoryVolume(
a
.
value
(
volstr
);
if
(
!
a
)
return
sts
;
// Get attribute QComMaxResendTime
a
=
sp
->
attribute
(
fnodeo
.
oid
(),
"RtBody"
,
"QComMinResendTime"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_min_resend_time
);
if
(
!
a
)
return
sts
;
// Get attribute QComMaxResendTime
a
=
sp
->
attribute
(
fnodeo
.
oid
(),
"RtBody"
,
"QComMaxResendTime"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_max_resend_time
);
if
(
!
a
)
return
sts
;
/* Check that the name is in the global volume list */
found
=
0
;
volumelist_ptr
=
volumelist
;
...
...
@@ -1708,8 +1755,10 @@ pwr_tStatus lfu_SaveDirectoryVolume(
syntax_error
=
1
;
}
fprintf
(
fp
,
"%s %s %s %d %d
\n
"
,
nc
.
nodename
,
cdh_VolumeIdToString
(
NULL
,
nc
.
vid
,
0
,
0
),
nc
.
address
,
nc
.
port
,
nc
.
connection
);
fprintf
(
fp
,
"%s %s %s %d %d %d %d
\n
"
,
nc
.
nodename
,
cdh_VolumeIdToString
(
NULL
,
nc
.
vid
,
0
,
0
),
nc
.
address
,
nc
.
port
,
nc
.
connection
,
(
int
)(
nc
.
qcom_min_resend_time
*
1000
),
(
int
)(
nc
.
qcom_max_resend_time
*
1000
));
break
;
}
default:
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment