From patchwork Fri Jul 10 13:52:33 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Abeni X-Patchwork-Id: 1326852 Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=redhat.com header.i=@redhat.com header.a=rsa-sha256 header.s=mimecast20190719 header.b=Ovmsh1F0; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4B3DyC5B1Yz9sDX for ; Fri, 10 Jul 2020 23:52:51 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727876AbgGJNwu (ORCPT ); Fri, 10 Jul 2020 09:52:50 -0400 Received: from us-smtp-1.mimecast.com ([205.139.110.61]:21097 "EHLO us-smtp-delivery-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726965AbgGJNwt (ORCPT ); Fri, 10 Jul 2020 09:52:49 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1594389168; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=vnGUVVZOuUIta4LfOOmVhXZeqEjdnZNp3klN3v3klVE=; b=Ovmsh1F04wlDlftM4iFiNZDICJMFthJK4chOCDUxdvdj2w+xorZpJwR/kTvujvjzIFfr4v Ud6wwY5z4EHOfOfkRdQr5qEjSXvqiIR1cANIYaXViqUqe6fcFsKBvR8U7MhzwHCEOBVmb6 iBewsbZJvjPlZxxSkjxPYCxhtTW60BQ= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-148-KE_H_R6hO6ezMZQeo2LOiw-1; Fri, 10 Jul 2020 09:52:47 -0400 X-MC-Unique: KE_H_R6hO6ezMZQeo2LOiw-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D9674800FEB; Fri, 10 Jul 2020 13:52:45 +0000 (UTC) Received: from linux.fritz.box.com (ovpn-113-230.ams2.redhat.com [10.36.113.230]) by smtp.corp.redhat.com (Postfix) with ESMTP id D196E6FEEA; Fri, 10 Jul 2020 13:52:44 +0000 (UTC) From: Paolo Abeni To: netdev@vger.kernel.org Cc: mptcp@lists.01.org, David Ahern Subject: [PATCH iproute2-next 0/2] ss: MPTCP diag interface support Date: Fri, 10 Jul 2020 15:52:33 +0200 Message-Id: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org This series implements support for the MPTCP diag interface, as recently introduced on net-next. The first patch updates the relevant uAPI definition to current net-next, while the 2nd one brings in the actual implementation Paolo Abeni (2): include: update mptcp uAPI ss: mptcp: add msk diag interface support include/uapi/linux/inet_diag.h | 1 + include/uapi/linux/mptcp.h | 17 +++++ misc/ss.c | 115 ++++++++++++++++++++++++++++++--- 3 files changed, 123 insertions(+), 10 deletions(-)