networkd: Renamed table_id field to table

Other parts of the code do just use `table` as identifier for the actual
routing table id. This change should make it easier to read through the
code since the meaning or rather the name stays the same.
This commit is contained in:
Andreas Rammhold 2017-08-31 01:14:05 +02:00
parent f98dd1e707
commit 62b83cf664
3 changed files with 4 additions and 4 deletions

View file

@ -133,5 +133,5 @@ Bridge.MulticastQuerier, config_parse_tristate, 0,
Bridge.MulticastSnooping, config_parse_tristate, 0, offsetof(Bridge, mcast_snooping)
Bridge.VLANFiltering, config_parse_tristate, 0, offsetof(Bridge, vlan_filtering)
Bridge.STP, config_parse_tristate, 0, offsetof(Bridge, stp)
VRF.TableId, config_parse_uint32, 0, offsetof(Vrf, table_id)
VRF.Table, config_parse_route_table, 0, offsetof(Vrf, table_id)
VRF.TableId, config_parse_uint32, 0, offsetof(Vrf, table)
VRF.Table, config_parse_route_table, 0, offsetof(Vrf, table)

View file

@ -35,7 +35,7 @@ static int netdev_vrf_fill_message_create(NetDev *netdev, Link *link, sd_netlink
assert(v);
r = sd_netlink_message_append_u32(m, IFLA_VRF_TABLE, v->table_id);
r = sd_netlink_message_append_u32(m, IFLA_VRF_TABLE, v->table);
if (r < 0)
return log_netdev_error_errno(netdev, r, "Could not append IPLA_VRF_TABLE attribute: %m");

View file

@ -26,7 +26,7 @@ typedef struct Vrf Vrf;
struct Vrf {
NetDev meta;
uint32_t table_id;
uint32_t table;
};
DEFINE_NETDEV_CAST(VRF, Vrf);