public inbox for iwd@lists.linux.dev
 help / color / mirror / Atom feed
From: James Prestwood <prestwoj@gmail.com>
To: Denis Kenzior <denkenz@gmail.com>, iwd@lists.linux.dev
Subject: Re: [PATCH] monitor: Print rmnet flags
Date: Fri, 23 Aug 2024 10:19:46 -0700	[thread overview]
Message-ID: <74f520a4-73b2-461c-8960-44589d63fb46@gmail.com> (raw)
In-Reply-To: <20240823160901.474421-1-denkenz@gmail.com>

Hi Denis,

On 8/23/24 9:08 AM, Denis Kenzior wrote:
> ---
>   monitor/nlmon.c | 36 ++++++++++++++++++++++++++++++++++++
>   1 file changed, 36 insertions(+)
>
> diff --git a/monitor/nlmon.c b/monitor/nlmon.c
> index 214246ea72c2..fdf16fbe7a04 100644
> --- a/monitor/nlmon.c
> +++ b/monitor/nlmon.c
> @@ -37,6 +37,7 @@
>   #include <linux/if.h>
>   #include <linux/if_packet.h>
>   #include <linux/if_ether.h>
> +#include <linux/if_link.h>
>   #include <linux/netlink.h>
>   #include <linux/genetlink.h>
>   #include <linux/rtnetlink.h>
> @@ -7597,8 +7598,43 @@ static void flags_str(const struct flag_names *table,
>   	pos += sprintf(str + pos, "]");
>   }
>   
> +static void print_rmnet_flags(unsigned int indent,
> +					const char *label, uint32_t flags)
> +{
> +	if (flags & RMNET_FLAGS_INGRESS_DEAGGREGATION)
> +		print_attr(indent, "%s:%s", label, "deaggregation");
> +	if (flags & RMNET_FLAGS_INGRESS_MAP_COMMANDS)
> +		print_attr(indent, "%s:%s", label, "map commands");
> +	if (flags & RMNET_FLAGS_INGRESS_MAP_CKSUMV4)
> +		print_attr(indent, "%s:%s", label, "ingress_mapv4");
> +	if (flags & RMNET_FLAGS_EGRESS_MAP_CKSUMV4)
> +		print_attr(indent, "%s:%s", label, "egress_mapv4");
> +	if (flags & RMNET_FLAGS_INGRESS_MAP_CKSUMV5)
> +		print_attr(indent, "%s:%s", label, "ingress_mapv5");
> +	if (flags & RMNET_FLAGS_EGRESS_MAP_CKSUMV5)
> +		print_attr(indent, "%s:%s", label, "egress_mapv5");
> +}
> +
> +static void print_ifla_rmnet_flags(unsigned int indent, const char *str,
> +						const void *buf, uint16_t size)
> +{
> +	struct ifla_rmnet_flags flags;
> +
> +	if (size != 8) {
> +		printf("malformed packet\n");
> +		return;
> +	}
> +
> +	memcpy(&flags, buf, size);
> +
> +	print_rmnet_flags(indent + 1, "Flags", flags.flags);
> +	print_rmnet_flags(indent + 1, "Mask", flags.mask);
> +}
> +
>   static struct attr_entry link_info_data_entry[] = {
>   	{ IFLA_RMNET_MUX_ID,	"RMNet Mux Id",		ATTR_U16 },
> +	{ IFLA_RMNET_FLAGS,	"RMNet Flags",		ATTR_CUSTOM,
> +					{ .function = print_ifla_rmnet_flags } },
>   	{ },
>   };
>   
LGTM

  reply	other threads:[~2024-08-23 17:19 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-23 16:08 [PATCH] monitor: Print rmnet flags Denis Kenzior
2024-08-23 17:19 ` James Prestwood [this message]
2024-08-23 17:31 ` Denis Kenzior

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=74f520a4-73b2-461c-8960-44589d63fb46@gmail.com \
    --to=prestwoj@gmail.com \
    --cc=denkenz@gmail.com \
    --cc=iwd@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox