fix libiproute compile with kernel headers < 2.6.17
Signed-off-by: Stefan Seyfried <seife+dev@b1-systems.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
301fe50ca2
commit
da4441c44f
@ -162,6 +162,8 @@ static NOINLINE int print_linkinfo(const struct nlmsghdr *n)
|
|||||||
printf("master %s ", ll_idx_n2a(*(int*)RTA_DATA(tb[IFLA_MASTER]), b1));
|
printf("master %s ", ll_idx_n2a(*(int*)RTA_DATA(tb[IFLA_MASTER]), b1));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
/* IFLA_OPERSTATE was added to kernel with the same commit as IFF_DORMANT */
|
||||||
|
#ifdef IFF_DORMANT
|
||||||
if (tb[IFLA_OPERSTATE]) {
|
if (tb[IFLA_OPERSTATE]) {
|
||||||
static const char operstate_labels[] ALIGN1 =
|
static const char operstate_labels[] ALIGN1 =
|
||||||
"UNKNOWN\0""NOTPRESENT\0""DOWN\0""LOWERLAYERDOWN\0"
|
"UNKNOWN\0""NOTPRESENT\0""DOWN\0""LOWERLAYERDOWN\0"
|
||||||
@ -169,6 +171,7 @@ static NOINLINE int print_linkinfo(const struct nlmsghdr *n)
|
|||||||
printf("state %s ", nth_string(operstate_labels,
|
printf("state %s ", nth_string(operstate_labels,
|
||||||
*(uint8_t *)RTA_DATA(tb[IFLA_OPERSTATE])));
|
*(uint8_t *)RTA_DATA(tb[IFLA_OPERSTATE])));
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
if (G_filter.showqueue)
|
if (G_filter.showqueue)
|
||||||
print_queuelen((char*)RTA_DATA(tb[IFLA_IFNAME]));
|
print_queuelen((char*)RTA_DATA(tb[IFLA_IFNAME]));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user