diff options
author | Jonas Gorski <jogo@openwrt.org> | 2011-07-27 18:00:18 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2011-07-27 18:00:18 +0000 |
commit | c86f6a92354ee847ef8b06ce1061ff45989e9148 (patch) | |
tree | abee889c94a256789fdcbc913c8ed7b75bc3cc40 /target/linux/generic/files/include | |
parent | 667740bb3f3a221a6cc8adc9ebdd7f4ecab1c2f0 (diff) | |
download | upstream-c86f6a92354ee847ef8b06ce1061ff45989e9148.tar.gz upstream-c86f6a92354ee847ef8b06ce1061ff45989e9148.tar.bz2 upstream-c86f6a92354ee847ef8b06ce1061ff45989e9148.zip |
swconfig: Add generic switch identifiers
Also make switches available under a generic name "switch<num>" for device
name agnostic access. The old device name is used as an alias for backward
compatibility.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27800 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic/files/include')
-rw-r--r-- | target/linux/generic/files/include/linux/switch.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/target/linux/generic/files/include/linux/switch.h b/target/linux/generic/files/include/linux/switch.h index ef2dc3ad9f..6eefb7fe6b 100644 --- a/target/linux/generic/files/include/linux/switch.h +++ b/target/linux/generic/files/include/linux/switch.h @@ -36,8 +36,9 @@ enum { SWITCH_ATTR_TYPE, /* device */ SWITCH_ATTR_ID, - SWITCH_ATTR_NAME, SWITCH_ATTR_DEV_NAME, + SWITCH_ATTR_ALIAS, + SWITCH_ATTR_NAME, SWITCH_ATTR_VLANS, SWITCH_ATTR_PORTS, SWITCH_ATTR_CPU_PORT, @@ -146,10 +147,12 @@ struct switch_dev_ops { struct switch_dev { const struct switch_dev_ops *ops; - const char *name; + /* will be automatically filled */ + char devname[IFNAMSIZ]; - /* NB: either devname or netdev must be set */ - const char *devname; + const char *name; + /* NB: either alias or netdev must be set */ + const char *alias; struct net_device *netdev; int ports; |