diff mbox

[iproute] ipaddress: support printing the stable-privacy flag

Message ID 20170707071228.61594-1-lorenzo@google.com
State Superseded, archived
Delegated to: stephen hemminger
Headers show

Commit Message

Lorenzo Colitti July 7, 2017, 7:12 a.m. UTC
Currently, this flag is only shown as "flags 800".

Signed-off-by: Lorenzo Colitti <lorenzo@google.com>
---
 ip/ipaddress.c | 4 ++++
 1 file changed, 4 insertions(+)
diff mbox

Patch

diff --git a/ip/ipaddress.c b/ip/ipaddress.c
index 4900dce09d..8fe2bacde8 100644
--- a/ip/ipaddress.c
+++ b/ip/ipaddress.c
@@ -1166,6 +1166,10 @@  int print_addrinfo(const struct sockaddr_nl *who, struct nlmsghdr *n,
 		ifa_flags &= ~IFA_F_DADFAILED;
 		fprintf(fp, "dadfailed ");
 	}
+	if (ifa_flags & IFA_F_STABLE_PRIVACY) {
+		ifa_flags &= ~IFA_F_STABLE_PRIVACY;
+		fprintf(fp, "stable-privacy ");
+	}
 	if (ifa_flags)
 		fprintf(fp, "flags %02x ", ifa_flags);
 	if (rta_tb[IFA_LABEL])