From patchwork Wed Apr 19 22:12:37 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bill Fischofer X-Patchwork-Id: 97685 Delivered-To: patch@linaro.org Received: by 10.140.109.52 with SMTP id k49csp524681qgf; Wed, 19 Apr 2017 15:12:52 -0700 (PDT) X-Received: by 10.55.23.132 with SMTP id 4mr1268148qkx.85.1492639972573; Wed, 19 Apr 2017 15:12:52 -0700 (PDT) Return-Path: Received: from lists.linaro.org (lists.linaro.org. [54.225.227.206]) by mx.google.com with ESMTP id 103si2528293qku.83.2017.04.19.15.12.52; Wed, 19 Apr 2017 15:12:52 -0700 (PDT) Received-SPF: pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) client-ip=54.225.227.206; Authentication-Results: mx.google.com; spf=pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) smtp.mailfrom=lng-odp-bounces@lists.linaro.org; dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id EB4F862D2D; Wed, 19 Apr 2017 22:12:51 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by lists.linaro.org (Postfix) with ESMTP id D061A62DF0; Wed, 19 Apr 2017 22:12:49 +0000 (UTC) X-Original-To: lng-odp@lists.linaro.org Delivered-To: lng-odp@lists.linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id 927B062E15; Wed, 19 Apr 2017 22:12:49 +0000 (UTC) Received: from mail-yw0-f172.google.com (mail-yw0-f172.google.com [209.85.161.172]) by lists.linaro.org (Postfix) with ESMTPS id 7DACC62CE5 for ; Wed, 19 Apr 2017 22:12:47 +0000 (UTC) Received: by mail-yw0-f172.google.com with SMTP id k13so26339506ywk.1 for ; Wed, 19 Apr 2017 15:12:47 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=293TYPvRVZt0SIlyu/Uds0L3BoUPbN2uxvIsLYX/hBA=; b=UfwHIWCsX5rV8EAUGJXIZMpehXsPdqQwRbQ3FGJYttixFUhU60bA+5yUtNf95LFtj1 uq4OFRgeHIRjNdMmEstgjM4QpWfm2aXRtHZh4fLlAoS5tfKpIhPWL4qbSAIjd+nFYF3l N27PWx/wijuemNZsaXj1O6mU/RQLwiVINbA2/KlTH+V69duaPSc78Ck/7Pqv/NSkkx36 hQV+r2CeK8DTa5lxNUhsMDkcCujoqIHlB3fAfy6IhJJlM+dRP7zwJwWDdeUrNipBw9Sg hbjm0eYyqcHd+fgPWm97Q3Q52o2ZUK5Bbl0h7YoUQh1OYz/+wf61q+pSrikF+J+8TJH1 OdGw== X-Gm-Message-State: AN3rC/5kIy1HY2gm0O/fBK7tMfg4S+RhBauHZ+CgcIscZfAhG+y52q5e 0qVR9emFXNUHww2Qf1s= X-Received: by 10.157.5.106 with SMTP id 97mr2710905otw.227.1492639966998; Wed, 19 Apr 2017 15:12:46 -0700 (PDT) Received: from localhost.localdomain (cpe-70-121-83-241.austin.res.rr.com. [70.121.83.241]) by smtp.gmail.com with ESMTPSA id d23sm1708625oic.26.2017.04.19.15.12.46 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 19 Apr 2017 15:12:46 -0700 (PDT) From: Bill Fischofer To: lng-odp@lists.linaro.org Date: Wed, 19 Apr 2017 17:12:37 -0500 Message-Id: <1492639961-2339-1-git-send-email-bill.fischofer@linaro.org> X-Mailer: git-send-email 2.7.4 Subject: [lng-odp] [PATCH 1/5] api: classification: add additional doxygen documentation X-BeenThere: lng-odp@lists.linaro.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: "The OpenDataPlane \(ODP\) List" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: lng-odp-bounces@lists.linaro.org Sender: "lng-odp" Resolve Bug https://bugs.linaro.org/show_bug.cgi?id=2952 by adding additional field documentation to avoid problems with doxygen 1.8.13 and higher. Signed-off-by: Bill Fischofer --- include/odp/api/spec/classification.h | 4 ++++ 1 file changed, 4 insertions(+) -- 2.11.0 diff --git a/include/odp/api/spec/classification.h b/include/odp/api/spec/classification.h index 0e1addd6..39831b24 100644 --- a/include/odp/api/spec/classification.h +++ b/include/odp/api/spec/classification.h @@ -366,7 +366,9 @@ typedef struct odp_pmr_param_t { /** True if the value is range and false if match */ odp_bool_t range_term; + /** Variant mappings for types of matches */ union { + /** Parameters for single-valued matches */ struct { /** Value to be matched */ const void *value; @@ -374,6 +376,8 @@ typedef struct odp_pmr_param_t { /** Masked set of bits to be matched */ const void *mask; } match; + + /** Parameter for range value matches */ struct { /** Start and End values are included in the range */ /** start value of range */