All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH iproute2-next v4] ss: Shorter display format for TLS zerocopy sendfile
@ 2022-06-08 15:34 Maxim Mikityanskiy
  2022-06-12 16:02 ` David Ahern
  0 siblings, 1 reply; 2+ messages in thread
From: Maxim Mikityanskiy @ 2022-06-08 15:34 UTC (permalink / raw)
  To: David Ahern, Stephen Hemminger
  Cc: Tariq Toukan, Boris Pismenny, Maxim Mikityanskiy, Jakub Kicinski, netdev

Commit 21c07b45688f ("ss: Show zerocopy sendfile status of TLS
sockets") started displaying the activation status of zerocopy sendfile
on TLS sockets, exposed via sock_diag. This commit makes the format more
compact: the flag's name is shorter and is printed only when the feature
is active, similar to other flag options.

The flag's name is also generalized ("sendfile" -> "tx") to embrace
possible future optimizations, and includes an explicit indication that
the underlying data must not be modified during transfer ("ro").

Signed-off-by: Maxim Mikityanskiy <maximmi@nvidia.com>
---
 include/uapi/linux/tls.h | 2 +-
 misc/ss.c                | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/include/uapi/linux/tls.h b/include/uapi/linux/tls.h
index 83a3cea4..4f868648 100644
--- a/include/uapi/linux/tls.h
+++ b/include/uapi/linux/tls.h
@@ -161,7 +161,7 @@ enum {
 	TLS_INFO_CIPHER,
 	TLS_INFO_TXCONF,
 	TLS_INFO_RXCONF,
-	TLS_INFO_ZC_SENDFILE,
+	TLS_INFO_ZC_RO_TX,
 	__TLS_INFO_MAX,
 };
 #define TLS_INFO_MAX (__TLS_INFO_MAX - 1)
diff --git a/misc/ss.c b/misc/ss.c
index c4434a20..ff985cd8 100644
--- a/misc/ss.c
+++ b/misc/ss.c
@@ -2988,7 +2988,8 @@ static void tcp_tls_conf(const char *name, struct rtattr *attr)
 
 static void tcp_tls_zc_sendfile(struct rtattr *attr)
 {
-	out(" zerocopy_sendfile: %s", attr ? "active" : "inactive");
+	if (attr)
+		out(" zc_ro_tx");
 }
 
 static void mptcp_subflow_info(struct rtattr *tb[])
@@ -3221,7 +3222,7 @@ static void tcp_show_info(const struct nlmsghdr *nlh, struct inet_diag_msg *r,
 			tcp_tls_cipher(tlsinfo[TLS_INFO_CIPHER]);
 			tcp_tls_conf("rxconf", tlsinfo[TLS_INFO_RXCONF]);
 			tcp_tls_conf("txconf", tlsinfo[TLS_INFO_TXCONF]);
-			tcp_tls_zc_sendfile(tlsinfo[TLS_INFO_ZC_SENDFILE]);
+			tcp_tls_zc_sendfile(tlsinfo[TLS_INFO_ZC_RO_TX]);
 		}
 		if (ulpinfo[INET_ULP_INFO_MPTCP]) {
 			struct rtattr *sfinfo[MPTCP_SUBFLOW_ATTR_MAX + 1] =
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH iproute2-next v4] ss: Shorter display format for TLS zerocopy sendfile
  2022-06-08 15:34 [PATCH iproute2-next v4] ss: Shorter display format for TLS zerocopy sendfile Maxim Mikityanskiy
@ 2022-06-12 16:02 ` David Ahern
  0 siblings, 0 replies; 2+ messages in thread
From: David Ahern @ 2022-06-12 16:02 UTC (permalink / raw)
  To: Maxim Mikityanskiy, Stephen Hemminger
  Cc: Tariq Toukan, Boris Pismenny, Jakub Kicinski, netdev

On 6/8/22 9:34 AM, Maxim Mikityanskiy wrote:
> Commit 21c07b45688f ("ss: Show zerocopy sendfile status of TLS
> sockets") started displaying the activation status of zerocopy sendfile
> on TLS sockets, exposed via sock_diag. This commit makes the format more
> compact: the flag's name is shorter and is printed only when the feature
> is active, similar to other flag options.
> 
> The flag's name is also generalized ("sendfile" -> "tx") to embrace
> possible future optimizations, and includes an explicit indication that
> the underlying data must not be modified during transfer ("ro").
> 
> Signed-off-by: Maxim Mikityanskiy <maximmi@nvidia.com>
> ---
>  include/uapi/linux/tls.h | 2 +-
>  misc/ss.c                | 5 +++--
>  2 files changed, 4 insertions(+), 3 deletions(-)
> 

applied to iproute2-next


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-06-12 16:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-08 15:34 [PATCH iproute2-next v4] ss: Shorter display format for TLS zerocopy sendfile Maxim Mikityanskiy
2022-06-12 16:02 ` David Ahern

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.