From patchwork Mon Oct 16 13:43:06 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Davide Caratti X-Patchwork-Id: 13423369 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A081327EFB for ; Mon, 16 Oct 2023 13:43:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=redhat.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="P5ocNyaJ" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1697463815; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=IfmCEdFX6zHx1L1hqJew7IjHmhoysV5gfGx7Oas4q14=; b=P5ocNyaJDaRJqlmQTa1ky6eHmr6lwA4Iq4bxKZzjT3pY9aXfjc1Ih3rbGdPAZ2GqW/4uOh gyNHIGhWqLIltK/2xU/xfMggDFcIPIJqNQerXzNdPi4KPGs1x2Y2PEhaljKYVXMbwP55tC cEiReqbh2dZQgOtSCMv+e1LuieTXq0w= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-253-oHnph49_PBud-tSif0f1gw-1; Mon, 16 Oct 2023 09:43:28 -0400 X-MC-Unique: oHnph49_PBud-tSif0f1gw-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 528203857B80 for ; Mon, 16 Oct 2023 13:43:28 +0000 (UTC) Received: from dcaratti.users.ipa.redhat.com (unknown [10.45.224.236]) by smtp.corp.redhat.com (Postfix) with ESMTP id E264C492BFC for ; Mon, 16 Oct 2023 13:43:27 +0000 (UTC) From: Davide Caratti To: mptcp@lists.linux.dev Subject: [PATCH mptcp-next 0/5] v2 fixes for "mptcp: convert Netlink code to use YAML spec" Date: Mon, 16 Oct 2023 15:43:06 +0200 Message-ID: Precedence: bulk X-Mailing-List: mptcp@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com v2 changes: - de-uglify YAML spef file, replacing '_' with '-' and avoiding unnecessary assignments in enums (Jakub Kicinski) - keep validating addr6 with NLA_POLICY_EXACT_LEN() (Jakub Kicinski) - Don't leave MPTCP_EVENT_UNSPEC undocumented (Simon Horman) patch 1/5 will cause a small context mismatch in "net: mptcp: use policy generated by YAML spec" Davide Caratti (5): Squash-to: "net: mptcp: convert netlink from small_ops to ops" Squash-to: "Documentation: netlink: add a YAML spec for mptcp" Squash-to: "uapi: mptcp: use header file generated from YAML spec" Squash to: "net: mptcp: use policy generated by YAML spec" tools: ynl-gen: add support for exact-len validation