aboutsummaryrefslogtreecommitdiff
path: root/netlink_inet_diag.c
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-11-15 16:45:52 -0800
committerElliott Hughes <enh@google.com>2017-11-15 16:45:52 -0800
commitbbf97dc20c4ee0e36b4628fe03e0e7db5a11d469 (patch)
treecfddf13024e3917e17a9debc8b7391c9fe1559ed /netlink_inet_diag.c
parentd0279047c4d6eb6d276f4c17481f750ac2eeb89a (diff)
downloadstrace-bbf97dc20c4ee0e36b4628fe03e0e7db5a11d469.tar.gz
Update strace to 4.20.
Noteworthy changes in release 4.20 (2017-11-13) =============================================== * Improvements * Implemented decoding of NETLINK_NETFILTER netlink message types and flags. * Implemented decoding of SECCOMP_GET_ACTION_AVAIL operation of seccomp syscall. * Updated lists of ARPHRD_*, BPF_*, ETH_P_*, LOOP_*, MADV_*, MEMBARRIER_CMD_*, MFD_*, SECCOMP_*, SO_*, SOL_*, TCP_*, and UFFD_FEATURE_* constants. * Added decoding of statx syscall on hppa. * Updated lists of ioctl commands from Linux 4.14. * Bug fixes * Fixed powerpc personality support on powerpc64. Bug: N/A Test: strace date Change-Id: I9cab638ba737839de4b8b36e4632cf933ba196c4
Diffstat (limited to 'netlink_inet_diag.c')
-rw-r--r--netlink_inet_diag.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/netlink_inet_diag.c b/netlink_inet_diag.c
index 700cbd3b..cffe3f5a 100644
--- a/netlink_inet_diag.c
+++ b/netlink_inet_diag.c
@@ -388,7 +388,8 @@ static const nla_decoder_t inet_diag_msg_nla_decoders[] = {
[INET_DIAG_PEERS] = NULL, /* unimplemented */
[INET_DIAG_PAD] = NULL,
[INET_DIAG_MARK] = decode_nla_u32,
- [INET_DIAG_BBRINFO] = decode_tcp_bbr_info
+ [INET_DIAG_BBRINFO] = decode_tcp_bbr_info,
+ [INET_DIAG_CLASS_ID] = decode_nla_u32
};
DECL_NETLINK_DIAG_DECODER(decode_inet_diag_msg)