From patchwork Wed Apr 22 15:29:49 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sabrina Dubroca X-Patchwork-Id: 1275166 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=none (p=none dis=none) header.from=queasysnail.net Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 496krv75lJz9sT4 for ; Thu, 23 Apr 2020 01:30:07 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726385AbgDVPaE convert rfc822-to-8bit (ORCPT ); Wed, 22 Apr 2020 11:30:04 -0400 Received: from us-smtp-delivery-1.mimecast.com ([207.211.31.120]:52827 "EHLO us-smtp-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726006AbgDVPaE (ORCPT ); Wed, 22 Apr 2020 11:30:04 -0400 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-207-RrDA-pjeMMSq7xBD4rd3EA-1; Wed, 22 Apr 2020 11:29:59 -0400 X-MC-Unique: RrDA-pjeMMSq7xBD4rd3EA-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 3ACB5800EB5; Wed, 22 Apr 2020 15:29:58 +0000 (UTC) Received: from hog.localdomain, (unknown [10.40.194.71]) by smtp.corp.redhat.com (Postfix) with ESMTP id 1F3681000079; Wed, 22 Apr 2020 15:29:55 +0000 (UTC) From: Sabrina Dubroca To: netdev@vger.kernel.org Cc: Xin Long , Stefano Brivio , Girish Moodalbail , Matthias Schiffer , Sabrina Dubroca Subject: [PATCH net 0/2] net: vxlan/geneve: use the correct nlattr array for extack Date: Wed, 22 Apr 2020 17:29:49 +0200 Message-Id: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: queasysnail.net Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org The ->validate callbacks for vxlan and geneve have a couple of typos in extack, where the nlattr array for IFLA_* attributes is used instead of the link-specific one. Sabrina Dubroca (2): vxlan: use the correct nlattr array in NL_SET_ERR_MSG_ATTR geneve: use the correct nlattr array in NL_SET_ERR_MSG_ATTR drivers/net/geneve.c | 2 +- drivers/net/vxlan.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) Reviewed-by: Xin Long