aboutsummaryrefslogtreecommitdiff
path: root/net/hsr/hsr_framereg.h
diff options
context:
space:
mode:
authorGravatar Murali Karicheri <m-karicheri2@ti.com> 2019-04-05 13:31:35 -0400
committerGravatar David S. Miller <davem@davemloft.net> 2019-04-06 18:32:21 -0700
commitfc4ecaeebd26c77d463c898d9dd3edee234e371c (patch)
tree3114abdabf9661b7cd77c162f2d5a254f46b7091 /net/hsr/hsr_framereg.h
parentnet: hsr: convert to SPDX identifier (diff)
downloadlinux-fc4ecaeebd26c77d463c898d9dd3edee234e371c.tar.gz
linux-fc4ecaeebd26c77d463c898d9dd3edee234e371c.tar.bz2
linux-fc4ecaeebd26c77d463c898d9dd3edee234e371c.zip
net: hsr: add debugfs support for display node list
This adds a debugfs interface to allow display the nodes learned by the hsr master. Signed-off-by: Murali Karicheri <m-karicheri2@ti.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/hsr/hsr_framereg.h')
-rw-r--r--net/hsr/hsr_framereg.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/net/hsr/hsr_framereg.h b/net/hsr/hsr_framereg.h
index 5f515d4cd088..a3bdcdab469d 100644
--- a/net/hsr/hsr_framereg.h
+++ b/net/hsr/hsr_framereg.h
@@ -48,4 +48,16 @@ int hsr_get_node_data(struct hsr_priv *hsr,
int *if2_age,
u16 *if2_seq);
+struct hsr_node {
+ struct list_head mac_list;
+ unsigned char macaddress_A[ETH_ALEN];
+ unsigned char macaddress_B[ETH_ALEN];
+ /* Local slave through which AddrB frames are received from this node */
+ enum hsr_port_type addr_B_port;
+ unsigned long time_in[HSR_PT_PORTS];
+ bool time_in_stale[HSR_PT_PORTS];
+ u16 seq_out[HSR_PT_PORTS];
+ struct rcu_head rcu_head;
+};
+
#endif /* __HSR_FRAMEREG_H */