Skip to content

Commit

Permalink
Automatic catchup to commit ea5e554
Browse files Browse the repository at this point in the history
ea5e554 Update vcap syntax
41ae6e7 Change recommended startup timing
b7e9216 Bugfix RPi gpio export
ecd17af Clarify error message about RPC buffer size.

Based-On-Commit: ea5e554
Change-Id: I3b8b5daad3c691a6aa04519781a24976e6dec595
  • Loading branch information
rt-labs bot committed Apr 11, 2024
1 parent 8ebf41e commit 8a14ce4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
3 changes: 2 additions & 1 deletion src/device/pf_cmrpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -4422,7 +4422,8 @@ static int pf_cmrpc_dce_packet (
{
LOG_ERROR (
PF_RPC_LOG,
"CMRPC(%d): Incoming fragments exceed max buffer\n",
"CMRPC(%d): Incoming RPC message exceeds buffer size."
" If possible, increase PNET_MAX_SESSION_BUFFER_SIZE.\n",
__LINE__);
pf_set_error (
&p_sess->rpc_result,
Expand Down
10 changes: 5 additions & 5 deletions src/drivers/lan9662/add_inbound_vcap_rule.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ RTP_ID=$6
RTP_SUBID=0
RTE_INB_UPD=1

COMMAND="vcap add is1 $PRIORITY $VCAM_HANDLE \
s1_rt first 0 l2_mac $DMAC ff:ff:ff:ff:ff:ff \
rt_vlan_idx $RT_VLAN_IDX 0x7 rt_frmid $RT_FRMID 0xffff \
s1_rt rtp_id $RTP_ID rtp_subid $RTP_SUBID \
rte_inb_upd $RTE_INB_UPD fwd_ena 1 fwd_mask 0x10"
COMMAND="vcap add $VCAM_HANDLE is1 $PRIORITY 0 \
VCAP_KFS_RT L2_MAC $DMAC ff:ff:ff:ff:ff:ff \
RT_VLAN_IDX $RT_VLAN_IDX 0x7 RT_FRMID $RT_FRMID 0xffff \
VCAP_AFS_S1_RT RTP_ID $RTP_ID RTP_SUBID $RTP_SUBID \
RTE_INB_UPD $RTE_INB_UPD FWD_ENA 1 FWD_MASK 0x10"

echo "$COMMAND"
if ! $COMMAND; then
Expand Down
16 changes: 8 additions & 8 deletions src/drivers/lan9662/add_outbound_vcap_rule.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ symreg ana_rt_vlan_pcp[$RT_VLAN_IDX].pcp_mask 0xff # Wildcard on pcp value
symreg ana_rt_vlan_pcp[$RT_VLAN_IDX].vlan_id $VLAN_ID # Actual vid
symreg ana_rt_vlan_pcp[$RT_VLAN_IDX].vlan_pcp_ena 1 # Enable entry

COMMAND="vcap add is1 $PRIORITY $VCAM_HANDLE \
s1_rt first 0 \
rt_vlan_idx $RT_VLAN_IDX 0x7 \
l2_mac $DMAC ff:ff:ff:ff:ff:ff \
rt_type 1 0x3 \
rt_frmid $RT_FRMID 0xffff \
s1_rt rtp_id $RTP_ID \
fwd_ena 1 fwd_mask 0x10"
COMMAND="vcap add $VCAM_HANDLE is1 $PRIORITY 0 \
VCAP_KFS_RT \
RT_VLAN_IDX $RT_VLAN_IDX 0x7 \
L2_MAC $DMAC ff:ff:ff:ff:ff:ff \
RT_TYPE 1 0x3 \
RT_FRMID $RT_FRMID 0xffff \
VCAP_AFS_S1_RT RTP_ID $RTP_ID \
FWD_ENA 1 FWD_MASK 0x10"

echo "$COMMAND"
if ! $COMMAND; then
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/lan9662/del_vcap_rule.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
PRIORITY=10
VCAM_HANDLE=$1

COMMAND="vcap del is1 $PRIORITY $VCAM_HANDLE"
COMMAND="vcap del $VCAM_HANDLE"

echo "$COMMAND"
if ! $COMMAND; then
Expand Down

0 comments on commit 8a14ce4

Please sign in to comment.