From: Jiri Pirko Date: Fri, 15 Apr 2016 07:51:46 +0000 (+0200) Subject: devlink: introduce pr_out_port_handle helper X-Git-Tag: v4.6.0~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68cab0ba763f9d80740d171e1882ad4f262ca6e1;p=thirdparty%2Fiproute2.git devlink: introduce pr_out_port_handle helper Signed-off-by: Jiri Pirko --- diff --git a/devlink/devlink.c b/devlink/devlink.c index 39f423aa3..0904e07fc 100644 --- a/devlink/devlink.c +++ b/devlink/devlink.c @@ -523,6 +523,12 @@ static void pr_out_handle(struct nlattr **tb) mnl_attr_get_str(tb[DEVLINK_ATTR_DEV_NAME])); } +static void pr_out_port_handle(struct nlattr **tb) +{ + pr_out_handle(tb); + pr_out("/%d", mnl_attr_get_u32(tb[DEVLINK_ATTR_PORT_INDEX])); +} + static void pr_out_dev(struct nlattr **tb) { pr_out_handle(tb); @@ -599,8 +605,8 @@ static void pr_out_port(struct nlattr **tb) struct nlattr *pt_attr = tb[DEVLINK_ATTR_PORT_TYPE]; struct nlattr *dpt_attr = tb[DEVLINK_ATTR_PORT_DESIRED_TYPE]; - pr_out_handle(tb); - pr_out("/%d:", mnl_attr_get_u32(tb[DEVLINK_ATTR_PORT_INDEX])); + pr_out_port_handle(tb); + pr_out(":"); if (pt_attr) { uint16_t port_type = mnl_attr_get_u16(pt_attr);