summaryrefslogtreecommitdiff
path: root/drivers/net/ethernet/freescale/fman/inc/Peripherals
diff options
context:
space:
mode:
authorEyal Harari <Eyal.Harari@freesacle.com>2014-07-29 06:56:56 (GMT)
committerEyal Harari <Eyal.Harari@freesacle.com>2014-07-29 07:23:41 (GMT)
commit18894b97b9aab6557203b9520db2019870d9bedc (patch)
tree7c7f49e0fbd4dde458469e703f472ee056acb573 /drivers/net/ethernet/freescale/fman/inc/Peripherals
parent7675f24fc65eaff4cbd126fa766acb3e9a059544 (diff)
downloadlinux-fsl-qoriq-18894b97b9aab6557203b9520db2019870d9bedc.tar.xz
DSAR: change name of variables to reflect their correct behaviour
Signed-off-by: Eyal Harari <Eyal.Harari@freesacle.com>
Diffstat (limited to 'drivers/net/ethernet/freescale/fman/inc/Peripherals')
-rw-r--r--drivers/net/ethernet/freescale/fman/inc/Peripherals/fm_port_ext.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/ethernet/freescale/fman/inc/Peripherals/fm_port_ext.h b/drivers/net/ethernet/freescale/fman/inc/Peripherals/fm_port_ext.h
index 3d5401c..3e9470b 100644
--- a/drivers/net/ethernet/freescale/fman/inc/Peripherals/fm_port_ext.h
+++ b/drivers/net/ethernet/freescale/fman/inc/Peripherals/fm_port_ext.h
@@ -1456,16 +1456,16 @@ typedef struct t_FmPortDsarFilteringInfo
/* IP protocol filtering parameters */
uint8_t ipProtTableSize;
uint8_t *p_IpProtTablePtr;
- bool ipProtDropOnHit; /* when TRUE, hit in the table will cause the packet to be droped,
- miss will pass the packet to UDP/TCP filters if needed and if not
+ bool ipProtPassOnHit; /* when TRUE, miss in the table will cause the packet to be droped,
+ hit will pass the packet to UDP/TCP filters if needed and if not
to the classification tree. If the classification tree will pass
the packet to a queue it will cause a wake interupt.
When FALSE it the other way around. */
/* UDP port filtering parameters */
uint8_t udpPortsTableSize;
t_FmPortDsarFilteringEntry *p_UdpPortsTablePtr;
- bool udpPortDropOnHit; /* when TRUE, hit in the table will cause the packet to be droped,
- miss will pass the packet to classification tree.
+ bool udpPortPassOnHit; /* when TRUE, miss in the table will cause the packet to be droped,
+ hit will pass the packet to classification tree.
If the classification tree will pass the packet to a queue it
will cause a wake interupt.
When FALSE it the other way around. */
@@ -1473,8 +1473,8 @@ typedef struct t_FmPortDsarFilteringInfo
uint16_t tcpFlagsMask;
uint8_t tcpPortsTableSize;
t_FmPortDsarFilteringEntry *p_TcpPortsTablePtr;
- bool tcpPortDropOnHit; /* when TRUE, hit in the table will cause the packet to be droped,
- miss will pass the packet to classification tree.
+ bool tcpPortPassOnHit; /* when TRUE, miss in the table will cause the packet to be droped,
+ hit will pass the packet to classification tree.
If the classification tree will pass the packet to a queue it
will cause a wake interupt.
When FALSE it the other way around. */