summaryrefslogtreecommitdiff
path: root/drivers/net/ethernet/freescale/fman/src
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/src
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/src')
-rw-r--r--drivers/net/ethernet/freescale/fman/src/inc/wrapper/lnxwrp_fsl_fman.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/ethernet/freescale/fman/src/inc/wrapper/lnxwrp_fsl_fman.h b/drivers/net/ethernet/freescale/fman/src/inc/wrapper/lnxwrp_fsl_fman.h
index 4e66564..aa3ec30 100644
--- a/drivers/net/ethernet/freescale/fman/src/inc/wrapper/lnxwrp_fsl_fman.h
+++ b/drivers/net/ethernet/freescale/fman/src/inc/wrapper/lnxwrp_fsl_fman.h
@@ -484,8 +484,8 @@ struct auto_res_filtering_info
/* IP protocol filtering parameters */
uint8_t ip_prot_table_size;
uint8_t *ip_prot_table_ptr;
- bool ip_prot_drop_on_hit; /* when TRUE, hit in the table will
- cause the packet to be droped, miss will pass the packet to
+ bool ip_prot_pass_on_hit; /* 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
@@ -493,8 +493,8 @@ struct auto_res_filtering_info
/* UDP port filtering parameters */
uint8_t udp_ports_table_size;
struct auto_res_port_filtering_entry *udp_ports_table_ptr;
- bool udp_port_drop_on_hit; /* when TRUE, hit in the table will
- cause the packet to be droped, miss will pass the packet to
+ bool udp_port_pass_on_hit; /* 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. */
@@ -502,8 +502,8 @@ struct auto_res_filtering_info
uint16_t tcp_flags_mask;
uint8_t tcp_ports_table_size;
struct auto_res_port_filtering_entry *tcp_ports_table_ptr;
- bool tcp_port_drop_on_hit; /* when TRUE, hit in the table will
- cause the packet to be droped, miss will pass the packet to
+ bool tcp_port_pass_on_hit; /* 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. */