From patchwork Tue Oct 20 22:23:58 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jarno Rajahalme X-Patchwork-Id: 533529 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 9BD941412E6 for ; Wed, 21 Oct 2015 09:24:20 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754080AbbJTWYQ (ORCPT ); Tue, 20 Oct 2015 18:24:16 -0400 Received: from mail-pa0-f48.google.com ([209.85.220.48]:36671 "EHLO mail-pa0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753805AbbJTWYM (ORCPT ); Tue, 20 Oct 2015 18:24:12 -0400 Received: by pacfv9 with SMTP id fv9so34709359pac.3 for ; Tue, 20 Oct 2015 15:24:12 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=LmemC+70NBijD/zVA9vg4cJTyx6uE06te8eGyxBNQak=; b=MHlgEQub/oP0XnHRBT6kZd/BG6pdp5tdRSXJAjQZ/O1iZ4sSZAm4WL1Yyxh+mhUbJP YUByxQvAPDGXziIgMsrQMNhaR6vTKpDLlqohrf/hkt+qbTxtn8e7hvBWE6Zsd8fmdCR2 eC+m4r3UjnPlJT0E/mBR14BzILyGmvnBf0+WQfSbS0vqDUU6LpCK5dHskbOFwLclGnO/ NHlVSpW8VxpDOzY7USkPwRXRiye4IGlOIXCwKikUyAEFDGUVdgbvV56sGbVh8cBv3YBY irYiWs+mG+bc2vWwzsMwKnOcFVhE0XUkrn2B1L1/HhLKorf6mgVcv8NaxYIlJaqvPleJ lahA== X-Gm-Message-State: ALoCoQnMrlMt9xppJMBxm0mjDOP9HDQQ65qStwX51zlIeMsHM7X5iVoYboji1zNO2R+DY7nOyfBT X-Received: by 10.66.139.201 with SMTP id ra9mr6493534pab.153.1445379852392; Tue, 20 Oct 2015 15:24:12 -0700 (PDT) Received: from sc9-mailhost2.vmware.com ([208.91.1.34]) by smtp.gmail.com with ESMTPSA id hq8sm5562079pad.35.2015.10.20.15.24.11 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 20 Oct 2015 15:24:12 -0700 (PDT) From: Jarno Rajahalme To: dev@openvswitch.org Cc: netdev@vger.kernel.org, jrajahalme@nicira.com Subject: [RFC PATCH 1/3] odp-util: Fix CT action formating. Date: Tue, 20 Oct 2015 15:23:58 -0700 Message-Id: <1445379840-113042-1-git-send-email-jrajahalme@nicira.com> X-Mailer: git-send-email 2.1.4 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Comma was missing after "label" attribute. Signed-off-by: Jarno Rajahalme Acked-by: Joe Stringer --- lib/odp-util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/odp-util.c b/lib/odp-util.c index e131e36..8f0f39a 100644 --- a/lib/odp-util.c +++ b/lib/odp-util.c @@ -590,6 +590,7 @@ format_odp_conntrack_action(struct ds *ds, const struct nlattr *attr) if (label) { ds_put_format(ds, "label="); format_u128(ds, label, label + 1, true); + ds_put_char(ds, ','); } if (helper) { ds_put_format(ds, "helper=%s,", helper);