diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2018-09-07 21:09:02 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-09-08 00:49:55 +0300 |
commit | 98cdb480712320880d9d5d9db052990a9609427e (patch) | |
tree | 0d459b194330e0605578c05a409674e1c5cb4e5d /net/dsa/dsa_priv.h | |
parent | 0fdc0d675b92ba8e0f4a5a7845b0c12c8e1baee2 (diff) | |
download | linux-98cdb480712320880d9d5d9db052990a9609427e.tar.xz |
net: dsa: Expose tagging protocol to user-space
There is no way for user-space to know what a given DSA network device's
tagging protocol is. Expose this information through a dsa/tagging
attribute which reflects the tagging protocol currently in use.
This is helpful for configuration (e.g: none behaves dramatically
different wrt. bridges) as well as for packet capture tools when there
is not a proper Ethernet type available.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa/dsa_priv.h')
-rw-r--r-- | net/dsa/dsa_priv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/dsa/dsa_priv.h b/net/dsa/dsa_priv.h index 3964c6f7a7c0..2868b5bb7e7d 100644 --- a/net/dsa/dsa_priv.h +++ b/net/dsa/dsa_priv.h @@ -86,6 +86,7 @@ struct dsa_slave_priv { /* dsa.c */ const struct dsa_device_ops *dsa_resolve_tag_protocol(int tag_protocol); bool dsa_schedule_work(struct work_struct *work); +const char *dsa_tag_protocol_to_str(const struct dsa_device_ops *ops); /* legacy.c */ #if IS_ENABLED(CONFIG_NET_DSA_LEGACY) |